@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
:root {
  /* Colors */
  --headings: #000000;
  --background: #ebebeb;
  --paragraph: #696969;
  --highlight-light: #f6f6f6;
  --highlight-dark: #f2f2f2;
  --waves-color: #d58170;

  /* fontsizes */
  --h1: 5.5rem;
  --h2: 4rem;
  --h3: 1.75rem;
  --h4: 1.25rem;
}
/* 
icon1:#EB6A4F;
icon2:#3D3E83;
icon3:#3FBE81;https://media.licdn.com/dms/image/C4D0BAQE4VnEuA-t82g/company-logo_200_200/0/1644429446411?e=2147483647&v=beta&t=zcC7HzcexS-Gt_PRpkl-6XZdQig0qxzwyiavd6DmABU
icon4:#7229E4;
icon5:##609EEB;
icon6:#C367B8;https://theme.zdassets.com/theme_assets/613805/20ca47df8103cd19bbad5a9ccc012eb7397d1813.png
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border:1px solid red; */
}
box-shadow html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
}
/* External CSS File (top-area.css) */

#top-area {
    background-color: #ff8800;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.top-area-items {
    display: flex;
    flex-wrap: wrap;
}

/* Contact Info Section */
.top-area-contacts {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.top-gem-contacts-address {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.top-gem-contacts-phone {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.top-gem-contacts-email {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.top-gem-contacts-email a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Social Media Links */
.top-area-socials {
    display: flex;
}

.top-socials-item {
    font-size: 18px;
    color: white;
    margin-left: 10px;
    transition: color 0.3s ease-in-out;
}

.top-socials-item:hover {
    color: #ff8800;
}

/* Responsive styling for small screens */
@media screen and (max-width: 768px) {
    .top-gem-contacts-address,
    .top-area-socials {
        display: none; /* Hide address and social media on small devices */
    }
    
    /* Ensure phone and email are displayed */
    .top-gem-contacts-phone,
    .top-gem-contacts-email {
        display: block;
        text-align: center;
        width: 100%;
    }

    /* Align the container centrally */
    .top-container {
        display: block;
        text-align: center;
    }

    /* Spacing adjustments for phone and email */
    .top-gem-contacts-item {
        margin-bottom: 10px;
    }
}

/* Ensure "Tours" font matches other nav items */
.nav .link {
    font-size: 16px; /* Adjust this to match the size of other nav items */
}





.logo{
  width: 150px; /* Adjust size as needed */
  height: auto;
  margin-top: -1rem;
}

a,
button {
  cursor: pointer;
}
img {
  object-fit: cover;
}

.link{
  
  font-weight: bold;
}

a {
  text-decoration: none;
  transition: color 0.2s ease-out;
}
a:hover {
  color: #c5a13d;
}
h1 {
  font-size: var(--h1);
  font-weight: bolder;
  letter-spacing: -2px;
  margin: 3rem auto;
  line-height: 1.1;
}
h2 {
  font-size: var(--h2);
  font-weight: bolder;
  letter-spacing: -1px;
  margin-bottom: 3rem;
  line-height: 1;
}
h3 {
  font-size: var(--h3);
  margin-bottom: 1rem;
  color: var(--headings);
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
p {
  font-size: 0.9rem;
  color: var(--paragraph);
  line-height: 1.5;
}
.primary-btn {
  background-color: var(--headings);
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  margin-right: 1rem;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.small {
  padding: 0.5rem 1rem !important;
  font-size: 0.75rem;
  margin: 0;
}
.primary-btn:hover {
  background-color: #ebebeb;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
  color: #000;
}


/* Basic Navigation Styling */
header nav {
  width: 100%;
  height: 85px;
  background-color: var(--background);
  padding-top: 1rem;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
}

.container {
  width: min(100%, 65rem);
  margin: auto;
}

.container > .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border-top: 1px solid var(--paragraph); */
}

header nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

header nav ul li {
  margin: 0.50rem;
  position: relative;
}

header nav ul li a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--headings);
}
/* General Dropdown Menu Styles */
.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  width: 200px;
  animation: fadeIn 0.3s ease-in-out;
}

/* Dropdown Menu Items */
.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #ff8800;
  color: #ffffff;
}

/* Show dropdown on hover for desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown > a {
    position: relative;
    padding: 0 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }

  .dropdown > a:hover {
    color: #ff8800;
  }

  .dropdown > a:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff8800;
    transition: width 0.3s ease-in-out;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none; /* Always hidden on mobile */
  }

  .dropdown > a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }

  .dropdown > a:hover {
    color: #ff8800;
  }
}



    /* Styling for .header_2 */
    .header_2 {
        text-align: center;
        padding: 20px;
        animation: slideInUp 2s;
        background-image: url('images/abou\ bg.jpg');
        background-size: cover;
        color: #ff8800;
  ;

    }
    
    .header_2 h1 {
        font-size: 2.4em;
        animation: fadeIn 2s;
    }
    
    .header_2 p {
        font-size: 1.3em;
        text-align: center;
        animation: slideInUp 2s;
        color: white;
    }

    /* Responsive styling for mobile */
    @media (max-width: 768px) {
        .header_2 {
            padding: 15px;
        }
        
        .header_2 h1 {
            font-size: 1.8em;
        }
        
        .header_2 p {
            font-size: 1.1em;
        }
    }
    
    @media (max-width: 480px) {
        .header_2 {
            padding: 10px;
        }
        
        .header_2 h1 {
            font-size: 1.5em;
        }
        
        .header_2 p {
            font-size: 1em;
        }
    }

    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideInUp {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }


