@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}



/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: #0f1729;
    color: #fff;
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    
}

/* Adjusted CSS */
.nav__logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: auto; /* Push the logo to the right */
}

.nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-left: auto; /* Push the links to the left */
}

.nav__links li a:hover,
.nav__links li a.active {
  color: #f39405;
}

.link {
    margin-right: 40px;
    gap: 20rem;
}

.link a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.btn {
    background-color: #007BFF;
    color: fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

 .btn:hover,
.btn.active {
  color: #fff;
}

/* Header Styles */
.header__container {
    text-align: center;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #0f1729;
}

.section__header {
    font-size: 36px;
    margin-bottom: 20px;
}

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 35px;
  padding: 15px 45px;
  position: absolute;
  bottom: 180px;
  width: 100%;
  text-align: left;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/*.active, .dot:hover {
  background-color: #717171;
}
*/
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* Booking Section */

.booking__container{
    border-radius: 2rem;
    border: 1px solid #f1f5f9;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.booking__nav{
    max-width: 600px;
    margin: auto;
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    border-radius: 5px;
}

.booking__nav span{
    flex: 1;
    padding: 1rem 2rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.booking__nav span:nth-child(2){
    color: #fff;
    background-color: #3d5cb8;
}

.booking__container form{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1rem;
}

.booking__container .input__content{
    width: 100%;
}

.booking__container .form__group{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking__container .form__group span{
    padding: 10px;
    font-size: 1.5rem;
    color: #0f1729;
    background-color: #f1f5f9;
    border-radius: 1rem;
}

.booking__container .input__group{
    width: 100%;
    position: relative;
}

.booking__container label{
    position: absolute;
    top: -50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 100;
    color: #0f1729;
    pointer-events: none;
    transition: .3s;
}

.booking__container input:focus label{
    font-size: 0.8rem;
    top: 0;
}

.booking__container .form__group p{
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.booking__container .btn{
    padding: 1rem;
    font-size: 1.5rem;
}

/* Travel Support Section */

.plan__container .subheader{
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    color: #0f1729;
    letter-spacing: 5px;
}

.plan__container .section__header{
    text-align: center;
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 1rem;
}

.plan__container .description{
    text-align: center;
    color: #64748b;
}

.plan__grid{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.plan__content .number{
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: .5rem;
    font-weight: 600;
    color: #fff;
    background-color: #3d5cb8;
    border-radius: 2rem;
    
}

.plan__content .number:nth-child(4){
    background-color: #e98b6d;
}

.plan__content .number:nth-child(7){
    background-color: #ffcca3;
}

.plan__content h4{
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f1729;
    margin-bottom: 0.5rem;
    padding-left: 50px;
}

.plan__content p{
    color: #64748b;
    margin-bottom: 2rem;
    padding-left: 50px;
}

.plan__image{
    position: relative;
}

.plan__image img{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.plan__image img:nth-child(1){
    max-width: 250px;
    transform: translate(calc(-50% - 9rem), calc(-50% + 5rem));
    z-index: 3;
}

.plan__image img:nth-child(2){
    max-width: 260px;
    transform: translate(-50%, calc(-50% - 5rem));
    z-index: 2;
}

.plan__image img:nth-child(3){
    max-width: 230px;
    transform: translate(calc(-50% + 9rem), calc(-50% + 5rem));
    z-index: 3;
}
/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .nav__logo {
        font-size: 20px;
    }

    .link {
        margin-right: 10px;
    }

    .section__header {
        font-size: 24px;
    }
}

/* Initially hide the mobile menu toggle button */
#mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    #mobile-menu-toggle {
        display: block;
    }

    /* Hide the regular navigation links with icons */
    #nav-links {
        display: none;
    }
}
  




/* Newsletter */
#Newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(image/Half4.JPG);
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #0d0e0d;
  }
  
  #Newsletter h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
  }
  
  #Newsletter p span {
    color: #3d5cb8;
  }
  
  #Newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #c9c2c2;
  }
  
  
  #Newsletter .form {
    display: flex;
    width: 40%;
  }
  
  #Newsletter input {
    height: 3.125rem;
    padding: 0 1.25rem;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 7px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  #Newsletter button {
    background-color: #3d5cb8;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  /*
.reveal{
  position: relative;
  transform: translateY(150px);
  
  transition: all 2s ease;
}

.reveal.active{
  position: relative;
  transform: translateY(0px);
  opacity: 1;
}
*/

  /* footer */

  footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .col h4 {
  color: #0f0f0f;
}

footer .logo{
   margin-bottom: 30px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 2px;
}
footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
    color: #1a1d1c;
}

footer p strong{
 color: #1a1d1c;
}


footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;
}
footer .follow i{
    color: blue;
    padding-right: 6px;
    cursor: pointer;
}
footer .install .row img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 0, 186, 0.5);
}

footer .install .row img{
    border: 1px solid grey;
    border-radius: 4px;
}
footer .install img{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: purple;
    transition: 0.3;
}
footer .copyright{
    width: 100%;
    text-align: center;
}


.AboutUs1 {
    background-color: #0f1629;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Navigation style */
.About__section ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.About__section li {
    display: inline;
    margin: 0 20px;
}

.About__section a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Mission section style */
#mission {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
}

#mission h4 {
    color: #fff;
}

#mission p {
    line-height: 1.6;
}

/* Team section style */
#team {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
}

#team h2 {
    color: #333;
}

#team h4 {
    color: #333;
    margin-top: 10px;
}

#team p {
    line-height: 1.6;
}

/* Contact section style */
#contact {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
}

#contact h4 {
    color: #333;
}

#contact p {
    color: #333;
}


/* Contact Details Section */
#contact-details {
    background-color: #fff;
    padding: 40px 0;
}

.details {
    text-align: center;
}

.details span {
    font-size: 18px;
    color: #333;
}

.details h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0;
}

.details h3 {
    font-size: 18px;
    color: #333;
}

.details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.details ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.details ul li i {
    font-size: 20px;
    margin-right: 10px;
    color: #333;
}

.details ul li p {
    font-size: 16px;
    color: #555;
}

/* Google Map */
.map {
    margin-top: 20px;
}

/* Contact Us Form */
#form-details {
    background-color: #fff;
    padding: 40px 0;
}

form {
    text-align: center;
}

form span {
    font-size: 18px;
    color: #333;
}

form h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0;
}

form input[type="text"],
form input[type="email"],
form input[type="text"],
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button.normal {
    background-color: #333;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Team Members Section */
#team-members {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.people {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.people div {
    text-align: center;
    margin: 20px;
}

.people img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.people p {
    font-size: 16px;
    color: #555;
}


/*SIGN UP*/

/* Style the account forms */
.account-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #555;
}
  
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }









  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }



