@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&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  background-size: cover;
  background-position: center;
  
  
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #F6F4F2;
  font-size: 1rem;
  font-weight: 600;

}

a:hover {
  color: #C6AD8F;
}

/* Header style */
header {
  position: relative;
  padding: 0 2rem;
  background-color: #262626;
  padding-bottom: 10px;
}

.navbar {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  background-color: #262626;
  
  
}

.navbar .logo a img {
  max-width: 175px;
  height: auto;
  
}

.navbar .links {
  display: flex;
  gap: 2rem;
  
}

.navbar .toggle_button {
  color: #F6F4F2;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action_button {
  background-color: #C6AD8F;
  color: #F6F4F2;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
}

.action_button:hover {
  scale: 1.05;
  color: #F6F4F2;
}

.action_button:active {
  scale: 0.95;
}

/* Dropdown CSS */
.dropdown_menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
  height: 240px;
}

.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu .action_button {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Hero section */
section#hero {
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F6F4F2;
  background-image: url(Main.jpg);
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  
}

.information::after {
  content: "";
  display: table;
  clear: both;
}

.information {
  display: flex;
  background-color: #425664;;
  position: relative;
  padding: 80px 20px 80px 20px;
  
}

.image-container {
  
  float: left;
  margin-right: 20px;
  max-width: 500px;
  flex: 1;
}

.image-container img {
  border-radius: 20px;
  max-width: 100%;
  height:auto;
}

.text-container {
  flex: 1;
  padding-bottom: 20px;
}

.text-container h2 {
  font-size: 3em;
  color: #F6F4F2;
  margin-bottom: 10px;
  text-align: center;
}

.text-container p {
  font-size: 20px;
  color: #F6F4F2;
  font-weight: 500;
  text-align: center;
  padding-left: 20px;
}

.Learn-More {
  padding-top: 20px;
  text-align: center;
  padding-left: 20px;
}

.Learn-More button {
  background-color: #C6AD8F;
  color: #F6F4F2;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.Learn-More button:hover {
  scale: 1.05;
  background-color: #b19b80;
}

.Learn-More button:active {
  scale: 0.95;
  background-color: #85745f;
}

.information2 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 80px 20px 80px 20px;
}

/* Pseudo-element for blurred background */
.information2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(flight2.jpg);
  background-size: cover;
  background-position: center center;
  filter: blur(10px);
  z-index: 1;
}

.information2 h2 {
  font-size: 2em;
  position: relative;
  z-index: 2;
  text-align: center;
  color: lightgreen;
}

.information2 p {
  font-size: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: lightgreen;
}

.image-container1 {
  border-radius: 20px;
  float: right;
  margin-left: 20px;
  max-width: 650px;
  flex: 1;
  position: relative;
}

.image-container1 img {
  border-radius: 20px;
}

.information1 {
  background-color: #F6F4F2;
  display: flex;
  position: relative;
  padding: 80px 20px 80px 20px;
}

.text-container1 {
    flex: 1;
    padding-bottom: 20px;
  }
  
  .text-container1 h2 {
    font-size: 3em;
    color: #425664;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .text-container1 p {
    font-size: 20px;
    color: #425664;
    font-weight: 500;
    text-align: left;
    padding-left: 20px;
  }

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(127% + 1.3px);
  height: 98px;
}

.wave .shape-fill {
  fill: #425664;
}

.wave1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave1 svg {
  position: relative;
  display: block;
  width: calc(127% + 1.3px);
  height: 98px;
}

.wave1 .shape-fill {
  fill: #F6F4F2;
}

.Pooleys {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px 0px 20px;
  background-color: #425664;
}

.Pooleys a{
    color: #C6AD8F;
}

.Pooleys img {
  max-width: 100%;
  height: auto;
}

.Pooleys-information {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px 50px 20px;
  color: #F6F4F2;
  background-color: #425664;
}

.Pooleys-information a{
    text-decoration: underline;
}

.Pooleys-information p {
  text-align: center;
}

.join_us {
  background-color: #F6F4F2;
  display: flex;
  position: relative;
  padding: 80px 20px 80px 20px;
  text-align: center;
}

.join_us h2 {
  text-align: center;
  color: #425664;
}

.join_us p {
  text-align: center;
  color: #425664;
}

.join_us a{
    text-decoration: underline;
    color: #425664;
}

.join_us a:hover{
    color: #C6AD8F;
}

