/* General Styles */
:root {
    --charcoal: #252e2c;
    --vblue: #1da1f2;
    --navbar: #252e2c;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat",  "DM Sans", Arial, sans-serif;
}

body {
    padding-top: 55px;
    background-color: white;
}

/* Navigation Bar */
.navbar {
    display: flex;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    background-color: var(--charcoal);
    color: white;
    height: 100px;
    z-index: 99;
}
.nav-options {
    background-color: var(--navbar);
    border-radius: 12px;
    padding-right: 12px;
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.nav-options ul li:hover {
    padding-bottom: 3px;
}
.logo img {
    width: 50px;
    height: 50px;
    border-radius:50%;
    margin-left: 30px; ;
}

.hide {
    display: none;
}

.nav-menu {
    margin-right: 30px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li {
    margin-left: 15px;
    padding: 6px;
}
.nav-menu ul li:hover {
    padding-bottom: 1.5px;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
}

/* Section 1: Summary */
.summary-section {
    text-align: center;
    width: 60%;
    padding: 20px;
}

.city-images {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.city-images img {
    width: 80px;
    margin: 0 10px;
}

/* Section 2: Services */
.services-section {
    padding: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
  min-width: 300px;
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5px auto;
  left: 0;
}

.service-card img {
  min-width: 50px;
  min-height: 50px;
  object-fit: cover;
}

/* Section 3: Visa Destinations */
.visa-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visa-card-wrapper {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visa-card {
    width: 100%;
    max-width: 600px;
    background-color: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    display: none; /* Initially hidden */
    flex-direction: column;
}

.visa-card img {
    width: 100%;
    min-width: 340px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px
}

.visa-card h3 {
    margin: 10px 0;
    font-size: 1.5em;
}

.visa-enquire-btn {
    padding: 10px 20px;
    background-color: var(--vblue);
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 5px;
    width: 250px;
    transition: background-color 0.3s ease;
}

.visa-enquire-btn:hover {
    background-color: var(--charcoal);
}

.visa-enquire-btn span {
    text-align: center;
}

.visa-scroll-btn {
    background: transparent;
    border: none;
    font-size: 2em;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.visa-scroll-btn img {
    width: 40px;
    height: 40px;
}

.left {
    left: 200px;
}

.right {
    right: 200px;
}

/* Initially show the first card */
.visa-card.active {
    display: flex;
    border: none;

}


/* Section 4: Testimonials */

.customer-card {
  background-color: rgba(243, 244, 246, 1);
  padding: 2rem;
  min-width: 250px;
  max-width: 340px;
  border-radius: 10px;
  box-shadow: 0 20px 30px -20px rgba(5, 5, 5, 0.24);
  display:flex;
  margin: 5px auto;
  flex-direction: column;
}

.customer-card .header {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  gap: 1rem;
}

.customer-card .header .image {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  background-color: var(--vblue);
}

.customer-card .stars {
  display: flex;
  justify-content: center;
  grid-gap: 0.125rem;
  gap: 0.125rem;
  color: rgba(34, 197, 94, 1);
}

.customer-card .stars svg {
  height: 1rem;
  width: 1rem;
}

.customer-card .name {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
}

.customer-card .message {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1rem;
  color: rgba(107, 114, 128, 1);
}

/* Section 5: FAQs */
.faq-section {
    padding: 20px;
}

.faq-item {
    margin-bottom: 20px;
}
/* Section6 */

.slider-container {
    margin-top: 55px;
    position: relative;
    width: 100vw;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    display: flex;
    scroll-behavior: smooth;
    height: 600px; /* Full viewport height */
}

/* Hide scrollbar but allow scrolling */
.slider-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Webkit browsers */
}

.slider-container {
    -ms-overflow-style: none;  /* Hide scrollbar in Internet Explorer and Edge */
    scrollbar-width: none;     /* Hide scrollbar in Firefox */
}

.cards-wrapper {
    display: flex;
    max-width: 100%; /* Will expand dynamically based on card count */
}

.card {
    min-width: 100vw; /* Each card takes 100% width */
    padding: 10px;
    text-align: center;
    background-color: white;
    left: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    height: 400px;
}

.card img {
    margin-top: 55px;
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Corrected dots position */
.dots-wrapper {
    margin: 10px auto;
    text-align: center;
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s, border-radius 0.3s;
}

.dot.active {
    background-color: var(--vblue);
    width: 35px; /* Active dot becomes a pill */
    border-radius: 17px;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: white;
    width: 100vw;
    left:0;
    bottom: 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
}

.footer-column {
    margin-bottom: 15px;
}

.footer-column h3 {
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-media a {
    margin: 0 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--vblue);
    padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }
    .left {
        left: 5px;
    }
    
    .right {
        right: 5px;
    }
}


/*center divs*/

.flex-center {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

/* blue buttons */

.blue-button {
    background-color: var(--vblue);
    color: aliceblue;
    border-radius: 8px;
    height: 50px;
    width: 100px;
    border: none;
    padding: 10px;
}

/* Menu Navigation */

.menu-btn {
    display: none;
}

nav-list {
  transform: translateY(-100%);
}

@media (max-width: 600px) {
    .menu-btn {
        display: flex;
        margin-right: 30px;
        padding: 10px;
        border: none;
        background-color: var(--navbar);
        border-radius: 12px ;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5)
    }

    .nav-options, .nav-menu {
        display: none;
        overflow-x:hidden;
    }

    /* nav bar height changes   */

.navbar {
    height: 65px;
}

.navbar img {
    margin-top: 3px;
}

.slider-container {
    margin-top: 30px;
}
/* new menu code */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80vh;
  background-color: var(--navbar);
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  z-index: 80;
}

.overlay.show {
  transform: translateY(0);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.nav-list li {
  margin: 20px 0;
}

.nav-list li a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #f39c12;
}

    }

html , body {
    overflow-x: hidden;
}

/* Form */

/* form h1, form p {
    margin: 1em auto;
    text-align: center;
  }
  
  form {
    width: 60vw;
    max-width: 500px;
    min-width: 300px;
    margin: 0 auto;
    padding-bottom: 2em;
    border-radius: 17px ;
  }
  
  fieldset {
    border: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--charcoal);
  }
  
  fieldset:last-of-type {
    border-bottom: none;
  }
  
  label {
    display: block;
    margin: 0.5rem 0;
  }
  
  form input,
  form textarea,
  form select {
    margin: 10px 0 0 0;
    width: 100%;
    min-height: 2em;
    border-radius: 8px;
  }
  
  form input, form textarea {
    background-color: white;
    border: 0.5px solid var(--charcoa);
    color: #ffffff;
  }
  
  .inline {
    width: unset;
    margin: 0 0.5em 0 0;
    vertical-align: middle;
  }
  
  form input[type="submit"] {
    display: block;
    width: 100px;
    margin: 1em auto;
    height: 50px;
    font-size: 1.1rem;
    background-color: var(--vblue);
    min-width: 100px;
    border-radius: 12px;
  }
  
  form input[type="file"] {
    padding: 5px 5px;
    background-color: var(--vblue);
    color: #bbb;
  }
  
  .inline{
    display: inline; 
  }   
  */

  .form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 350px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    margin: 30px auto;
  }
  
  .title {
    font-size: 28px;
    color: var(--vblue);
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .title::before,.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: var(--vblue);
  }
  
  .title::before {
    width: 18px;
    height: 18px;
    background-color:var(--vblue);
  }
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .message, .submit {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
  }
  
  .submit {
    text-align: center;
  }
  
  .submit a {
    color: var(--vblue);
  }
  
  .submit a:hover {
    text-decoration: underline var(--vblue);
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  
  .form label .input + span  {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .submit {
    border: none;
    outline: none;
    background-color: var(--vblue);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
  }
  
  .submit:hover {
    background-color: rgb(56, 90, 194);
  }

  .hundred {
    width: 100%;
  }
  .block {
    display:block;
  }

  .expand {
    display:flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-width: 340px;
  }

  .flex {
    min-width:340px;
  }

  .inline {
    width: unset;
    margin: 0 0.5em 0 0;
    vertical-align: middle;
  }
  fieldset {
    border:none;
  }
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }