*{
    margin:0;
    padding:0;
    list-style: none;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;   
}

body {
    background: #052659;
}
header{
   width:100%;
   height: 80px;
   background: #052659; 
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding:0 100px;
   z-index: 10;
}
.scroll-button {
    height: 20vh; /* Makes it occupy most of the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;

}


.one-text-box{
    margin-top: 400px;
    padding: 100px;
    background-color: white;
    position: relative;
    color: #3b3575;
    z-index: 20;
}

.logo{
    margin-top: 2%;
}
.hamburger{
    display: none;
}
.nav-bar ul{
    display: flex;
}
.nav-bar ul li a{
    display: block;
    color:white;
    font-size:20px;
    padding:10px 25px;
    border-radius:50px;
    transition: 0.2s;
    margin: 0 5px;
}

.nav-bar ul li a:hover{
    color:#052659;
    background: white;
}

.nav-bar ul li a.active{
    color: #052659;
    background:white;
}

@media only screen and (max-width:1320px){
    header{
        padding:0 50px;
    }
}
@media only screen and (max-width: 1100px){
    header{
        padding:0 30px;
    }
}
@media only screen and (max-width: 900px){
    .hamburger{
        display: block;
        cursor: pointer;
    }
    .hamburger .line{
        width: 30px;
        height: 3px;
        background: white;
        margin: 6px 0;
    }
    .nav-bar{
        height: 0;
        position:absolute;
        top:80px;
        left:0;
        right:0;
        width:100vw;
        background: #052659;
        transition: 0.2s;
        overflow: hidden;
        z-index: 1000;/*makes sure the navigation (hambuger nav) will always be ontop of the other elements on the page!*/
    }
    .nav-bar.active{
        height: 450px;
    }
    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar.active ul{
        opacity: 1;
    }
    .nav-bar ul li a{
        margin-bottom: 12px;
    }

}

/* home page cloud effect -------------------------*/
/* Main Container */
.main-container {
    padding-top: 60%;
    max-width: 80%;
    margin: 5rem auto 2rem auto;
    padding: 2rem;
    text-align: center;
    z-index: 20;/*makes the text higher than the clouds*/
    position: relative;
  }
  
  .main-container h1 {
    font-size: 4rem;
    margin: 0.2rem 0;
    color: #ffe23b;
    letter-spacing: 2px;
    z-index: 20;
    position: relative;
  
  }
  .main-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    z-index: 20;
    position: relative;
    letter-spacing: 2px;

  }

  .main-container .text {
    column-count: 1;
    column-gap: 2rem;
    margin-top: 2rem;
    text-align: center;
    z-index: 20;
  }

  .main-container h2{
    padding: 1px;
  }
  .main-container h3{
    color: #fff;
    font-size: 1.1rem;
    z-index: 20;
  }

  .main-container h4{
    font-size: 3rem;
    padding: 3%;
  }
  .main-container h5{
    color: white;
    font-size: 2rem;
  }

/*---Moving clouds, form right and left side. (HOME PAGE) ---*/
#left-image1, #left-image2, #left-image3, #left-image4,
#right-image1, #right-image2, #right-image3, #right-image4 {
  position: absolute;
  
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  z-index: 1;
}

/* -------Left-side images----------- */
#left-image1 { 
  top: 2%; 
  left: -200px; /* Start off the screen */
  background-image: url('6-cloud.png');
  animation: move-left1 3s ease-in-out forwards;
  width: 220px; /* Adjust size*/
  height: 100px; /* Adjust size*/
}




#left-image3 { 
  position: absolute;
  top: 20%; 
  left: -200px;
  background-image: url('4-cloud.png');
  animation: move-left3 3s ease-in-out forwards;
  width: 270px; /* Adjust size*/
  height: 100px; /* Adjust size*/
}


#left-image4 { 
  top: 38%; 
  margin-left: 0%;
  background-image: url('1-cloud.png');
  animation: move-left4 3s ease-in-out forwards;
  width: 550px; /* Adjust size*/
  height: 160px; /* Adjust size*/
}


/* --------Right-side images---------- */
#right-image1 { 
  top: 2%; 
  right: -200px; /* Start off the screen */
  background-image: url('5-cloud.png');
  animation: move-right1 3s ease-in-out forwards;
  width: 300px; /* Adjust size*/
  height: 150px; /* Adjust size*/
  z-index: -20;
}

#right-image2 { 
  top: 20%; 
  right: -200px;
  background-image: url('3-cloud.png');
  animation: move-right2 3s ease-in-out forwards;
  width: 450px; /* Adjust size*/
  height: 200px; /* Adjust size*/
  z-index: 1;
}



