@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(#0f051e, #7597de);
  /* background: linear-gradient(#000, #3a3a3a); */
  min-height: 100vh;
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 30px 100px;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}
header .company_name {
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  list-style: none;
  margin-left: 20px;
}
header ul li a {
  text-decoration: none;
  padding: 6px 15px;
  color: white;
  border-radius: 20px;
}
header ul li a:hover,
.alwayson {
  background: white;
  color: black;
}

/* ================================Paralax============================= */

section {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
section::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #0f051e, transparent);
  z-index: 1000;
}
section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
section img#lunar {
  mix-blend-mode: screen;
}
section img#mountains {
  z-index: 10;
}

#nametxt {
  position: absolute;
  /* right: -350px; */
  color: white;
  white-space: nowrap;
  font-size: 3.5vw;
  /* font-size: 7.5vw; */
  /* font-size: 1.5em; */
  z-index: 9;
}

#btn {
  text-decoration: none;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 40px;
  background: white;
  color: black;
  font-size: 1.5em;
  z-index: 9;
  transform: translateY(100px);
}

/* =======================================2nd Div================================== */

.pg2 {
  position: relative;
  padding: 100px;
  background: #0f051e;
  display: flex;
}
.infobtn {
  text-align: center;
}
.pg2 h2 {
  font-size: 3.5em;
  margin-bottom: 10px;
  color: white;
}
.pg2 p {
  font-size: 1em;
  color: white;
}
.pg2 img:hover {
  transform: translateY(-20px);
  transition: transform 0.25s ease-in-out;
  cursor: pointer;
}
.regbtn button:hover {
  cursor: pointer;
  background-image: url("BtnHover.png");
  color: white;
  border: white, solid;
}

/* =====================================Page3======================================= */

.page3 {
  width: 100%;
  height: 150vh;
  background: linear-gradient(to top, transparent, #0f051e);
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.page3 h2 {
  font-size: 3.5em;
  margin-bottom: 5%;
  color: white;
  padding-top: 0%;
}
.page3 h6 {
  margin-top: 2%;
  font-size: 3em;
  /* margin-bottom: 10px; */
  color: white;
  /* padding-top: 3.5%; */
}
.page3 img {
  width: 15%;
  overflow: hidden;
}
.imglogo {
  margin: auto;
  display: flex;
  border-radius: 50%;
  position: relative;
  width: 200px; /* Set the desired width */
  height: 200px; /* Set the desired height */
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.imglogo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s; /* Add a smooth transition effect */
}

.imglogo:hover img {
  transform: scale(1.2); /* Increase the scale on hover */
  transform-origin: center; /* Zoom from the center */
}

.page3 p {
  width: 70%;
  margin-left: 15%;
  margin-top: 2.5%;
  color: white;
  /* text-align: justify; */
}

#Nella {
  margin-top: 5%;
  width: 30%;
  border-radius: 10px;
}
#Nella:hover {
  translate: 0px, 5px, 0px;
  cursor: pointer;
  transform: translateY(-20px);
  transition: transform 0.25s ease-in-out;
}

.team img {
  margin-top: 5%;
  width: 18%;
  border-radius: 10px;
}
.team img:hover {
  translate: 0px, 5px, 0px;
  cursor: pointer;
  transform: translateY(-20px);
  transition: transform 0.25s ease-in-out;
}

/* ======================================================= */

/* .intermediate{
    height: 75vh;
} */

.page4 {
  height: 10vh;
  background: linear-gradient(to top, #0f051e, transparent);
  padding-top: 30%;
  margin-top: 40%;
}

/* =======================================================contactpg============================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #0f051e;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #7597de;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #7597de;
}

/* Responsive Styles */
@media (max-width: 767px) {
  /* Adjust header styles */
  header {
    padding: 15px;
  }
  header .company_name {
    font-size: 1.5em;
  }
  header ul li {
    margin-left: 10px;
  }
  header ul li a {
    padding: 4px 10px;
  }

  /* Adjust section styles */
  section {
    padding: 50px;
  }
  section img#lunar {
    display: none;
  }

  /* Adjust pg2 styles */
  .pg2 {
    padding: 50px;
  }

  /* Adjust page3 styles */
  .page3 {
    padding: 10px;
  }
  .page3 h2 {
    font-size: 2em;
  }
  .page3 h6 {
    font-size: 2.5em;
  }
  .page3 img {
    width: 30%;
  }
  .page3 p {
    width: 100%;
    margin-left: 0;
    margin-top: 2.5%;
  }

  /* Adjust footer styles */
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    padding: 0 10px;
  }
}
@media (max-width: 574px) {
  /* Adjust footer styles */
  .footer-col {
    width: 100%;
  }
}
