/* loading.css -migated to laravel */
#loader-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #121212;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.2s ease;
}

#loader-wrapper.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-text {
  margin-top: 20px;
  font-size: 18px;
  color: white;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.loading-text span {
  display: inline-block;
  opacity: 0.3;
  animation: fadeInOutChar 2.1s infinite ease-in-out;
}

.loading-text span:nth-child(n) {
  animation-delay: calc(var(--i) * 0.1s);
}

@keyframes fadeInOutChar {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}


.loader {
  position: relative;
  width: 60px;
  height: 60px;
}

.loader:before , .loader:after{
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}
.loader:after {
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.2) inset;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {  transform: rotate(0)}
  100% { transform: rotate(360deg)}
}


/*basic styling*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #dfdfdf;
}

body::-webkit-scrollbar {
    display: none; 
}

h1 {
    color: #f1f1f1;
}

h2 {
    color: #f1f1f1;
}

p {
    color: #dfdfdf;
}

.padding-p {
    padding-left: 3.5%;
    padding-right: 10%;
}

/*main architecture*/
.container {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.p3 {
    padding-left: 3%;
}

.p4 {
    padding-left: 4%;
}

/*BANNERS - THAT MEANS IMAGES ON TOP FOR SOMEONE WHO STILL DOES NOT GET IT*/
.banner {
    margin-top: 50px;
    height: 100vh;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100vh;
    z-index: 0;
    object-fit: cover;
    transform: translateY(0);
}

.container-home-let, .banner > *:not(img) {  
    z-index: 2;
    color: white;
}

.banner-text {
    position: absolute;
    left: 10%;
    top: 50%;
    margin: 0;
    color: white;
    padding: 2vw;
    font-size: 1.2rem;
    border-radius: 8px;  
    z-index: 2;  
    transform: translateY(-50%);
} 

.banner-title {
    font-size: clamp(3rem, 7vw + 1rem, 7rem);
}

.banner-subtitle {
    font-size: clamp(1.5rem, 2rem, 3rem);
    
}

/*backdrop filter for visibility*/
.blend {
    padding: 20px;
    backdrop-filter: blur(2px);
    border-radius: 25px;
}

/*section for break images as adividers between sections*/
.break {
    height: 50vh;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.break img {
    width: 100%;
    height: 100vh;
    z-index: 0;
    object-fit: cover;
    transform: translateY(0);
}

.break-text {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    margin: 0;
    color: white;
    padding: 2vw;
    font-size: 1.2rem;
    border-radius: 8px;  
    z-index: 2;  
    transform: translateY(-50%);
} 

/*content*/
.message-slider-box {
    margin-left: 2%;
    margin-right: 5%;
    margin-top: 50px;
    padding-left: 5px;
    /* FIRST VERSION GOOD CONCEPT BUT SUCKS IN REALITY */
    /*padding: 20px;
    border-radius: 25px;
    background-color: transparent;
    /*background-image: linear-gradient(to right, rgba(255, 255, 255, 0.085), transparent);*/
    opacity: 1;
}

.message-slider-box p {
    font-size: 1.3rem;
}

/*INTRO MESSAGE BOX AIQUNIQ*/
.intro-title {
    margin-left: 1%;
    margin-top: 50px;
    margin-bottom: -30px;
    opacity: 0.5;
}

.intro-title-mob {
    margin-left: 1%;
    display: none;
}

@media (max-width: 768px) {
    .banner {
        height: 100vh;
        width: 100%;
        overflow-y: hidden;
    }

    .banner-text {
        position: absolute;
        top: 70vh;
        margin-top: 0;
        margin-right: 5%;
    }

    .banner img {
        height: 100vh;
        width: 100%;
        object-fit: cover;
        display: none;
    }

    .banner .img-mobile {
        display: flex;
    }

    .message-slider-box {
        margin-left: 20px;
        margin-right: 1%;
        background-image: none;
        margin-top: 10px;
        padding: 0;
    }

    .message-slider-box .link-button:hover{
        transform: none;
    }

    .message-slider-box h1 {
        margin-top: 60px;
    }
    .counter {
        margin-top: -60px;
    }

    .main-title.visible {
        font-size: clamp(5rem, 10vw + 2rem, 7rem);
    }

    .intro-title-mob {
        display: flex;
        margin-top: 50px;
        opacity: 0.5;
    }

    .intro-title {
        display: none;
    }
    
}

@media (max-width: 450px) {
    .banner-title {
        font-size: clamp(1.5rem, 4vw + 1rem, 3rem);
    }

    .banner-subtitle {
        font-size: 1.5rem;
    }
}

.img-mobile {
    display: none;
}

/*.slider-box-visible {
    opacity: 1;
    transform: translateX(0);
}*/

.link-button {
    padding: 10px 20px 10px 20px;
    font-weight: bold;
    background-color: white;
    color: black;
    border: 1px solid transparent;
    border-radius: 25px;
    margin-left: 2.5%;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.6s, background 0.6s, border 0.6s;
}
.link-button:hover {
    color: white;
    background-color: #121212;
    border: 1px solid white;
}

/*IOEN BTN*/
.api {
    padding: 7px 12px 7px 15px;
    font-weight: normal;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.6s, background 0.6s, border 0.6s;
}

.api:hover {
    color: rgb(0, 0, 0);
    background-color: #ffffff;
    border: 1px solid rgb(0, 0, 0);
}

.api-fixed {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 5px; 
    text-decoration: none; 
    z-index: 1001;
    align-content: center;
}

.api-fixed.active {
    display: inline-block;
}


@media (max-width: 768px) {
    .api {
        font-size: 16px;
    }
}

.fixed-image img {
    position: fixed;
    margin-top: 50px;
    width: 30%;
    margin-left: 70%;
    opacity: 30%;
}

.text-center {
    font-size: 1.2rem;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

.center-align {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    /*width: 65%;
    margin-left: 17%;*/
}

/*content since message slider box was firtly designed onlyt for home tab page*/
.publication {
    width: 65%;
    margin-left: 20%;
    border-radius: 25px;
}

.spacer-3 {
    padding: 3%;
}

.spacer-5 {
    padding: 5%;
}

.spacer-10 {
    padding: 10%;
}

.spacer-10p {
    padding: 10px;
}

/* Navigation Menu */
.nav {
    position: fixed;
    background-color: #111111;
    background-image: linear-gradient(to bottom, black, #121212 );
    padding: 15px;
    width: 100%;
    z-index: 1000;
}

.base-nav {
    display: flex;
    justify-content: space-between;
}

.mobile-nav {
    display: none;
    justify-content: space-between;
}

.nav-left {
    display: flex; 
}
.nav-right {
    display: flex;
    align-items: center;
    padding-right: 2%;
}
.nav-right p {
    margin-right: 15px;
    align-items: center;
    align-content: center;

}
.nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 0 10px;
    font-weight: normal;
    transition: color 0.5s ease;
}

.nav-left a {
    font-size: 1.8rem;
} 

.nav-left a:hover {
    color: rgb(124, 124, 124);
}

.nav-right a {
    font-size: 18px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.nav-right a:hover {
    color: rgb(124, 124, 124);
}

/*.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(124, 124, 124);
    transition: width 0.5s ease;
}

.nav-right a:hover::after {
    width: 100%;
}*/

.nav a.active-tab {
    font-weight: bold;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

.hamburger {
    margin-right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}
  
.hamburger span {
    margin-left: 1px;
    position: absolute;
    width: 22px;
    height: 2.75px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}
  
.hamburger span:nth-child(1) {
    top: 12px;
}
  
.hamburger span:nth-child(2) {
    top: 20.5px;
}
  
.hamburger span:nth-child(3) {
    top: 29px;
}
  
.hamburger.active span:nth-child(1) {
    top: 20.5px;
    transform: rotate(45deg);
}
  
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
  
.hamburger.active span:nth-child(3) {
    top: 20.5px;
    transform: rotate(-45deg);
}

.h-text {
    z-index: 1001;
    font-size: 1.8rem;
    color: white;
    padding: 10px;
    margin: 0 10px;
    align-self: center;
}

.mobile-nav .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100vh;
    background-color: #111111;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.77), #121212ca);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 100px 30px 20px;
    z-index: 1000;
}

.mobile-nav .nav-links.active {
    transform: translateX(0);
}

.mobile-nav .nav-links a {
    text-decoration: none;
    color: white;
    padding: 5px 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-nav .sub-links {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: height 0.3s ease;
    height: 0;
}

.mobile-nav .sub-links a {
    font-size: 1.2rem;
    color: #ccc;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .base-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

}

@media (max-width: 930px) {
    .nav-right a {
        margin: 0 4px;
        padding: 6px;
    }
}

@media (max-width: 850px) {
    .nav-right a {
        margin: 0 2px;
        padding: 5px;
    }
}

/*homepage*/
.container-home-let {
    text-align: center;
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-title {
    font-size: 7rem;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.main-title.visible {
    opacity: 1;
    transform: translateX(0);
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.75s ease-in;
}

.subtitle.visible {
    opacity: 1;
}

.adjust p {
    font-size: 1.3rem;
    z-index: 1;
    margin-left: 5%;
    margin-right: 5%;
}

.image-about {
    width: 100%;
}

.image-about img {
    width: 40%;
    padding-left: 15%;
}

.text-about {
    padding-right: 9%;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-about p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/*footer*/
footer {
    background-color: #121212;
    background-image: linear-gradient(to top, black, transparent);
    color: white;
    padding: 50px 20px;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex;
    max-width: 78%;
    margin: auto;
    flex-wrap: wrap;
    position: relative;
}

.social, .legal {
    text-align: left;
    margin-left: 20px;
    width: 200px;
}
.legal ul li a {
    color: #dfdfdf !important;
}

.social h2, .legal h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: white !important;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: black;
    text-align: center;
    line-height: 40px;
}

.social-icon-x {
    width: 40px;
    height: 40px;
    content: url("/media/x.png");
}

.social-icon-yt {
    width: 40px;
    height: 40px;
    content: url("/media/y.png");
}

.social-icon-in {
    width: 40px;
    height: 40px;
    content: url("/media/l.png");
}

.legal ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.legal ul li {
    margin: 5px 0;
}

.legal ul li a {
    color: #dfdfdf !important;
    text-decoration: none;
}

.copyright {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        max-width: 100px;
        display: flex;
        align-items: start;
        text-align: start;
        padding: 1% 20px;
        margin: 1%;
    }
}

/*FAQ*/
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #3a3a3a;
}
.faq-question {
    font-weight: 500;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.6s ease, transform 0.6s ease;
    border-radius: 8px;
}
.faq-question:hover {
    background: #303030;
}

.faq-question::after {
    content: '▼';
    font-size: 0.9em;
    color: #888;
    transition: transform 0.6s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-weight: bold;
    color: black;
    background-color: white;
    padding: 0 20px;
    font-size: 1.3rem;
    margin-left: 1%;
    margin-right: 5%;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
}

@media (max-width: 600px) {
    .faq-container {
        padding: 20px;
    }
    .faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
    }
}

.animation {
    margin-left: 5%;
    width: 60%;
    height: 500px;
    position: relative;
    background-color: #000;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myAnimation {
    width: 100%; 
    height: max-content; 
    object-fit: cover; 
    border-radius: 25px;
}

.spacer-footer {
    margin-top: 150px;
}

.top-button {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1em;
    width: fit-content;
    transition: opacity 0.5s ease, transform 0.3s;
}
.top-button:hover {
    transform: scale(1.1);
}

.top-button.hide {
    opacity: 0;
    pointer-events: none;
}

.floating-container {
    align-self: center;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: -150%;
    transform: none;
    background: #121212;
    background-image: linear-gradient(to top, #121212, transparent);
    bottom: 0px;
    z-index: 999;
    transition: left 0.8s ease;
}

.floating-container.active {
    left: 0;
}

.floating-container.stuck-to-footer {
    position: absolute !important;
    bottom: auto;
    top: unset;
}

.floating-container p {
    margin-left: 3%;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #121212;
    border-radius: 25px;
    padding: 10px 20px 10px 20px;
}

@media (max-width: 768px) {
    .floating-container p {
        font-size: 1rem;
    }
}

.content-section {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
}

.content-section p {
    font-size: 1.3rem;
}

.text-cover {
    padding: 5px 20px 5px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
}

.section-info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-color {
    align-content: center;
    padding: 10px 20px 10px 20px;
    border-bottom: solid 2px rgba(255, 255, 255, 0.3);
    transition: 0.5s transform, 0.5s border-bottom;
}

.section-color:hover {
    transform: translateY(-10px);
    border-bottom: solid 2px white;
}

.section-gap{
    width: 40px;
}

.cookie-list {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    border-radius: 12px;
    border: solid 1px rgb(207, 207, 207);
    background-color: rgb(250, 250, 250);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cookie-list p {
    font-size: 1rem;
    margin-top: -10px;
}

.width-60 {
    width: 60%;
}

.width-50 {
    width: 50%;
}

.width-35 {
    width: 35%;
}

.width-30 {
    width: 30%;
}

.width-25 {
    width: 25%;
}

.center {
    margin-left: 30%;
}

.contact-btn {
    padding: 10px 20px;
    margin-right: 5%;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 25px;
}

.overlay-contact {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none
}

.overlay-contact.show {
    opacity: 1;
    pointer-events: auto;
}

.form-text {
    text-align: left;
    justify-content: start;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: #121212;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 1003;
    width: 400px;
    border-radius: 25px;
    /*box-shadow: 0 0 15px rgba(0,0,0,0.5);*/
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.contact-form.show {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.contact-form.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-form input {
    border-radius: 25px;
    padding: 10px;
    font-size: 1em;
    width: 90%;
}

.contact-form-button {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 90%;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 25px;
    transition: transform 0.3s ;
}

.contact-form-button:hover {
    transform: scale(1.05);
}

.close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-btn:hover {
    animation: wiggle 0.3s ease infinite;
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.spacer-gap {
    margin-left: 50px;
}

.ui-bg1 { 
    margin-left: 10%; 
    margin-right: 10%;
}

.ui-bg2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.ui-bg3 {
    margin-left: 5%;
    width: 60%;
    height: 500px;
    position: relative;
    background-color: #000;
    border-radius: 25px;
}

.ui-bg3-modified {
    margin-left: 2.5%;
    width: 70%;
    height: 500px;
    border-radius: 25px;
}

.ui-bg3 canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ui-bg3-text {
    margin-right: 10%;
    width: 20%;
}

canvas { 
    display: block;
    border-radius: 25px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2) ; /*show test*/
}

.wind {
    border-radius: 0;
    box-shadow: none;
}

#windCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

#webgl-error { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    color: red; 
    font-family: Arial; 
    font-size: 16px; 
}

.hwn1 {
    margin-top: -150px;
    margin-right: 10%;
    height: 255px;
    opacity: 0.2;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    display: inline-block;
}

.toggle-switch input {
    display: none;
}

.slider {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #4caf50;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

iframe {
    border: none;
}

.img-m {
    width: 30%;
    height: auto;
    border-radius: 25px;
    rotate: -12deg;
    align-self: center;
}

.img-m-mob {
    display: none;
    align-self: center;
    margin-left: 15%;
    margin-top: 50px;
    margin-bottom: 75px;
    border-radius: 25px;
    width: 80%;
    rotate: -6deg;
    height: auto;
}

.img-c {
    width: 25%;
    height: max-content;
    rotate: -12deg;
    align-self: center;
    transition: rotate 1s, transform 1s;
}

.img-c:hover {
    rotate: 6deg;
    transform: scale(1.1);
}

@media (max-width: 1400px) {
    .img-c {
        width:35%;
        align-self: center;
    }
}

@media (max-width: 1100px) {
    .img-c {
        width:45%;
        align-self: center;
    }
}

.img-3D {
    width: 35%;
    height: max-content;
}

.bookmark-trigger {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    z-index: 12;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bookmark-trigger .arrow {
    margin-right: 6px;
}

.hover-element {
    position: fixed;
    top: 10px;
    right: -300px;
    width: 80vw;
    margin-left: 10px;
    max-width: 250px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    border-radius: 25px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: start;
    align-items: start;
    transition: right 0.6s ease;
    z-index: 10;
}

.hover-element.show {
    right: 10px; 
}

.bookmark-trigger.hidden {
    opacity: 0;
    pointer-events: none;
}

.banner-hover{
    top: 90px;
}

.banner-h1 {
    margin: 0;
    font-size: 4em;
    text-align: left;
}

.banner-p {
    font-size: 1.5em;
    text-align: left;
    margin-top: 10px;
}

.research {
    display: flex;
    flex-direction: row;
}

.mob-adjst {
    display: block;
}

.spacer-top {
    margin-top: 50px;
}

.mob-show {
    display: none;
}

.desk-show {
    display: block;
}

@media (max-width: 768px) {
    .content {
        overflow-x: hidden;
    }
    .mob-show {
        display: block;
    }

    .desk-show {
        display: none;
    }

    .banner-h1 {
        font-size: clamp(2.6em, 6vw + 1em, 4em);
    }

    .top-button {
        margin-top: 0px;
    }

    .section-info-row {
        flex-direction: column;
    }

    .width-60 {
        width: 90%;
    }

    .width-50 {
        width: 100%;
    }

    .width-35 {
        width: 90%;
    }

    .width-25 {
        width: 90%;
    }

    .mob-adjst {
        margin-top: -100px;
    }

    .contact-form {
        width: 70%;
        max-width: 400px;
    }

    .img-3D {
        width: 80%;
        align-self: center;
    }

    .img-c {
        margin: 0 0 20px 0;
        width: 70%;
    }

    .img-m-mob {
        display: block;
    }

    .img-m {
        display: none;
    }

    .spacer-top {
        margin-top: 10px;
    }

    .animation {
        width: 90%;
        height: auto;
        margin-top: 20px;
    }

    .ui-bg3-text {
        margin-right: 10%;
        margin-left: 10%;
        width: auto;
    }

    .ui-bg3 {
        width: 90%;
        margin-top: 50px;
        height: 45vh;
    }

    .ui-bg3-modified {
        width: 100%;
        margin-left: 0%;
    }

    .ui-bg1 {
        margin-left: 5%;
        margin-right: 5%;
    }

    .center {
        margin-left: 0%;
    }

    .spacer-5 {
        margin: 0%;
    }

    .research {
        flex-direction: column;
        text-align: center;
    }

    

}

/* legal and more */

.content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.publication {
    width: 90%;
    margin-right: 20%;
}


.medium {
    display: flex;
    font-size: 1.3rem;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
}

.big {
    display: flex;
    font-size: 3.5rem;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.tc {
    background-color: white;
}

.tc p, .tc h1, .tc h2, .tc h3 {
    color: black;
}

.company-link {
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: left; 
    height: 80px;
}
.company-img {
    height: 200px;
    width: auto;
    border-radius: 25px;
    overflow: hidden;
}

.company-btn {
    border-radius: 25px;
    padding: 10px 10px 10px 10px;
    transition: color 0.6s, background-color 0.6s, border 0.6s;
    background-color: rgb(255, 255, 255);
    font-weight: bold;
    border: 1px solid transparent;
}

.company-btn:hover {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.comp-space {
    margin-left: 25px;
} 

@media (max-width: 768px) {
    .text-fixed {
        width: 90vw;
    }
    
    .company-link {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .company-link p {
        margin-top: -50px;
        margin-left: 50px;
    }

    .company-btn {
        margin-left: 35px;
    }

}

/* About us*/
.about-us {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    font-family: sans-serif;
    scrollbar-width: none;
}

.section {
    position: relative;
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    overflow: hidden;
}

.bg1 { background-image: url("/media/a1-pai.png"); background-repeat: no-repeat;}
.bg2 { background-image: url("/media/a2-pai.png"); background-repeat: no-repeat;}
.bg3 { background-image: url("/media/a3-pai.png"); background-repeat: no-repeat;}
.bg4 { background-image: url("/media/a4-pai.png"); background-repeat: no-repeat;}
.bg5 { background-image: url("/media/a5-pai.png"); background-repeat: no-repeat;}

.text-fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 80vw;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.073);
    padding: 20px;
    backdrop-filter: blur(4px);
    border-radius: 25px;
    text-align: left;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.text-fixed.show {
    opacity: 1;
}

.title {
    margin: 0;
    font-size: clamp(1rem, 4vw + 1rem, 3.5rem);
}

.description {
    margin-top: 0.5em;
    font-size: 1.4rem;
    font-weight: normal;
}

/* cookie banner*/
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #ffffff;
    color: #2c3e50;
    padding: 25px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out;
}

#cookie-banner.show {
    display: flex;
}

#cookie-banner div {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

#dismiss-banner {
    padding: 10px 24px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border: none;
    color: white;
    width: 200px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#dismiss-banner:hover {
    opacity: 0.9;
}

#learn-more {
    margin-top: 12px;
    color: #2980b9;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
}

#learn-more:hover {
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    #cookie-banner {
        padding: 20px;
        width: 95%;
        bottom: 0;
        border-radius: 0;
    }

    #dismiss-banner {
        width: 80%;
    }
}

/* success message check*/
.success-message {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.checkmark-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.checkmark {
    width: 100%;
    height: 100%;
    stroke: #4caf50;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: rotate-circle 0.6s ease-in-out forwards;
    overflow: visible;
}

.checkmark-circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    stroke: #ccc;
    animation: draw-circle 0.3s ease-out forwards;
}

.checkmark-check {
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: draw-check 0.3s ease-out 0.6 forwards;
}

.success-text {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    opacity: 0;
    animation: fade-in 0.6s ease 1.5s forwards;
}

@keyframes draw-circle {
    to {
        stroke-dashoffset: 0;
        stroke: #4caf50;
    }
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.grecaptcha-badge {
  position: fixed !important;
  bottom: 10px;
  right: 10px;
  z-index: 9999 !important; 
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none; /* prevents accidental clicking when hidden */
}

.show-recaptcha-badge .grecaptcha-badge {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.show-always .grecaptcha-badge {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* table */
:root {
    --font-size-base: 1rem;
    --font-size-sm: 0.9rem;
    --font-size-xs: 0.8rem;
    --padding-base: 0.75em 1em;
    --padding-sm: 0.5em 0.75em;
    --padding-xs: 0.4em 0.5em;
    --border-color: transparent;
    --bg-header: black;
    --bg-hover: gray;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1em;
}

.ai-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-base);
    min-width: 350px;
    table-layout: fixed;
}

.ai-table th, td {
    border: 1px solid var(--border-color);
    padding: var(--padding-base);
    text-align: left;
    word-wrap: break-word;
}

.ai-table th {
    background-color: var(--bg-header);
    font-weight: 600;
}

.ai-table tbody tr:hover {
    background-color: var(--bg-hover);
}

em.note {
    display: block;
    font-size: var(--font-size-sm);
    color: #555;
    margin-top: 0.5em;
}

@media (max-width: 768px) {
    .ai-table {
        font-size: var(--font-size-sm);
    }

    .ai-table th, td {
        padding: var(--padding-sm);
    }
}

@media (max-width: 480px) {
    .ai-table {
        font-size: var(--font-size-xs);
    }

    .ai-table th, td {
        padding: var(--padding-xs);
    }
}

.research {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px;
}

#research-art {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.article {
    margin-left: 2.5%;
    margin-right: 2.5%;
    width: 500px;
    background: #1d1d1d;
    border-radius: 12px;
    box-shadow: 0 10px 12px rgba(0,0,0,0.6);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.article img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    position: relative;
}

.article-title {
    font-size: 1.5rem;
    margin: 10px 0;
    color: white;
}

.article-text {
    font-size: 1rem;
    color: #999999;
    max-width: calc(100% - 60px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-date {
    font-size: 0.8rem;
    color: #767676;
    margin-top: 5px;
}

.expand-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 1; 
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
}

.expand-btn:hover {
    color: black;
    background: white;
}

@media (max-width: 768px) {
    .article {
        margin-left: 5%;
        margin-right: 5%;
    }
}

.overlay-a {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    scrollbar-color: transparent;
}

.full-article::-webkit-scrollbar {
    display: none; 
}

.overlay-a.active {
    opacity: 1;
    visibility: visible;
}

.full-article {
    margin-top: 100px;
    background: transparent;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    height: 100%;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.overlay-a.active .full-article {
    transform: scale(1);
}

.close-btn-a {
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    z-index: 1001;
}
 
/* form.css laravel merge */
.container-form {
    max-width: 600px;
    min-width: 600px;
    margin: auto;
    background: rgba(0, 0, 0, 0.2);
    
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 25px;
}

.container-form img {
    margin-top: -2rem;
    width: 100%;
}
.container-form h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}
.form-group {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    resize: none;
}
.form-group label {
    width: 150px;
    font-weight: bold;
    margin-right: 1rem;
    color: white;
}

select, input, textarea {
    flex: 1;
    padding: 0.5rem 1rem 0.5rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

textarea {
    resize: vertical;
    font-family: Arial, Helvetica, sans-serif;
}

.button {
    font-size: 1.05rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    margin-top: 1rem;
    padding: 0.75rem;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    align-content: center;
    text-align: center;
    border-radius: 25px;
    display: block;
    transition: color 0.3s, transform 0.3s;
}

.hidden {
    display: none;
}

.serv {
    font-size: 1.05rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    margin-top: 1rem;
    padding: 0.75rem;
    width: 95%;
    cursor: pointer;
    text-decoration: none;
    align-content: center;
    text-align: center;
    border-radius: 25px;
    display: block;
    transition: color 0.3s, background 0.3s;
}

.serv:hover {
    color: black;
    background: white;
}

.button:hover {
    transform: scale(1.05);
}

.quantum-bg {
    background-image: url("/media/contact2-b-pai.png");
    image-rendering: optimizeQuality;
    background-repeat: no-repeat;
}

.contact-bg {
    background-image: url("/media/contact1-b-pai.png");
    background-repeat: no-repeat;
    image-rendering: optimizeQuality;
}

@media (max-width: 768px) {
    .container-form {
        min-width: 85%;
        max-width: 90%;
        padding: 20px;
        margin-top: 80px;
        box-shadow: none;
    }
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    color: black;
    font-family: Arial, sans-serif;
}

.legal-table th, .legal-table td {
    border: 1px solid #ccc;
    padding: 10px;
    vertical-align: top;
    text-align: left;
}

.legal-table thead th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.legal-category-col {
    width: 30%;
}

.legal-middle-col {
    width: 55%;
}

.legal-status-col {
    width: 15%;
}