*{
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body{
    background-color: rgb(0,0,33);
    color: white;
    font-family: 'Poppins', sans-serif;
    z-index: -100;
    /* height: 500%; */
    
}


#intro-landing{
    /* display: none; */
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3;
    background-color    : black;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    /* justify-content: space-between; */
    align-items: center;
    overflow: hidden;
}
.ILcontents{
    position: absolute;
    position: absolute;
    top: 15vh;
    left: 10%;
    /* z-index: 3; */
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;   
}
.Sbutton{
    position: absolute;
    left: 45vw;
    top: 75vh;
    padding: 15px;
    border-radius: 6px;
    font-size: 20px;
    font-style: sans-serif;
    border: none;
    font-weight: 400;
    transition: transform 0.2s ease;
    cursor: pointer;
    background-color: #2ae880;
}
#mojs-container {
    position: fixed; /* Fixed to the viewport */
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, -50%); /* Center it in the viewport */
    z-index: 1000; /* Ensure it appears above other elements */
    pointer-events: none; /* Prevent interaction */
}
.Sbutton:active{
    transform: scale(0.96);
}

.intro-image{
    height: auto;
    width: 40%;
}
.ILquote{
    /* position: absolute; */
    color: white;
    font-size: 2rem;
    /* width: 40%; */
    font-weight: bold;
    text-align: center;
}
.progressBar{
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background-color: rgb(8, 12, 138);
    width: 0;
    z-index: 2000;
}
.header {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* left: 10vw; */
    padding: 10px 0 10px 0;
    width: 100vw;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    position: fixed;
    top: 0;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.headerContent{
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 80vw;
    left: 10vw;
}

.logo a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 15px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2ae880;
}

.panel1{
    /* margin-top: 10vw;
    margin-left: 10vw; */
    display: flex;
    top: 10vw;
    left: 10vw;
    position: absolute;
    height: 70vh;
    width: 80vw;
    background-color: green;
    background: none;
    z-index: 1;
}
.left{
    position: relative;
    /* left: 20vw; */
    width: 40vw;
    align-items: center;
}
.leftContent{
    position: relative;
    top: 24vh;
    align-items: center;
}
.leftContent h1 {
    font-size: 2.8rem; /* Adjust the font size for the heading */
    font-weight: bold; /* Make the heading bold */
    color: white; /* Set the text color */
    transition: color 0.3s ease, transform 0.3s ease; /* Add transition for hover effect */
}

.leftContent h1:hover {
    color: #2ae880; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge the text on hover */
}

.leftContent p {
    font-size: 1.5rem; /* Adjust the font size for paragraphs */
    line-height: 1.6; /* Improve readability with line height */
    color: #dcdcdc; /* Set a lighter color for the text */
    /* transition: color 0.3s ease; Add transition for hover effect */
}
.leftContent span {
    display: inline-block; /* Ensure each word is treated as a block for hover effects */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for size and color */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.leftContent span:hover {
    transform: scale(1.2); /* Slightly enlarge the word */
    color: #ff9c00; /* Change color on hover */
}
.right{
    position: relative;
    /* left: 20vw; */
    width: 40vw;
}

.circleSpring {
    position: absolute;
    right: 15vw;
    top: 20%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .circle {
    position: absolute;
    background: transparent;
    width: calc(var(--i) * 2.5vmin);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid rgb(0, 255, 13);
    transform-style: preserve-3d;
    transform: rotateX(70deg) translateZ(50px);
    animation: animate 3s ease-in-out calc(var(--i) * 0.08s) infinite;
    box-shadow: 0 0 15px rgb(124, 124, 124),
                inset 0 0 15px rgb(124, 124, 124);
  }

  @keyframes animate {
    0%, 100% {
      transform: rotateX(70deg) translateZ(50px) translateY(0);
      filter: hue-rotate(0);
    }

    50% {
      transform: rotateX(70deg) translateZ(50px) translateY(-50vmin);
      filter: hue-rotate(360deg);
    }
  }

.panel2 a{
    text-decoration: none;
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
#panel2{
    background: none;
    height: 200px;
}
  
#panel2{
    text-align: center;
    font-size: 3rem;
    position: relative;
    width: 57%;
    height: 100px;
    margin: 100px auto;
    background: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 1;
    z-index: 1;
}
/* General styling for the panels */
.panel2 {
    text-align: center;
    font-size: 1.5rem;
    width: 57%;
    height: auto;
    margin: 100px auto;
    background-color: #2ae880;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
}

/* Styling for the project logo */
.project-logo {
    margin-bottom: 15px;
}

.logo-image {
    width: 80px; /* Adjust size as needed */
    height: auto;
    border-radius: 5px; /* Optional: Add rounded corners */
}

/* Styling for the project name */
.panel2 h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

/* Styling for the tech stack */
.panel2 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Styling for the "See Demo" button */
.demo-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #1771c5;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

/* Hover effect for the button */
.demo-button:hover {
    background-color: #ff5722;
    transform: scale(1.1);
}

@media(max-width: 600px){
    .ILcontents{
        flex-direction: column;
        align-items: center;
    }
    .intro-image{
        padding-top: 10%;
        width: 80%;
        height: auto;
    }
}
