@import url(https://db.onlinewebfonts.com/c/924ee4158324c02e3e0d62e54cafd14f?family=Gotham+Book);
:root {
      --primary-color: #faae2b;
      --secondary-color: #5072A7;
      --royal-orange: #f97316;
      --blue-yonder: #5072A7;
      --light-bg: #f9f9f9;
      --text-dark: #1e1e1e;
      --primary-font:"Gotham Book";
      --secondary-font: "Helvetica Neue Regular";
     
    }

    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    html {
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 85%;
  }
}

    body {
      font-family: var(--primary-font);
      background: #fdfdfd;
      color: #333;
      scroll-behavior: smooth;
    }

  

h1, h2, h3, h4 {
  line-height: 1.3;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
@media (max-width: 768px) {
  .hero-text, .job-text, .package-content {
    text-align: center;
  }
}

.topbar {
  background: #5072A7;
  color: white;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  
}


.contact-left, .social-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-left span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-right a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-right a:hover {
  color: #FFD700;
}

.topbar i {
  font-size: 1rem;
}

/* 1024px - Tablets and small desktops */
@media (max-width: 1024px) {
  .topbar {
   
    
    display: flex;
    gap: 0.7rem;
  }

  .contact-left {
    width: 50%;
  }
  
}

/* 912px - Large tablets */
@media (max-width: 912px) {
  .topbar {
    gap: 0.6rem;
  }

  .contact-left, .social-right {
    font-size: 0.95rem;
  }
}

/* 853px - Medium devices */
@media (max-width: 853px) {
  .contact-left, .social-right {
    font-size: 0.9rem;
  }
}

/* 820px - iPad Pro portrait */
@media (max-width: 820px) {
  .topbar {
    gap: 0.5rem;
  }

  .contact-left, .social-right {
    font-size: 0.85rem;
  }
}

/* 768px - Tablets */
@media (max-width: 768px) {
  .topbar {
    display: flex;
    gap: 0.5rem;
  }

  .contact-left, .social-right {
    font-size: 0.8rem;
    
  }
}

/* mobile  */

@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-left, .social-right {
    width: 100%;
    justify-content: space-between;
  }
}




.navbar {
  background:white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* font-family: "Helvetica Neue Regular"; */
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.nav-links.active {
  max-height: 500px;  
  opacity: 1;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: var(--blue-yonder);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  left: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  padding: 0.5rem;
  min-width: 180px;
  border-radius: 8px;
  width: 250px;
    z-index: 10;

  

}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  padding: 0.5rem;
   transition: all 0.3s ease;
  display: block;
}

.dropdown-content a:hover {
  color: var(--blue-yonder);
  transform: translateX(8px);  /* Moves to the right */
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-links a.active-link {
  color: var(--royal-orange);
  border-bottom: 2px solid var(--royal-orange);
}

/* responsive navbar */

/* 1024px */
@media (max-width: 1024px) {
  .nav-links {
    width: 680px;
    top: 85px;
    right: 0;
    font-size: 0.7rem;
  }
}

/* 912px */
@media (max-width: 912px) {
  .nav-links {
    width: 590px;
    top: 80px;
    right: 20px;
    gap: 13px;
  }
}

/* 853px */
@media (max-width: 853px) {
  .nav-links {
    width: 260px;
    top: 75px;
    right: 18px;
  }
}

/* 820px */



/* 768px */
@media (max-width: 768px) and  (max-width: 853px){
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10px;
    background: white;
    border: 1px solid #ddd;
    padding: 0.8rem;
    border-radius: 8px;
    width: 240px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .nav-links.active {
    max-height: 600px;
    opacity: 1;
  }

  .menu-toggle {
    display: block;
    color: var(--text);
    cursor: pointer;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    width: 100%;
    font-weight: 500;
  }

  .dropdown > a::after {
    content: '';
    font-size: 0.7rem;
    transition: transform 0.3s;
  }

  .dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-left: 1rem;
    margin-top: 0.3rem;
    background: #f9f9f9;
    border-left: 2px solid var(--blue-yonder);
    border-radius: 5px;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    padding: 0.4rem 0;
    font-weight: 400;
    color: #333;
  }

  .dropdown-content a:hover {
    color: var(--blue-yonder);
  }
}





    .hero-banner {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('assests/hero-bg.jpeg') center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}


.hero-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  font-family: var(--secondary-font);
  
}

.hero-btn {
  background-color: #5072A7; /* Blue Yonder */
  padding: 0.75rem 2rem;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s ease;
  display: inline-block;
  font-family: var(--secondary-font);
  
}

.hero-btn:hover {
  background-color: #faae2b; /* Royal Orange */
  color: #000;
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-container{

  }
  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}





.visa-section-1 {
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1rem;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.visa-content-1 {
  position: relative;
  max-width: 1000px;
  width: 100%;
  z-index: 1;
  text-align: center;
}

.visa-content-1 h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.visa-content-1 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: white;
}

.form-group label {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: #000;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-radio label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-radio input[type="radio"] {
  accent-color: var(--blue-yonder);
}

.full-width {
  flex: 1 1 100%;
}

.submit-btn {
  background: var(--royal-orange);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--blue-yonder);
}

/* -------------------
  RESPONSIVE QUERIES
------------------- */