.wave_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave_bottom svg {
  position: relative;
  display: block;
  width: calc(124% + 1.3px);
  height: 75px;
}

.wave_bottom .shape-fill {
  fill: #425664;
}

.Wave3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.Wave3 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 137px;
}

.Wave3 .shape-fill {
  fill: #425664;
}

footer{
    position:flex;
    bottom: 0;
    left: 0;
    right: 0;
    background:#262626;
    height: auto;
    width: 100vw;
    padding-top: 40px;
    color: #fff;
    
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li{
    margin: 0 10px;
}

.socials a{
    text-decoration: none;
    color: #fff;
}

.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}

.socials a:hover i{
    color:#C6AD8F;
}

.footer-bottom{
    background:#262626;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

@media (max-width: 992px) {
  .navbar .links,
  .navbar .action_button {
    display: none;
  }

  .navbar .toggle_button {
    display: block;
  }

  .dropdown_menu {
    display: block;
  }
}

@media (max-width: 576px) {
  .dropdown_menu {
    left: 2rem;
    width: unset;
  }
}

@media (max-width: 768px) {
  img {
    max-width: 50%;
  }
}

/*contact page */



.wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 350px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 4px 4px 2px lightgreen; 
}

.wrapper h2{
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #494949;
}

.wrapper .input_field{
  margin-bottom: 10px;
}

.wrapper .input_field input[type="text"],

.wrapper textarea{
  border: 1px solid #e0e0e0;
  width: 100%;
  padding: 10px;
}

.wrapper textarea{
  resize: none;
  height: 80px;
}

.wrapper .btn input[type="submit"]{
  border: 0px;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  width: 100%;
  background:lightgreen;
  color: #494949;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
}

#error_message{
  margin-bottom: 20px;
  
  padding: 0px;
  text-align: center;
  font-size: 14px;
  transition: all 0.5s ease;
}

/* about us page */

.Team-header{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #425664;
}
.Team-header h2{
  color: #F6F4F2;
  font-size: 3em;
  font-weight: 400;
  padding: 80px 0 0 0;
}

.Team{
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #425664;
  
}


.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.slide-content{
  overflow: hidden;
  margin: 0 40px;
  border-radius: 25px;
}
.card{
  width: 320px;
  border-radius: 25px;
  background-color: #fff;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  align-items: center;
}

.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}



.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #262626;
  border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #262626;
}

.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #fff;
}

.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #262626;
}

.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}

.button{
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: #262626;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3 ease;
}


.button:hover{
  background: #222;
}

.swiper-navBtn{
  color: #262626;

}

.swiper-navBtn:hover{
  color: #222;
  
}

.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 40px;
}

.swiper-button-next{
  right: 0;
}

.swiper-button-prev{
  left: 0;
}

.swiper-pagination.bullet{
  color: #265df2;
  opacity: 1;
}

.swiper-pagination.bullet-acvive{
  background-color: #333;
}

@media screen and (max-width: 768px){
  .slide-content{
    margin: 0 10px
  }
  .swiper-navBtn{
    display: none;
  } 
}

/* About us page */

.Welcome{
  background-color: #425664;
  display: flex;
  position: relative;
  padding: 80px 20px 80px 20px;

}

.text-welcome {
  flex: 1;
  padding-bottom: 20px;
}

.text-welcome h2 {
  font-size: 3em;
  color: #F6F4F2;
  margin-bottom: 10px;
  text-align: center;
}

.text-welcome p {
  font-size: 20px;
  color: #F6F4F2;
  font-weight: 500;
  text-align: center;
  padding-left: 20px;
}