#right-image4 { 
  top: 38%; 
  right: -200px;
  background-image: url('2-cloud.png');
  animation: move-right4 3s ease-in-out forwards;
  width: 580px; /* Adjust size*/
  height: 200px; /* Adjust size*/
  z-index: 1;
}


@keyframes move-left1 {
  0% {
    left: -200px; /* Start off the screen to the left, that way its -ve*/
  }
  100% {
    left: 1%; /* how far it goes across the screen*/
  }
}



@keyframes move-left3 {
  0% {
    left: -200px; /* Start off the screen to the left */
  }
  100% {
    left: 5px; /* how far it goes across the screen*/
  }
}

@keyframes move-left4 {
  0% {
    left: -200px; /* Start off the screen to the left */
  }
  100% {
    left: 0%; /* how far it goes across the screen*/
  }
}


@keyframes move-right1 {
  0% {
    right: -200px; /* Start off the screen to the right */
  }
  100% {
    right: 5%; /* how far it goes across the screen*/
  }
}

@keyframes move-right2 {
  0% {
    right: -200px; /* Start off the screen to the right */
  }
  100% {
    right: 5%; /* how far it goes across the screen*/
  }
}



@keyframes move-right4 {
  0% {
    right: -200px; /* Start off the screen to the right */
  }
  100% {
    right: 0%; /* how far it goes across the screen*/
  }
}

/* second web page --------------------------------*/
@media screen and (min-width:48em) {
    .menu {
      display: none;
    }
    nav ul {
      display: flex;
      width: 88%;
      max-width: 1080px;
      margin: 0 auto;
      border-top: 0;
    }
    nav li {
      margin-right: .5em;
    }
    nav a {
      border-bottom: 0;
    }
  }
  
  
.main-container.second-page {
    max-width: 80%;
    margin: 0.1rem auto 2rem auto;
    padding: 2rem;
    text-align: center;
    z-index: 5;
  }
  
  .main-container.second-page img {
    width: 25%; /* reduces size */
    height: auto;
    z-index:5;

  
  }
  
  
  .main-container.second-page h1  {
    font-size: 4rem;
    margin: 0.2rem 0;
    color: #ffe23b;
    letter-spacing: 2px;
  }
  
  .main-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #3b3575;
  }

 
  
  .main-container .description {
    column-count: 1;
    column-gap: 2rem;
    margin-top: 2rem;
    text-align: left;
  }
  
  @media screen and (min-width: 768px) {
    .main-container .description {
      column-count: 2;
    }
  }
  
  .main-container button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    background-color: #ffe23b;
    color: #3b3575;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 20;
  }
  
  .main-container button:hover {
    background-color: #ffb300;
    transform: scale(1.05);
  }
  
  .revealed-area {
    position: fixed;
    inset: 0;
    background: radial-gradient(
      circle 50px at center,
      transparent 10px,
      rgba(0, 0, 0, 0.98)
      );
    pointer-events: none;
    transition: background 0.3s ease;
    z-index: 1000;
  }
  
  .revealed-area.no-shadow {
    background: transparent;
  }
  

  /*--------------------------------third web page - GLASS MORPHISM !!!!!!! --------------------------*/
  body.glass-morphism {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column; /* Keeps header on top and content below */
    background: radial-gradient(circle, #17417f 20%, #051935 100%);
    font-family: 'Poppins', sans-serif;
    padding-left: 2px;
    padding-right: 2px;
}
header {
    width: 100%;
    z-index: 100;
}   

.glass-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Makes sure it takes the available vertical space */
   
}
.square{
position: absolute;
backdrop-filter: blur(5px);
box-shadow: 0 25px 45px #3b3575;
border: 1px solid #8285be;
border-right: 1px solid #45494e;
border-bottom: 2px solid #45494e;
}

.glass {
    min-height: 250px;
    width: 50%; /* Adjust this to control size */
    border-radius: 1rem;
    background: rgba(12, 17, 72, 0.3);
    backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 45px #3b3575;
    border: 1px solid #8285be;
    border-right: 1px solid #45494e;
    border-bottom: 2px solid #45494e;
    padding: 2.5rem;
    color: #fff;
    text-align: center;
}
.div.glass-wrapper{
  padding:auto;
}
.glass h1 {
    font-weight: 600;
}

.glass p {
    margin-bottom: 2rem;
    font-weight: 200;
}

.btn {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    background: #fc466b;
    border-radius: 10px;
}