@media (max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
    height: 30px;
  }
  
  .visa-content-1 h1 {
    font-size: 2rem;
  }

  .visa-content-1 p {
    font-size: 1rem;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .visa-content-1 h1 {
    font-size: 1.6rem;
  }

  .visa-content-1 p {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.95rem;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

    


    /* landing card */

        .section-wrapper {
      max-width: 1400px;
      margin: auto;
      padding: 3rem 1rem;
      text-align: center;
      ;
    }

    .section-wrapper h2 {
      font-size: 2rem;
      margin-bottom: 3rem;
      line-height: 1.4;
      font-family: var(--secondary-font);
    }

    .step-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;

    }

    .step-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      padding: 2rem 1.5rem;
      width: 400px;
      transition: transform 0.3s ease;
    }

    .step-card:hover {
      /* transform: translateY(-5px); */
      transform: scale(1.07);
      background: var(--blue-yonder);
      color: #ffffff;
    }

    .step-card.highlight {
      background-color: var(--bg-highlight);
      color: white;
    }

    .step-card img {
      width: 80px;
      height: 80px;
      margin-bottom: 1rem;
    }

    .step-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      font-family: var(--secondary-font);
    }

    .step-card p {
      font-size: 0.95rem;
      color: inherit;
    }

    .step-card.highlight p {
      color: #fff;
    }


    /* 1024px */
@media (max-width: 1024px) {

  .section-wrapper h2 {
    font-size: 2rem;
  }
  .section-wrapper {
    align-items: center;
  }
  .step-card {
    width: 330px;
    margin: auto;
  }
  .step-card:nth-child(1){
    height: 295px;
  }
}

/* 912px */
@media (max-width: 912px) {
  .section-wrapper h2 {
    font-size: 1.9rem;
  }
  .step-card {
    width: 380px;
    
  }
}

/* 853px */
@media (max-width: 853px) {
  .section-wrapper h2 {
    font-size: 1.8rem;
  }
  .step-card {
    width: 360px;
  }
}

/* 820px */
@media (max-width: 820px) {
  .section-wrapper h2 {
    font-size: 1.7rem;
  }
  .step-card {
    width: 340px;
    
    

  }
}

/* 768px */
@media (max-width: 768px) {
  .section-wrapper h2 {
    font-size: 1.6rem;
  }
  .step-card {
    width: 320px;
  }
}

/* 600px */
@media (max-width: 600px) {
  .section-wrapper h2 {
    font-size: 1.5rem;
  }
  .section-wrapper {
    align-items: center;
  }
  .step-card {
    width: 300px;
    margin: auto;
  }
}



    /* landing package */
        .package-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem;
      padding: 2rem;
      background: linear-gradient(90deg, #cdddf8, #ffffff);
      
      padding-bottom: 100px;

      

    }

    .package-images {
      position: relative;
      flex: 1;
      min-width: 280px;
      max-width: 400px;
      
    }

    .main-image, .overlay-image {
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .main-image img, .overlay-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .overlay-image {
      position: absolute;
      bottom: -90px;
      left: 140px;
      width: 75%;
      border: 5px solid #fff;
    }

    .package-content {
      flex: 2;
      min-width: 280px;
      max-width: 600px;
      margin-left: 100px;
    }

    .badge {
      background: var(--royal-orange);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 8px 20px 8px 0;
      display: inline-block;
      font-weight: bold;
      margin-bottom: 1rem;
      box-shadow: 2px 4px 0 var(--blue-yonder);
    }

    .package-content h1 {
      color: var(--blue-yonder);
      font-size: 2rem;
      margin: 0.5rem 0;
      font-family: var(--secondary-font);
    }

    .price-info {
      color: #a10000;
      font-weight: bold;
      font-size: 1.2rem;
      margin: 0.5rem 0;
    }

    .note {
      color: #5a7fff;
      margin-bottom: 1rem;
    }

    .highlight-button {
      background: var(--blue-yonder);
      color: #fff;
      padding: 0.6rem 1.2rem;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 1rem;
      font-family: var(--secondary-font);
    }

    .inclusions-title {
      color: var(--royal-orange);
      font-weight: bold;
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    .inclusions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.95rem;
    }

    .inclusions ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .inclusions li {
      margin-bottom: 0.5rem;
      position: relative;
      padding-left: 1.5rem;
      font-family: "Helvetica Neue Regular";
    }

    .inclusions li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: var(--royal-orange);
    }

/* 1024px */
@media (max-width: 1025px) {
  .package-section {
    flex-direction: row;
    padding: 1.5rem;
    height: 600px;
    
  }

  .overlay-image {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 75%;
    margin: 1rem auto 0 auto;

  }
  

  .package-content h1 {
    font-size: 2rem;
  }

  .highlight-button {
    width: 100%;
    text-align: center;
  }

  .inclusions ul {
    text-align: left;
  }
}

/* 912px */
@media (max-width: 912px) {
   .package-section {
    flex-direction: row;
    padding: 1.5rem;
    height:auto;
    
     
    
  }
  .overlay-image {
    width: 75%;
    display: none;
  }

  .package-content h1 {
    font-size: 1.9rem;
  }
}

/* 853px */
@media (max-width: 853px) {
  .overlay-image {
    width: 70%;
    display: none;
  }

  .package-content h1 {
    font-size: 1.8rem;
  }
}

/* 820px */
@media (max-width: 820px) {
  .overlay-image {
    width: 70%;
    display: none;
  }

  .package-content h1 {
    font-size: 1.7rem;
    
  }
}

/* 768px */
@media (max-width: 768px) {
  .package-section {
    flex-direction: column;
    padding: 1rem;
    align-items: center;
  }

  .overlay-image {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 80%;
    margin: 1rem auto 0 auto;
    display: none;
  }

  .package-content h1 {
    font-size: 1.5rem;
  }

  .highlight-button {
    width: 100%;
    text-align: center;
  }

  .inclusions ul {
    text-align: left;
  }
}

    @media (max-width: 768px) {
      .package-section {
        flex-direction: column;
        padding: 1rem;
      }

      .overlay-image {
        position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 80%;
    margin: 1rem auto 0 auto;
      }

      .package-content h1 {
        font-size: 1.5rem;
        
      }

      .highlight-button {
        width: 100%;
        text-align: center;
      }
      .inclusions ul{
        text-align: left;
      }
      
    }

