@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
:root{
  --primary-color: #11121a;
  --hover-color: #272832;
  --accent-color: #0071FF;
  --text-color: #c9c9c9;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-family: Poppins, 'Segoe UI', sans-serif;
  color: var(--text-color);
  scroll-behavior: smooth; 
}
body{
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--primary-color);
  background-image: url(website\ bg-01.png);
  object-fit: cover;
  background-size: cover;  
  background-position: center;  
  background-repeat: no-repeat; 
  
}
main{
  padding: min(5em, 7%);
}
main p{
  margin-top: .35em;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; 
}


#gradient-text {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  max-width: 40%; 
  background: linear-gradient(90deg, #aad7ff, #c5aaff, #00d7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-left: 50px;
}

.fp-iframe {
  width: 50%;
  height: 525px;
  border: none;
}

/* Responsive Styles for Mobile Devices */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column; 
    align-items: center; 
  }

  #gradient-text {
    font-size: 28px; 
    max-width: 90%; 
    text-align: center; 
    margin-left: 0; 
  }

  .fp-iframe {
    width: 90%; 
    height: 400px; 
  }
}


nav{
  background-color: transparent;
  border-bottom: 1px solid var(--hover-color);
  backdrop-filter: blur(30px);
  border-radius: 10px;
  width: 100%;
  
  
}


nav ul{
  list-style: none;
  display: flex;
}
nav .home-li{
  margin-right: auto;
}
nav li{
  display: flex;
}
nav a{
  display: flex;
  text-decoration: none;
  color: var(--text-color);
  padding: 1em 2em;
  transition: background-color 150ms ease;
}
nav a:hover{
  background-color: var(--hover-color);
}
nav a.active-link{
  border-bottom: 2px solid var(--text-color);
}
nav a.accent-link{
  background-color: var(--accent-color);
}
#open-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}
#close-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
}
#overlay{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color); 
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}

.footer{
  width: 100%;
  position: absolute;
  /* bottom: 0; */
  background-color: rgba(255, 255, 255, 0.027);
  padding: 40px 0 30px;
  border-top-left-radius: 125px;
  font-size: 13px;
  line-height: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid white;


}
.logo2{
  width: 130px;
}
.logo{
  width: 130px;
  margin-bottom: 30px;
  
}

.row{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.col{
  flex-basis: 33%;
  padding: 10px;
}

.col:nth-child(2), .col:nth-child(3){
  flex-basis: 15%;
}

.col h3{
  width: fit-content;
  margin-bottom: 40px;
  position: relative;


}

.email-id{
  width: fit-content;
  border-bottom: 2px solid #ccc;
  margin: 20px 0;
}

.social-icons .fa-brands{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #000;
  background: white;
  backdrop-filter: blur(10px);
  margin-right: 15px;
  margin-bottom: 15px;
  cursor: pointer;
}

hr{
  width: 80%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;

}

.copyright{
  text-align: center;
}

.underline{
  width: 100%;
  height: 5px;
  background: #2e0e77;
  border-radius: 4px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
  
}

.underline1{
  width: 100%;
  height: 5px;
  background: #2e0e77;
  border-radius: 4px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
  /* margin-top: 20px; */
} 
.underline1 span{
    width: 15px;
    height: 100%;
    background: #93b3ff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
  }


.underline span{
  width: 15px;
  height: 100%;
  background: #93b3ff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}

@keyframes moving{
  0%{
    left: -20px;
  }
  100%{
    left: 100%;
  }

}








@media screen and (max-width: 700px) {
  #open-sidebar-button, #close-sidebar-button{
    display: block;
  }
  nav{
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(15em, 100%);
    z-index: 10;
    border-left: 1px solid var(--hover-color);
    transition: right 300ms ease-in-out;
  }
  nav.show{
    right: 0;
  }
  nav.show ~ #overlay{
    display: block;
  }
  nav ul{
    width: 100%;
    flex-direction: column;
  }
  nav a{
    width: 100%;
    padding-left: 2.5em;
  }
  nav a.active-link{
    border-bottom: none;
  }
  nav .home-li{
    margin-right: unset;
  }
  h3{
    font-size: 1em;
  }
}

@media screen and (max-width: 503px){
  .underline1{
    margin-top: 20px;
  }
  .col{
    flex-basis: 100%;
    padding: 10px;
  }
}
@media screen and (max-width: 381px){
  .underline1{
    margin-top: 20px;
  }
  .col{
    flex-basis: 100%;
    padding: 10px;
  }

}