body {
    background-color: rgb(10, 10, 10);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family:Arial, Helvetica, sans-serif;
    /* font-family: 'Trebuchet MS', sans-serif */
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style-type: none;
    padding: 0;
}
#app {
    display: flex;
    flex-direction: column;
    /* width: 98vw; */
    /* height: 98vh; */
    align-items: center;
    justify-content: center;
}
.section {
    display: flex;
    margin: 4vh 0vw;
    width: 90vw;
}
#intro-section {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    height: 90vh;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem; /* Adds rounded corners */
    font-size: large;

}
#intro-section video.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 80%;
}
#intro-section > *:not(video.bg-video) {
    position: relative;
    z-index: 1;
}


#know-more-button{
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
}
#know-more-button:hover {
    background-color: white;
    color: black;
    opacity: 0.6;
    transition: 0.3s;
}
#intro-text{
    text-align: center;
    width: 70%;
    line-height: 1.5;
    font-weight: 500;
}

#about-section{
    display: flex;
    color: white;
    /* text-align: justify; */
    flex-direction: column;
}

.subsection {
    display: flex;
    margin: 4vh 0vw;
    width: 90vw;
    align-items: center;
}

.right-section-image{
    width: 40%;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0%;
}

.text-content-subsection{
    width: 50%;
    line-height: 1.8;
}

.divider{
    background-color: aliceblue;
    /* width: 100%; */
    width: 100vw;
    padding: 0 10vw;
    display: flex;
    justify-content: center;
    height: 60vh;
    align-items: center;
}

.gradient-text {
    background: linear-gradient(270deg, #ff0080, #7928ca, #2afadf, #ff0080);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 30s ease infinite;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#features-section{
    display: flex;
    color: white;
    /* text-align: justify; */
    flex-direction: column;
}
#features-section ul{
    list-style-type: none;
    padding: 0;
    
}
#features-section li{
    margin: 1vh 0vw;
    padding: 1vh 0;
    /* background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px; */
    font-size: large;
}
.left-section-image{
    width: 40%;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0;
}

#dynamic-word {
    transition: opacity 0.3s ease-in-out;
}

.footer-canvas{
    /* width: 100%; */
    height: 50vh;
    /* position: absolute; */
    display: flex;
    top: 0;
    left: 0;
    z-index: -1;
    justify-content:space-around;
    align-items: center;
    color: white;
}
.footer-logo-left{
    display: flex;
    width: 30%;
    align-items: center;
    justify-content: end;
    background-color: red;
}
.footer-content{
    display: flex;
    /* width: 50%; */
    /* background-color: rgb(0, 9, 141); */
}
.footer-col{
    width: 30%;
    display: flex;
    justify-content: center;
}
.footer-col li{
    margin: 1vh 0vw;

}

#footer-logo{
    width: 20%;
}

#dynamic-word {
    transition: color 0.4s ease;
}

#cursor {
    color: black;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
html {
    scroll-behavior: smooth;
}