.contact-btn {
  background: linear-gradient(to bottom, #f99157, #e77c3a); 
  color: #fff;
  width: fit-content;  /* Prevents fixed % width issues */
  max-width: 90%;
  margin: 50px auto 0 auto;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 16px;
  border: 3px solid #f99157;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 0 3px rgba(249, 145, 87, 0.3);
  transition: all 0.3s ease;
  font-family: var(--secondary-font);
}

.contact-btn:hover {
  background: #5072A7;
  border-color: #5072A7;
  box-shadow: 0 0 10px rgba(80, 114, 167, 0.5);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .contact-btn {
    width: 60%;
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .contact-btn {
    width: 80%;
    font-size: 13px;
    padding: 8px 16px;
  }
}




/* visa  */



    .package-section-2 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem;
      padding: 2rem 1rem;
      background: linear-gradient(90deg, #cdddf8, #ffffff);
      margin-top: 140px;
      height: 900px;
      padding-bottom: 100px;
    }

    
    .package-section-2 .package-content {
      flex: 1 1 500px;
      margin-right: 100px;
     
    }

    .package-title {
      background: var(--royal-orange);
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 6px 0 var(--blue-yonder);
      display: inline-block;
    }

    .price {
      font-size: 1.2rem;
      margin: 15px 0;
      color: #b60000;
      font-weight: bold;
    }

    .inclusion-title {
      color: #e60000;
      font-size: 1.3rem;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .inclusions {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px 40px;
       text-align: left;
    }

    .inclusions li {
      position: relative;
      padding-left: 30px;
      font-size: 16px;
      line-height: 1.5;
    }

    .inclusions li::before {
      content: '✔️';
      /* position: absolute; */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;

      position: absolute;
      left: 0;
      top: 2px;
      font-size: 14px;
    }
    .inclusions-list li {
      position: relative;
      padding-left: 30px;
      font-size: 16px;
      line-height: 1.5;
      margin-top: 10px;
      list-style: none;
      font-family: "Helvetica Neue Regular";
      text-align: left;
    }

    .inclusions-list li::before {
     content: '>'; 
      font-weight: bold;
    font-size: 24px;    
      position: absolute;
      left: 0;
      top: 0;
      font-size: 16px;
      color: var(--blue-yonder);  /* Red color */
    }

    .package-section-2 .package-images {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .package-section-2 .package-images img {
      width: 100%;
       height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    .package-section-2 .main-image, .overlay-image {
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .package-section-2 .main-image img, .overlay-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .package-section-2 .overlay-image {
      position: absolute;
      bottom: -90px;
      left: 140px;
      width: 75%;
      border: 5px solid #fff;
    }

    @media (max-width: 768px) {
      .package-section-2{
        flex-direction: column;
      }
      .inclusions {
        grid-template-columns: 1fr;
      }
     
      
    }
    @media (max-width: 768px) {
  .package-section-2 {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
  }

  .inclusions {
    grid-template-columns: 1fr;
  }

  .package-content {
    text-align: center;
  }

  .inclusions, .inclusions-list {
    text-align: left;
  }

  .package-section-2 .overlay-image {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 80%;
    margin: 1rem auto 0 auto;
  }
}


    /* jobsection */
.job-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem;
  margin: 2rem;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.job-text {
  flex: 1 1 300px;
  margin-bottom: 1rem;
  position: relative;
}

.job-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: var(--secondary-font);
}

.job-text h2 span {
  color: black;
}

.job-text p {
  font-size: 1.4rem;
  font-weight: 600;
}

.job-button {
  flex: 0 0 auto;
  position: relative;
}

.job-button a {
  background-color: #fff;
  color: var(--royal-orange);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.3s;
  font-family: var(--secondary-font);
}

.job-button a:hover {
  transform: translateY(-3px);
  background-color: var(--primary-color);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .job-text h2 {
    font-size: 1.8rem;
  }

  .job-text p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .job-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    gap: 0; /* Remove extra space between flex items */
  }

  .job-text {
    text-align: center;
    margin-bottom: 0; /* Remove margin */
  }

  .job-button {
    margin-top: 0; /* Remove top margin */
  }
}

@media (max-width: 480px) {
  .job-text {
    margin-bottom: 0;
  }

  .job-button {
    margin-top: 0;
  }
}





    /* formmmmm */

.form-section {
  display: flex;
  min-height: 100vh;
  background: url('assests/hero-bg.jpeg') no-repeat center center/cover;
  position: relative;
}

.left-overlay {
  flex: 1;
  /* background: rgba(255,255,255,0.3);  */
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-row {
  display: flex;
  gap: 20px;
}
.form-select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
}

.form-select:hover {
  background-color: #f5f5f5; 
  color: var(--blue-yonder);  
  border-color: var(--blue-yonder);
}



.submit-btn {
  background-color:var(--blue-yonder);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  font-family: var(--secondary-font);
}

.submit-btn:hover {
  background-color: #597fbb;
}

/* Responsive */
@media (max-width: 768px) {
  .form-section {
    flex-direction: column;
    
  }

  .left-overlay {
    height: 200px;
    width: 100%;
    
  }

  .form-row {
    flex-direction: column;

  }
}


/* visa form */
.visa-application-section {
  display: flex;
  min-height: 100vh;
  background: url('assests/hero-bg.jpeg') no-repeat center center/cover;
}

.section-left {
  flex: 1;
  /* background: rgba(0,0,0,0.2); */
}



.visa-form-section {
  max-width: 900px;
  margin: auto;
  margin-right: 20px;
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: var(--secondary-font);
}

.visa-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.form-field label span {
  color: red;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 15px;
  background: #eee;
  border: none;
  border-bottom: 1px solid #000;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.btn-submit {
  background: var(--blue-yonder);
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: auto; /* Push to bottom */
}
.form-select option {
  background-color: #fff;         /* Background of dropdown options */
  color: #333;                    /* Text color */
}

.form-select option:hover,
.form-select option:checked {
  background-color: transparent !important;
  color: var(--blue-yonder);
}


.btn-submit:hover {
  background:#5b80bd;
}

@media (max-width: 600px) {
  .visa-form-section{
    margin: auto;
  }
  .form-row {
    flex-direction: column;
  }
}
/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .visa-application-section {
    flex-direction: column;
  }

  .section-left {
    height: 250px;
    width: 100%;
  }

  .input-row {
    flex-direction: column;
  }

  .section-right {
    padding: 25px 20px;
  }

  .section-right h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}


/* footer */
footer {
  background: #f1f1f1;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem; /* reduced gap */
  max-width: 1600px;
  margin: auto;
}

.branch {
  flex: 1 1 250px;
}

.branch h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.branch p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.branch a {
  color: var(--royal-orange);
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--blue-yonder);
  text-decoration: none;
}

/* WhatsApp bubble */
.whatsapp-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-contact .tooltip {
  background: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

.whatsapp-contact img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  cursor: pointer;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 0.3rem; /* further reduced */
  }

  .branch {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;

    flex: 1 1 150px;  
  }
}






.package-section, .package-section-2 {
  height: auto;
}


/* home page */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  scroll-snap-align: start;
}