#nav-icon {
  display: none;
}
.sidebar {
  display: none;
}

/* Footer Styles */
footer {
  padding: 5rem 0 0 0;
  background-color: var(--background);
}
footer .container > div:first-of-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container .socials,
footer .container .newsletter {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container .socials {
  border-right: 1px solid var(--paragraph);
  padding-right: 2rem;
}
footer .container .newsletter {
  padding-left: 2rem;
  position: relative;
}
footer .container h3 {
  font-size: var(--h3);
  line-height: 1.2;
  padding-bottom: 0;
  max-width: 50%;
}
footer .container .socials div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container .socials div > a {
  background-color: white;
  padding: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container .newsletter input {
  padding: 1rem;
  border-radius: 50px;
  border: none;
}

footer .container .newsletter input::placeholder {
  color: var(--paragraph);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
footer .container .newsletter img {
  height: 2.5rem;
  position: absolute;
  right: 0;
}
hr {
  background-color: var(--paragraph);
  margin-bottom: 2rem;
}

footer .container > div:nth-of-type(2) {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

footer .container > div:nth-of-type(2) a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--paragraph);
  margin-bottom: 0.5rem;
}
footer p {
  color: var(--paragraph);
  font-size: 0.85rem;
  line-height: 1.5;
}
footer h4 {
  font-size: var(--h4);
  margin-bottom: 1rem;
}
footer .container > div:nth-of-type(2) > div {
  display: flex;
  flex-direction: column;
 
  justify-content: space-between;
}
footer .container > div:nth-of-type(2) img {
  align-self: flex-start;
}
footer .container > div:nth-of-type(3),
footer .container > div:nth-of-type(3) > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container > div:nth-of-type(3) > div {
  width: 40%;
}
footer .container > div:nth-of-type(3) > div img {
  width: 6rem;
  max-height: 3rem;
  justify-self: flex-end;
}

.popup {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #4caf50;
  color: white;
  padding: 10px;
  border-radius: 4px;
  display: none;
  animation: fadeOut 4s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* animation for sections animatoin when scrolling into view */
.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.75s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Wishlist/cart button */
.wishlist {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paragraph);
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.wishlist:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5);
  background-color: #ff8800;
  color: #000;
}

.wishlist-container {
  display: none;
  width: 40%;
  min-height: 400px;
  position: fixed;
  bottom: 2rem;
  right: 7rem;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.5);
  background-color: #fff;
  z-index: 1000;
}
.wishlist-content {
  justify-self: flex-start;
  align-self: flex-end;
  width: 100%;
}
.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--paragraph);
  margin-bottom: 0.5rem;
}
.wishlist-content h3 {
  margin: 0;
  font-weight: 400;
}
.wishlist-content hr {
  background-color: var(--paragraph);
  margin-bottom: 1rem;
  opacity: 0.5;
}
.wishlist-content select {
  border: 1px solid #6a96e2;
  padding: 0.5rem;
  color: #6a96e2;
}
.wishlist-content select:checked {
  border-color: #6a96e2;
}
.wishlist-content select > option {
  padding: 0.5rem 1rem;
}
.wishlist-content button {
  border: none;
  background-color: transparent;
  border: 1px solid #e6707c;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #e6707c;
}
.wishlist-content > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.wishlist-content > div > div {
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.show {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.show-btn {
  display: block;
}
.hide-btn {
  display: none;
}
@media screen and (max-width: 1050px) {
  :root {
    /* fontsizes */
    --h1: 4rem;
    --h2: 2.75rem;
    --h3: 1.25rem;
    --h4: 1rem;
  }
  html {
    font-size: 14px;
  }
  .primary-btn {
    padding: 0.75rem 1.5rem;
  }
  .container {
    padding: 0 1rem;
  }
  header {
    width: 100%;
  }
  header nav {
    padding: 1rem 0;
  }
  .container {
    width: 100%;
  }
  .container > .nav {
    padding: 1rem;
  }
  header nav ul {
    display: flex;
    margin-left: 0; /* Adjust margin if needed */
    align-items: center; /* Ensures vertical alignment with other items */
  }
  header nav ul li {
    margin-left: 1rem; /* Adjust spacing between items */
  width: auto; /* Remove fixed width constraint */
  }
  header nav ul li::before {
    height: 15px;
  }

  header nav .cta .cta__btn {
    font-size: 0.75rem;
  }
  header nav .cta img {
    width: 1.25rem;
    margin-left: 0.25rem;
  }

  /* Footer Styles */
  footer {
    padding: 2rem 1rem 0 1rem;
  }
  footer .container .socials div > img {
    padding: 0.25rem;
  }
  footer .container .newsletter input {
    padding: 0.75rem;
  }

  footer .container .newsletter img {
    height: 1.5rem;
  }

  footer .container > div:nth-of-type(2) {
    gap: 1rem;
  }

  .f_logo{  
    width: 80px;
  }

  .popup {
    top: 1rem;
    bottom: auto;
    right: 4rem;
    background-color: #4caf50;
  }

  .wishlist-container {
    display: none;
    width: 50%;
    right: 7rem;
  }
  .show {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .show-btn {
    display: block;
  }
  .hide-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header nav ul {
    display: none;
  }
  header .nav > .first {
    display: none;
  }
  .nav {
    position: relative;
  }
  #nav-icon {
    display: block;
    cursor: pointer;
  }
  .sidebar {
    display: none;
    position: absolute;
    background-color: red;
    width: 100%;
    /* min-height: 20vh; */
    top: 80%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    background-color: #ff8800;
    z-index: 1000;
  }
  .show-sidebar {
    display: flex;
  }
  #sidebar ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: auto;
    width: 100%;
    padding: 2rem 1rem;
  }
  #sidebar ul li {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 100%;
    position: relative;
  }
  #sidebar ul li::before {
    content: none;
  }
  #sidebar nav ul li a {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: var(--headings);
  }
  #sidebar .nav .cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .second {
    margin-right: 1rem;
    min-width: 5rem;
  }

  .f_logo{
    width: 70px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 635px) {
  :root {
    /* fontsizes */
    --h1: 3.25rem;
    --h2: 2.75rem;
    --h3: 1.25rem;
    --h4: 1rem;
  }
  html {
    font-size: 12px;
  }
  .primary-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    margin-left: 12px;
  }
  .container > .nav {
    padding: 0;
    padding-top: 1rem;
  }
  .wishlist-container {
    width: 70%;
  }
  .show {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .show-btn {
    display: block;
  }
  .hide-btn {
    display: none;
  }
  footer .container .socials,
  footer .container .newsletter {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    text-align: center;
  }
  footer .container .newsletter img {
    height: 2.5rem;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .f_logo{
    width: 65px;
  }
 
  }



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


#scroll-top {
  position: fixed;
  bottom: 110px;
  right: 45px;
  cursor: pointer;
  font-size: 35px;
  color: #ff8800;
  transform: rotate(90deg); /* Rotate airplane to point straight up */
  animation: upDown 1.5s ease-in-out infinite; /* Up and down animation */
}
#scroll-top:hover {
  color: #000;
}

/* Up and Down Animation */
@keyframes upDown {
  0%, 100% {
      transform: translateY(0) rotate(-90deg); /* Start position */
  }
  50% {
      transform: translateY(-10px) rotate(-90deg); /* Upward position */
  }
}
@media (max-width: 480px) {
  #scroll-top {
  font-size: 30px;
      bottom: 80px; /* Adjust position further for very small screens */
      right: 30px;
  }
}


            /* General Styling */
           
            .container_Contact {
                max-width: 1200px;
                margin: auto;
                padding: 2rem;
            }
    
            /* Section Styling */
            .section-title {
                text-align: center;
                text-transform: uppercase;
                color: #ff8800;
                font-weight: bold;
                margin-bottom: 1rem;
            }
    
            .section-subtitle {
                text-align: center;
                font-size: 1.5rem;
                color: #333;
                margin-bottom: 2rem;
            }
    
            /* Contact Info Box */
            .contact-info {
                background: #fff;
                padding: 2rem;
                border-radius: 8px;
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
                text-align: center;
            }
    
            .contact-info i {
                font-size: 2rem;
                color: #ff8800;
                margin-bottom: 1.5  rem;
                transition: transform 0.3s;
            }
    
            .contact-info:hover i {
                transform: scale(1.1);
            }
    
            .contact-info h4 {
                color: #ff8800;
                margin-bottom: 0.5rem;
            }
    
            .contact-info p {
                margin: 0.5rem 0;
                color: #555;
            }
    
            /* Contact Form */
            .contact-form {
                background: #fff;
                padding: 2rem;
                border-radius: 8px;
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            }
    
            .form-floating {
                position: relative;
                margin-bottom: 1rem;
            }
    
            .form-control {
                width: 100%;
                padding: 1rem;
                border: 1px solid #ddd;
                border-radius: 5px;
                font-size: 1rem;
                transition: border-color 0.3s;
            }
    
            .form-control:focus {
                border-color: #ff8800;
                outline: none;
            }
    
            .form-floating label {
                position: absolute;
                top: 10px;
                left: 15px;
                font-size: 0.9rem;
                color: #777;
                pointer-events: none;
                transition: all 0.2s ease;
            }
    
            .form-control:focus + label,
            .form-control:not(:placeholder-shown) + label {
                top: -8px;
                left: 10px;
                font-size: 0.8rem;
                color: #ff8800;
                background-color: #fff;
                padding: 0 4px;
            }
    
            /* Submit Button */
            .btn-primary {
                width: 100%;
                padding: 0.8rem;
                font-size: 1.1rem;
                border: none;
                color: #fff;
                background-color: #ff8800;
                border-radius: 5px;
                cursor: pointer;
                transition: background-color 0.3s;
            }
    
            .btn-primary:hover {
                background-color: #ff8800;
            }
    
            /* Map Embed */
            .map-container {
                margin-top: 2rem;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            }
    
            iframe {
                width: 100%;
                height: 450px;
                border: none;
            }
    
            /* Responsive Design */
            @media (max-width: 768px) {
                .contact-info, .contact-form {
                    margin-bottom: 2rem;
                }
            }

            /* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container_Contact, .contact-info, .contact-form, .map-container {
    animation: fadeIn 1s ease-in-out both;
}
        /* Airline Details Section */
.airlines {
  margin-top: 5rem;
  padding: 50px 20px;
  text-align: center;
}

.airlines h2 {
  color: #ff8800;
  margin-bottom: 20px;
}

/* Wrapper around the slider for overflow control */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Slider container */
.slider {
  display: flex;
  animation: slide 30s linear infinite; /* Adjust timing as needed */
}

/* Each image in the slider */
.airline-logo {
  flex: 0 0 auto;
  width: 150px; /* Adjust width for desktop */
  height: auto;
  margin-right: 10px; /* Space between images */
}

/* Make the images responsive */
@media (max-width: 768px) {
  .airline-logo {
    width: 120px; /* Adjust width for smaller screens */
  }
}

/* Infinite scroll animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Ensure images scale correctly */
.slider img {
  max-width: 100%;
  object-fit: contain;
}