.our-values {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container h2 {
  font-size: 3em;
  color: #425664;
  margin-bottom: 30px;
  text-align: center;
}

.value {
  text-align: center;
  margin-bottom: 30px;
}

.value h3 {
  color: #31404b;
  font-size: 24px;
  margin-bottom: 10px;
}

.value p {
  font-size: 20px;
  color: #28353d;
  font-weight: 500;
  text-align: center;
  padding-left: 20px;
  line-height: 1.6;
}





.Our-mission{
  background-color: #F6F4F2;
  display: flex;
  position: relative;
  padding: 80px 20px 80px 20px;

}

.text-mission {
  flex: 1;
  padding-bottom: 20px;
}

.text-mission h2 {
  font-size: 3em;
  color: #425664;
  margin-bottom: 10px;
  text-align: center;
}

.text-mission p {
  font-size: 20px;
  color: #425664;
  font-weight: 500;
  text-align: center;
  padding-left: 20px;
}

.image-container-joinus {
  border-radius: 20px;
  float: right;
  margin-left: 20px;
  width: 100%; 
  flex: 1;
  position: relative;
}

.image-container-joinus img {
  border-radius: 20px;
  width: 100%; 
  height: auto; 
}


.Join-us-header{
  background-color: #F6F4F2;
  display: flex;
  position: relative;
  padding: 40px 20px 0px 20px;
  max-height: 500px;

}

.text-join {
  flex: 1;
  
}

.text-join h2 {
  font-size: 3em;
  color: #425664;
  
  text-align: center;
}

.Join-us {
  background-color: #F6F4F2;
  display: flex;
  position: relative;
  padding: 0 20px 80px 20px;
}

.text-container-joinus {
    flex: 1;
    padding-bottom: 20px;
  }
  
  .text-container-joinus h2 {
    font-size: 3em;
    color: #425664;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .text-container-joinus p {
    font-size: 20px;
    color: #425664;
    font-weight: 500;
    text-align: left;
    padding-left: 20px;
  }
  .Join-button{
    margin-top: 40px;
  }

  .Sign-up{
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: #262626;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3 ease;
   
  }



  .loginForm{
    display: flex;
    justify-content: center;
    align-items: center;
    
    min-height: 100vh;
    background: url('login.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0px 80px 0px;
}
/* login css */
.wrapper1 {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    margin: 20px;
}

.wrapper1 h1 {
    font-size: 36px;
    text-align: center;

}
.wrapper1 .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}
 
.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #fff;

}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.wrapper1 .remember-forget {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}
.remember-forget label input {
    accent-color: #fff;
    margin-right: 3px;
}

.remember-forget a {
    color: #fff;
    text-decoration: none;
}

.remember-forget a:hover {
    text-decoration: underline;
}
.wrapper1 .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    transition: background 0.3s ease;
    
}

.wrapper1 .btn:hover{
    background: #ccc;
}

.wrapper1 .btn:active {
    background: #999;

}

.wrapper1 .register-link {
    font-size: 14.5px;
    text-align: center;
    margin-top: 20px;
}

.wrapper1 .register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.wrapper1 .register-link p a:hover {
    text-decoration: underline;
}


/*registration css*/

.registrationForm{
  display: flex;
  justify-content: center;
  align-items: center;
  
  min-height: 100vh;
  background: url('login.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0px 80px 0px;
}

.wrapper2 {
  width: 750px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  color: #fff;
  padding: 40px 35px 55px;
  margin: 0 10px;
  
}

.wrapper2 h1{
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;

}

.wrapper2 .input-box2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: transparent;
}

.input-box2 .input-field {
  position: relative;
  width:48%;
  height: 50px;   
  background: transparent;
  margin: 13px 0;
}

.input-box2 .input-field input{
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .2);
  outline: none;
  font-size: 16px;
  color: #fff;
  border-radius: 6px;
  padding: 15px 15px 15px 40px;
  
}

.input-box2 .input-field input::placeholder {
  color: #fff;
}

.input-box2 .input-field i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.wrapper2 .label {
  display: inline-block;
  font-size: 14.5px;
  margin: 10px 0 23px;
}

.wrapper2 label input{
  accent-color: #fff;
  margin-right: 5px;
}

.wrapper2 .btn {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.input-box2 label, .gender-title{
  width: 95%;
  color: #fff;
  font-weight: bold;
  margin: 5px 0;
}

.input-box2 label, .Young-aviator{
  width: 95%;
  color: #fff;
  font-weight: bold;
  margin: 5px 0;
}

.gender-title{
  font-size: 16px;
}

.Young-aviator{
  font-size: 16px;
}

.optional-category{
  padding: 0px 0 20px 0;
}

.optional-category label{
  padding: 0 20px 0 5px;
  font-size: 14px;
  
}

@media(max-width: 576px) {
  .input-box2 .input-field{
      width: 100%;
      margin: 10px 0;
  }
}


/* policy page */

/* Style for the information section */
.information-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.information-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.information-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.information-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.information-section ul li {
  font-size: 16px;
  line-height: 1.6;
}

/* Media query for responsiveness */
@media (max-width: 767px) {
  .container {
      padding: 0 20px;
  }
}