.slide img {
  width: 100%;
  height: 800px;
  display: block;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  max-width: 90%;
  z-index: 2;
}

.slide-content h2 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  margin: 0;
}

.slide-content a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.slide-content a:hover {
  background: #e05500;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.nav-btn.left {
  left: 1rem;
}

.nav-btn.right {
  right: 1rem;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .nav-btn {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }

  .slide-content {
    bottom: 5%;
    left: 3%;
    right: 3%;
    max-width: 94%;
  }
}



/* features-section */

.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
}

.feature-card {
  border: 1px solid #ccc;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #777;
}


/* opportunity */


.opportunity-section {
  padding: 3rem 1rem;
}

.opportunity-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 2rem;
}

.opportunity-image {
  flex: 1 1 400px;
}

.opportunity-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.opportunity-text {
  flex: 1 1 500px;
}

.opportunity-text .location {
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.opportunity-text h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.opportunity-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}

.opportunity-text strong {
  font-weight: bold;
  color: #000;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .opportunity-container {
    flex-direction: column;
    text-align: center;
  }

  .opportunity-text h2 {
    font-size: 1.8rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }

  .whatsapp-contact span {
    display: none; /* Hide label on small screens */
  }
}


/* tour pk */

.tour-packages-section {
  text-align: center;
  padding: 2rem 1rem;
}

.tour-packages-section h4 {
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.tour-packages-section h2 {
  font-size: 2rem;
  margin: 0.5rem 0 2rem;
}

.tour-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  max-width: 900px;
  margin: auto;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tour-search-form select {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  min-width: 200px;
}

.search-button {
  padding: 0.75rem 2rem;
  background: var(--blue-yonder);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #5f87c7;
}

.tour-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.tour-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
   height: 100%;
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  
  
}

.tour-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-title {
  color: var(--royal-orange);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tour-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

.tour-info .icon {
  margin-right: 6px;
}

.tour-price {
  color: darkblue;
  font-weight: bold;
  font-size: 1.3rem;
}

.old-price {
  text-decoration: line-through;
  font-size: 1rem;
  color: #888;
  margin-left: 5px;
}

.tour-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.tour-button {
  background: var(--blue-yonder);
  color: white;
  padding: 0.7rem 1.5rem;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tour-button:hover {
  background:#5b80bd;
}

@media (max-width: 768px) {
  .tour-card-grid {
    padding: 1rem;
    gap: 1.5rem;
  }

  .tour-card img {
    height: 180px;
  }
}


.tour-card img {
  width: 100%;
  height: auto;
  display: block;
}

.badge-featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff5520;
  color: white;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 0 0 5px 5px;
  font-weight: bold;
}

.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
}

.floating-contact span {
  background: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.floating-contact img {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .tour-search-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .tour-search-form select,
  .search-button {
    width: 100%;
  }

  .floating-contact span {
    display: none;
  }
}


/* info */
.agency-info-section {
  padding: 40px 20px;
  background-color: #fefefe;
}

.agency-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

.agency-photo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agency-photo-main img,
.agency-photo-pair img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.agency-photo-main {
  flex: 1;
  width: 60%;
}




.agency-text-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .agency-info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .agency-photo-pair {
    flex-direction: column;
  }

  .agency-photo-pair img {
    width: 100%;
  }

  .agency-text-content h2 {
    font-size: 1.5rem;
  }
}


/* divine */

.divine-experiences {
  background: #ede6ef;
  padding: 3rem 1rem;
}

.experience-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.experience-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.experience-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.experience-image h2 {
  font-size: 1.8rem;
  margin-top: 1rem;
  color: #014f86;
}

.experience-content {
  flex: 2;
  min-width: 280px;
}

.experience-content h2 {
  font-size: 2rem;
  color: #014f86;
  margin-bottom: 1rem;
}

.experience-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.krishna-image {
  margin-top: 1.5rem;
  text-align: center;
  width: 100%;
  height: 300px;
  background: url('assests/kshn.png') no-repeat center center/cover;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 1rem; /* spacing from the bottom */
}

.krishna-image img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
}

.view-packages-btn {
  background:var(--blue-yonder);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  
}

.view-packages-btn:hover {
  background: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .experience-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .experience-content h2 {
    font-size: 1.8rem;
  }
}



/* test */

.testimonials-section {
  background: var(--blue-yonder); /* Bright red background */
  padding: 3rem 1rem;
  text-align: center;
}

.testimonials-header h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: Arial, sans-serif;
}

.testimonials-header p {
  color: #fff;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-header p {
    font-size: 1rem;
  }
}




/* review */

.reviews-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  
  padding: 3rem 1rem;
  gap: 2rem;
}

.review-intro {
  flex: 1;
  min-width: 280px;
}

.review-intro h2 {
  font-size: 2rem;
  font-weight: bold;
}

.review-intro p {
  color: #a17532;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.review-carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 600px;
  min-width: 280px;
}

.review-slide {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-width: 100%;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.review-slide.active {
  transform: translateX(0);
  opacity: 1;
}

.quote-icon {
  font-size: 3rem;
  color: #e53935;
}

.stars {
  color: gold;
  font-size: 1.5rem;
  margin: 1rem 0;
}

.reviewer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .review-intro h2 {
    font-size: 1.6rem;
  }
  .review-intro p {
    font-size: 1rem;
  }
}

/* ----ABOUT------ */

.about-us-banner {
  background: url('assests/beach.jpg') no-repeat center center/cover;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-us-banner h1 {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-us-banner {
    height: 200px;
  }

  .about-us-banner h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-us-banner {
    height: 150px;
  }

  .about-us-banner h1 {
    font-size: 2rem;
  }
}

/* about-container */

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.about-left, .about-right {
  flex: 1 1 45%;
  box-sizing: border-box;
  padding: 20px;
}

.about-left h2 {
  font-size: 2.5rem;
  color: #555;
  line-height: 1.4;
}

.about-right p {
  font-size: 1.1rem;
  color: #111;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-left h2 {
    font-size: 2rem;
  }

  .about-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left, .about-right {
    flex: 1 1 100%;
    padding: 15px;
  }

  .about-left h2 {
    font-size: 1.8rem;
  }
}



/* category */
.category-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background: #f9f9f9;
}

.category-card {
    position: relative;
    width: 400px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.category-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    margin: 0;
}

.category-card:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .category-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .category-card h3 {
        font-size: 1.4rem;
    }
}




/* travel-experts-section */

    .travel-experts-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 20px;
      background-color: #f9f9f9;
      text-align: center;
      min-height: 50vh;
    }

    .travel-experts-section p {
      max-width: 900px;
      font-size: 1.2rem;
      color: #222;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .travel-experts-section p {
        font-size: 1rem;
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .travel-experts-section p {
        font-size: 0.95rem;
      }
    }


    /* stats-section */
        .stats-section {
      background: url('assests/hero-bg.jpeg') no-repeat center center/cover;
      color: #000;
      padding: 100px 20px;
      text-align: center;
      position: relative;
    }

    .stats-section::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.144); /* Soft white overlay */
      z-index: 1;
    }

    .stats-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: auto;
    }

    .stats-content h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 50px;
    }

    .stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .stat {
      flex: 1 1 120px;
      min-width: 120px;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .stat-label {
      font-size: 1.2rem;
      margin-top: 5px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    @media (max-width: 768px) {
      .stats-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
      }

      .stat-number {
        font-size: 2rem;
      }

      .stat-label {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
    }



    /* premium */

    /* visa-banner */
        .visa-banner {
      display: flex;
      flex-wrap: wrap;
      height: 100vh;
      width: 100%;
    }



    .visa-right {
      flex: 1;
      background: url('assests/city.jpg') no-repeat center center/cover;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 300px;
      padding: 20px;
      color: #fff;
      text-align: center;
    }

    .visa-right::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* dark overlay */
      z-index: 1;
    }

    .visa-content {
      position: relative;
      z-index: 2;
    }

    .visa-content h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
     
    }

    .visa-content p {
      font-size: 1.1rem;
      font-weight: 500;
    }



    @media (max-width: 768px) {
      .visa-banner {
        flex-direction: column;
      }

      .visa-left {
        clip-path: none;
        height: 300px;
      }

      .visa-right {
        height: auto;
        padding: 60px 20px;
      }

      .visa-content h1 {
        font-size: 2rem;
      }

      .visa-content p {
        font-size: 1rem;
      }


    }




    /* visa-Opportunities */
    .job-section-visa {
  display: flex;
  flex-wrap: wrap;
 padding: 9rem;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  background: #ffffff;
  
}

.visa-content {
  flex: 1 1 300px;
  max-width: 600px;
}

.visa-content h1 {
  color: #0b237a;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.visa-content h3 {
  color: #807e7e;
  font-weight: normal;
  font-size: 1.4rem;
}

.visa-content p {
  color: #444;
  line-height: 1.6;
  margin-top: 1rem;
}

.visa-image {
  flex: 1 1 300px;
  max-width: 500px;
}

.visa-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}






/* job-visa steps */

        .job-visa-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 30px;
    }

    .job-visa-info {
      flex: 1 1 300px;
    }

    .job-visa-info h1 {
      font-size: 2.5rem;
      color: #000066;
      margin-bottom: 10px;
    }

    .job-visa-info p {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }

    .job-visa-info .highlight {
      font-weight: bold;
      font-size: 2rem;
    }

    .job-visa-info .step-heading {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .job-visa-info .simple-text {
      color: #5a2a1e;
    }

    .job-visa-info .blue-text {
      color: #0046af;
    }

    .job-visa-steps {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .step-card-pr {
      background: white;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }

    .step-header {
      background: #0046af;
      color: white;
      display: flex;
      align-items: center;
      padding-left: 0;
      padding-right: 15px;
      height: 75px;
    }

    .step-icon-container {
      background: #0046af;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
      width: 75px;
      height: 75px;
      margin-right: 15px;
      border: 1px solid white;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    }

    .step-icon-container img {
      width: 34px;
      height: 34px;
    }

    .step-header h3 {
      font-size: 1.2rem;
      color: white;
      margin: 0;
    }

    .step-details p {
      font-size: 1rem;
      color: #333;
      padding: 15px;
    }

    .cta-button {
      margin-top: 40px;
      display: inline-block;
      background-color: #d62828;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .cta-button:hover {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .job-visa-wrapper {
        flex-direction: column;
        gap: 40px;
      }

      .job-visa-info h1 {
        font-size: 2rem;
      }

      .job-visa-info .step-heading {
        font-size: 2rem;
      }

      .step-header h3 {
        font-size: 1rem;
      }

      .step-details p {
        font-size: 0.9rem;
      }

      .step-icon-container {
        width: 60px;
        height: 60px;
      }

      .step-icon-container img {
        width: 24px;
        height: 24px;
      }
    }





/* package */


    .visa-heading-section {
      position: relative;
      padding: 80px 20px 40px;
      overflow: hidden;
      margin: 150px;
      
    }

    .visa-heading-section .background-text {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 10rem;
      font-weight: 900;
      color: rgba(0, 0, 128, 0.03); /* transparent navy */
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .visa-heading-section h2 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #001a8a;
      margin: 0;
      text-align: center;
    }

    .visa-heading-section h3 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #e02020;
      margin: 10px 0 0;
      text-align: center;
    }

    @media (max-width: 768px) {
      .visa-heading-section .background-text {
        font-size: 5rem;
      }

      .visa-heading-section h2 {
        font-size: 2rem;
      }

      .visa-heading-section h3 {
        font-size: 1.8rem;
      }
    }
        .package-cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px;
    }

    .package-card-box {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      max-width: 390px;
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
      margin-bottom: 100px;
    }

    .package-card-box:hover {
      transform: translateY(-5px);
    }

    .package-card-box img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .package-price {
      background-color: #ff0000;
      color: #fff;
      font-weight: bold;
      padding: 10px 15px;
      font-size: 1rem;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .package-image-header {
      position: relative;
    }

    .package-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .package-title-1 {
      background-color:#dee7f5;
      color: var(--blue-yonder);
      font-size: 1.4rem;
      font-weight: 700;
      padding: 8px 16px;
      display: inline-block;
      border-radius: 5px;
      margin-bottom: 15px;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 6px 0 var(--blue-yonder);
    }

    .package-info ul {
      padding: 0;
      margin: 0 0 20px 0;
      list-style: none;
    }

    .package-info ul li {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #111;
      position: relative;
      padding-left: 20px;
    }

    .package-info ul li::before {
      content: "»";
      color: #000080;
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .package-btn {
      align-self: flex-start;
      background-color:var(--blue-yonder);
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 5px;
      font-size: 0.95rem;
      cursor: pointer;
      transition: background 0.3s ease;
      text-decoration: none;
    }

    .package-btn:hover {
      background-color:  #fc8d3e;
    }

    @media (max-width: 768px) {
      .package-card-box img {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .package-title-1 {
        font-size: 1.2rem;
      }

      .package-price {
        font-size: 0.9rem;
        padding: 8px 12px;
      }

      .package-info ul li {
        font-size: 0.95rem;
      }
    }


    /* form-visa-premium */
           .visa-help-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      align-items: flex-start;
      width: 1500px;
      margin-bottom: 100px;
      margin-top: 100px;
      background: #e8e8e846;
    }

    .visa-header {
      flex: 1 1 400px;
      text-align: center;
     
      margin-top: 200px;
      
    }

    .visa-help-container img {
      width: 100%;
      max-width: 500px;
    }

    .visa-header h2 {
      font-size: 2.7rem;
      margin: 20px 0 10px;
      color: #555;
    }

    .visa-header h3 {
      color: #2d2d9f;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .visa-header p {
      font-size: 1rem;
      color: #222;
      margin-bottom: 20px;
    }

    .visa-header .trust-info {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 15px;
      flex-wrap: wrap;
    }

    .trust-info div {
      text-align: center;
    }

    .trust-info img {
      width: 40px;
      margin-bottom: 5px;
    }

    .trust-info p {
      font-weight: bold;
      color: #2d2d9f;
    }

    .visa-details {
      flex: 1 1 350px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 0;
      overflow: hidden;
      max-width: 400px;
    }

    .visa-details h4 {
      background: var(--royal-orange);
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 1.2rem;
      font-weight: bold;
    }

    .visa-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding: 25px 20px;
    }

    .visa-form div {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .visa-form label {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .visa-form input,
    .visa-form select {
      padding: 12px;
      width: 100%;
      border-radius: 12px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }

    .error-message {
      color: red;
      font-size: 0.85rem;
      margin-top: 5px;
    }

    .submit-btn {
      background-color:var(--blue-yonder);
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .submit-btn:hover {
      background-color: #0033cc;
    }



    @media (max-width: 768px) {
      .visa-help-container {
        flex-direction: column;
        align-items: center;
      }
    }




    .activities-section {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 50px 10%;
      margin-bottom:100px ;
      margin-top: 100px;
      background: #dddcdc76;
      border-radius: 12px;

    }

    .activities-text {
      flex: 1 1 45%;
    }

    .activities-text h2 {
      font-size: 2.5rem;
      color: #2e3192;
      margin-bottom: 10px;
      font-weight: bold;
      font-style: italic;
    }

    .activities-text h3 {
      font-size: 1.5rem;
      color: #e30613;
      margin-bottom: 30px;
    }

    .activities-text ul {
      list-style: none;
    }

    .activities-text li {
      font-size: 1.2rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }

    .activities-text li::before {
      content: '✔';
      color: #2e3192;
      font-size: 1.5rem;
      margin-right: 15px;
    }

    .activities-images {
      flex: 1 1 40%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }

    .activities-images img {
      max-width: 190px;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transform: rotate(-2deg);
    }

    .activities-images img:nth-child(2) {
      transform: rotate(2deg);
    }

    .activities-images img:nth-child(3) {
      transform: rotate(5deg);
    }

    @media (max-width: 768px) {
      .activities-section {
        flex-direction: column;
        text-align: center;
      }
      .activities-images {
        justify-content: center;
      }
      .activities-images img {
        max-width: 100px;
      }
    }









    .news-section-title {
      text-align: center;
      font-size: 2.5rem;
      margin: 40px 0 20px;
      color:var(--blue-yonder);
    }

    .news-section-title span {
      color: var(--royal-orange);
    }

    .news-container {
      display: flex;
      flex-wrap: wrap;
      gap: 60px;
      justify-content: center;
      padding: 20px 10%;
    }

    .news-card {
      background: white;
      width: 330px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
    }
    .news-card:nth-child(1){
      height: 300px;
    }

    .news-card:hover {
      transform: translateY(-5px);
    }
    .news-image{
      

    }
    .news-image img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      padding: 20px;

    }

    .news-content {
      padding: 20px;
    }

    .news-content h3 {
      font-size: 1.2rem;
      color: #000066;
      margin-bottom: 10px;
    }

    .news-content p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 15px;
    }

    .news-content a {
      color: red;
      text-decoration: none;
      font-weight: bold;
    }

    @media screen and (max-width: 768px) {
      .news-container {
        padding: 10px 5%;
      }

      .news-card {
        width: 100%;
        max-width: 90%;
      }
    }



    /* guruvayurrrr */

    .guruvayur-wrapper {
  position: relative;
  height: 100vh;
  background: url('assests/kshn.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.krishna-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pilgrim-text {
  text-align: center;
  color: white;
}

.pilgrim-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pilgrim-text p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .pilgrim-text h1 {
    font-size: 2rem;
  }
  .pilgrim-text p {
    font-size: 1rem;
  }
  .whatsapp-contact img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .pilgrim-text h1 {
    font-size: 1.5rem;
  }
  .pilgrim-text p {
    font-size: 0.9rem;
  }
  .whatsapp-contact img {
    width: 35px;
    height: 35px;
  }
}

/* darsn */

.tour-section {
  padding: 40px;
}

.tour-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tour-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  min-width: 300px;
}

.image-row {
  display: flex;
  gap: 15px;
}

.tour-img {
  width: 50%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.tour-content {
  flex: 1;
  min-width: 300px;
  margin-left: 50px;
  margin-top: 100px;
}

.tour-title {
  color:var(--royal-orange);
  font-size: 2rem;
  margin-bottom: 10px;
}

.tour-price {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}

.tour-highlights {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 10px;
}

.tour-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: 40px;
  list-style: circle;
}

.tour-button-container {
  text-align: center;
}

.tour-contact-button {
  background-color: var(--blue-yonder);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.tour-contact-button:hover {
  background-color:var(--royal-orange);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .tour-layout {
    flex-direction: column;
  }
  .image-row {
    flex-direction: column;
  }
  .tour-img {
    width: 100%;
  }
}



    .package-inclusions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 2.3rem;
      margin-top: 100px;
      margin-bottom: 100px;
      
    }

    .inclusion-details {
      flex: 1 1 400px;
      max-width: 700px;
      
    }

    .inclusion-details h2 {
      color: var(--royal-orange);
      margin-bottom: 1.2rem;
      font-size: 2.9rem;
      
    }

    .inclusion-details ul {
      list-style: none;
    }

    .inclusion-details li {
      margin-bottom: 1rem;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
    }

    .inclusion-details li::before {
      content: "★";
      font-size: 1.2rem;
      margin-right: 0.75rem;
      color: var(--royal-orange);
      font-weight: 600;
      opacity: 0.8;
    }

    .inclusion-photo {
      flex: 1 1 300px;
      max-width: 600px;
    }

    .inclusion-photo img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
      .package-inclusions {
        flex-direction: column;
        text-align: center;
      }

      .inclusion-details li {
        justify-content: center;
      }
    }




        .guruvayur-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem;
      margin-bottom: 100px;
      width: 1400px;
      margin: auto;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      flex: 1 1 500px;
    }

    .gallery img {
      width: 90%;
      height: 200px;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .guruvayur-content {
      flex: 1 1 400px;
      max-width: 600px;
    }

    .guruvayur-content h3 {
      font-size: 1.4rem;
      color: #e53935;
      margin-bottom: 0.5rem;
    }

    .guruvayur-content h1 {
      font-size: 2.5rem;
      color: #e53935;
      font-weight: 700;
      margin-bottom: 1.2rem;
    }

    .guruvayur-content h2 {
      font-size: 1.6rem;
      text-align: center;
      color: var(--blue-yonder);
      margin-bottom: 1rem;
    }

    .guruvayur-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333;
    }

    @media (max-width: 1024px) {
      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .guruvayur-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .gallery {
        grid-template-columns: 1fr;
      }

      .guruvayur-content h1 {
        font-size: 2rem;
      }

      .guruvayur-content h2 {
        font-size: 1.2rem;
      }
    }

/* contact */
        .contact-container {
      text-align: center;
      padding: 2rem;
      max-width: 800px;
      width: 100%;
      margin: auto;
      line-height: 50px;
      
    }

    .contact-heading {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      color: #111;
      font-weight: 500;
    }

    .contact-logo {
      width: 280px;
      height: auto;
      margin: 0.5rem 0 1rem;
      margin: auto;
    }

    .contact-location {
      font-size: 1.5rem;
      margin: 0.3rem 0;
    }

    .contact-phone {
      font-size: 1.5rem;
      margin: 0.3rem 0;
    }

    .contact-phone a {
      color: #219ebc;
      text-decoration: none;
      margin: 0 0.2rem;
      font-weight: 500;
    }

    .contact-phone a:hover {
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      .contact-container {
        padding: 1rem;
      }

      .contact-logo {
        width: 120px;
      }

      .contact-phone,
      .contact-location {
        font-size: 0.95rem;
      }
    }

    /* blog */

          .blog-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      width: 1400px;
      margin: auto;
    }

    .blog-main {
      flex: 1 1 65%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .blog-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      width: 400px;
      margin-top: 30px;
      margin-bottom: 30px;
      margin-left: 20px;
    }

    .blog-card:hover {
      transform: scale(1.02);
    }

    .blog-card img {
      width: 100%;
      height: 300px;
      display: block;
    }

    .blog-content {
      padding: 30px;

    }

    .blog-content h2 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    .blog-content p{
      line-height: 25px;
      margin-bottom: 10px;
    }
    .blog-content a{
      text-decoration: none;
      color: var(--royal-orange);
      font-weight: 800;
    }
    .blog-sidebar {
      flex: 1 1 30%;
     
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 30px;
    }

    .sidebar-box {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .sidebar-box h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      border-bottom: 3px solid #1dbf73;
      display: inline-block;
      padding-bottom: 5px;
    }

    .search-form input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 10px;
    }

    .search-form button {
      background: #190082;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
    }

    .latest-posts .post-link {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .latest-posts img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 5px;
    }

    /* Floating WhatsApp Button */
    .floating-whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 100;
    }

    .floating-whatsapp img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
      .blog-wrapper {
        flex-direction: column;
      }

      .blog-main, .blog-sidebar {
        flex: 1 1 100%;
      }
    }



    /* our package */

        .travel-grid-layout {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-bottom: 50px;
    }

    .travel-card-unit {
      width: 100%;
      max-width: 505px;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      height: 800px;
    }

    .travel-card-unit img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .travel-info-box {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .travel-info-box h2 {
      font-size: 24px;
      font-weight: 700;
      color: #000;
      margin-bottom: 5px;
    }

    .travel-info-box p {
      font-size: 16px;
      color: #666;
      margin-bottom: 15px;
    }

    .feature-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
      margin-bottom: 20px;
    }

    .feature-bullet {
      display: flex;
      align-items: center;
      font-size: 16px;
      color: #111;
    }

    .feature-bullet::before {
      content: '✔️';
      margin-right: 8px;
      color: red;
      font-size: 16px;
    }

    .cta-button-view {
      display: inline-block;
      background: #000;
      color: #fff;
      padding: 12px 24px;
      text-align: center;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s ease;
      margin-top: auto;
    }

    .cta-button-view:hover {
      background: #333;
    }

    @media (max-width: 768px) {
      .travel-card-unit {
        max-width: 100%;
      }
    }
    
    
    
    
    
        /* contact us */

    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      background: #fafafa;
  }
  
  .contact-details, .contact-form-container {
      flex: 1 1 400px;
      margin: 10px;

  }

  .contact-heading {
      font-size: 3.9rem;font-weight: 1000;text-align: center;
  }

  .contact-subheading {
      color: #888;
      margin: 10px 0 100px;
      font-size: 1.2rem;
      text-align: center;
  }

  .contact-info-group .contact-info-item {
      text-align: center;
      margin-bottom: 60px;


      
  }

  .contact-icon {
      width: 40px;
      height: 40px;
      display: block;
      margin: 0 auto 20px;

      
  }

  .contact-info-item h3 {
      margin: 5px 0;
  }

  .contact-info-item p {
      color: #555;
      line-height: 25px;
  }

  .contact-form {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .contact-form label {
      display: block;
      margin: 10px 0 5px;
      
      
      
  }

  .contact-form input,
  .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid black;
      border-radius: 4px;
      font-size: 1rem;
  }

  .contact-form input:invalid,
  .contact-form textarea:invalid {
      border-color: rgb(0, 0, 0);
  }

  .contact-form input:valid,
  .contact-form textarea:valid {
      border-color: rgb(7, 7, 7);
  }

  .contact-form textarea {
      resize: vertical;
      height: 100px;
  }

  .contact-form button {
      background: #000;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      
  }

  .contact-form button:hover {
      background: #333;
  }

  .form-feedback {
      margin-top: 10px;
      color: red;
      font-weight: bold;
  }

  @media (max-width: 768px) {
      .contact-wrapper {
          flex-direction: column;
      }

      .contact-details, .contact-form-container {
          margin: 0 0 20px;
      }
  }





  .branches-section {
    text-align: center;
    padding: 40px 20px;
}

.branches-section h2 {
    font-size: 2.7rem;
    margin-bottom: 40px;
    
}

.branches-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.branch {
    text-align: left;
    max-width: 350px;
    
}


.branch-address svg,
.branch-contact svg {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.branch-address h3 {
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0 5px 0;
}

.branch-address p {
    color: #555;
    margin: 10px 0;
}

.branch-contact p {
    margin: 8px 0;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .branches-container {
        flex-direction: column;
        align-items: center;
    }

    .branch {
        width: 90%;
    }
}


.aboutus-banner {
  background: url('assests/contact.png') no-repeat center center/cover;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.aboutus-title {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

    
    
    
    
    
    
    
    