 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: #f6f7fb;
      color: #222;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 10%;
      flex-wrap: wrap;
      min-height: 100vh;
      position: relative;
    }

    .hero-text {
      max-width: 500px;
      z-index: 2;
    }

    .hero-text h1 {
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-text h1 span {
      color: #4a6cf7;
    }

    .hero-text p {
      font-size: 16px;
      color: #666;
      margin-bottom: 30px;
    }

    .hero-text .btn {
      background-color: #4a6cf7;
      color: #fff;
      padding: 12px 25px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
      position: relative;
      z-index: 2;
    }
    .hero-text .btn a
    {
        text-decoration: none;
    color: #fff;
    }
    .hero-text .btn:hover {
      background-color: #2f50da;
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      position: relative;
      z-index: 2;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    }
    .svg-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    svg {
      width: 100%;
      height: 100%;
    }

    path {
      fill: none;
      stroke: #000;
      stroke-width: 3;
      stroke-dasharray: 10;
      animation: dashmove 3s linear infinite alternate;
    }

    @keyframes dashmove {
      to {
        stroke-dashoffset: -100;
      }
    }

    .location-icon {
      fill: #000;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column-reverse;
        padding: 40px 5%;
        text-align: center;
      }

      .hero-text h1 {
        font-size: 36px;
      }

      .hero-text .btn {
        width: 100%;
      }
    }
/*this for form*/
.main2{
      margin-bottom:20px;
      font-family: 'Inter', sans-serif;
      background-color: #f8f9ff;
      padding:50px;
      color: #333;
       position: relative;
  z-index: 2;
      
    }
    .main3
    {

      background-color:#fff;
      height:400px;
      border-radius:10px;
    }

    .top-tabs {
      display: flex;
      padding: 20px;
      gap: 10px;

    }

    .top-tab {
      padding: 10px 20px;
      border-radius: 8px;
      background-color: #fff;
      border: none;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      cursor: pointer;
      font-weight: 500;
    }

    .top-tab.active {
      background-color: #4d73ff;
      color: white;
    }

    .sub-tabs {
      display: flex;
      margin: 0 20px;
      gap:10px;
      margin-top: 10px;
    }

    .sub-tab {
      flex: 1;
      padding: 14px;
      text-align: center;
      background: #f0f0f0;
      cursor: pointer;
      font-weight: 500;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .sub-tab.active {
      background: #ff944d;
      color: white;
    }
    .sub-tabs .tab2:hover,
    .sub-tabs .tab3:hover {
      background: #ff944d;
      color: white;
    }

    .form-wrapper {
      background-color: #eaf0ff;
      margin: 20px;
      padding: 20px;
      border-radius: 12px;
    }

    .trip-types {
      display: flex;
      gap: 20px;
      margin-bottom: 15px;
    }

    .trip-types label {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 16px;
    }

    .form-section {
      background: #edf0ff;
      padding: 20px;
      border-radius: 10px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-bottom: 20px;
      position: relative;
    }

    .dropdown-toggle {
      padding: 10px;
      color:#fff;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color:#ff944d;
      cursor: pointer;
    }
    .dropdown-toggle:hover {  
      background:#f96502;
      color:#fff;
    }
    .dropdown-panel {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 300px;
      z-index: 100;
    }
    .counter-row {
      margin-bottom: 10px;
    }
    .counter-row button {
      width: 30px;
      height: 30px;
      font-size: 18px;
      font-weight: bold;
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 6px;
      cursor: pointer;
    }
    .travel-class button {
      padding: 8px;
      border-radius: 6px;
      border: 1px solid #ccc;
      background: #f0f0f0;
      cursor: pointer;
    }
    .travel-class {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 10px;
    }
    .dubai-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .counter {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .promo-btn {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    input[type="text"], input[type="date"], input[type="number"] {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
      width: 100%;
      gap:10px;
    }
    .submit-btn {
      background-color: #4d73ff;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }
    .btn5
    {
      background-color:#ff944d;
      color:#fff;
      border:none;
      padding:10px;
      border-radius:10px ;
      margin-top:10px;
    }
    .btn5:hover
    {
      background-color:#ef5f00;
      color:#fff;
    }
@media (max-width: 768px) {
  .main2 {
    padding: 20px;
  }
  .main3 {
    height: auto;
    padding: 20px;
  }
  .top-tabs {
    flex-direction: row;
    gap: 10px;
  }
  .sub-tabs {
    flex-direction: row;
    margin: 10px 0;
  }
  .form-section {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }
  .dropdown-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
  .travel-class {
    grid-template-columns: 1fr;
  }
  .dubai-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .promo-btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .submit-btn,
  .btn5 {
    width: 100%;
    text-align: center;
  }
  input[type="text"],
  input[type="date"],
  input[type="number"] {
    font-size: 16px;
  }
  .counter-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*end form*/
.info-wrapper {
    font-family: Arial, sans-serif;
    background: #f6f7fb;
    padding: 30px 0;
    position: relative;
  z-index: 1; /* form se neeche */
  }
  .info-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: no-wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
  }
  .info-card {
    background: #f9f9fc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 360px;
    flex-direction: row;
  }
  .info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.info-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
  .info-content h3 {
    margin: 0;
    font-size: 16px;
    color: #222;
  }
  .info-content p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
  }
  @media (max-width: 600px) {
    .info-container {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    .info-card {
      width: 90%;
      max-width: none;
      flex-direction: row;
    }
  }
/*info-end*/
/*arch*/
.main-arch {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 100%;
}
.man-arch1 {
  padding: 50px;
  margin: 0 auto;
}
.arch-container {
  display: flex;
  background-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}
.arch-text {
  flex: 1;
  padding: 40px;
  text-align: left;
}
.arch-text h5 {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 10px;
}
.arch-text h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.arch-text p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 500px;
}
.stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.stat-box {
  background-color: #ecf0f3;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1;
  min-width: 150px;
}
.stat-box h2 {
  color: #3b82f6;
  font-size: 22px;
  font-weight: 700;
}
.stat-box p {
  font-size: 14px;
  color: #374151;
  margin-top: 8px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-row span {
  font-size: 14px;
  color: #111827;
}
.contact-btn {
  background-color: #3b82f6;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #2563eb;
}
.arch-image {
  flex: 1;
  animation: slideFade 1.5s ease forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arch-image img {
  width: 100%;
  height: 80%;
  padding-top: 50px;
  object-fit: cover;
  border-radius: 15px 10px 15px 10px;
}
.stat-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.stat-box {
  background-color: #ecf0f3;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1;
}
.stat-box h2 {
  font-size: 24px;
  color: #3b82f6;
  font-weight: 700;
  margin: 0;
}
.stat-icon {
  font-size: 24px;
  color: #3b82f6;
  margin-left: 10px;
}
/* Animation */
@keyframes slideFade {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .arch-container {
    flex-direction: column;
    padding: 10px;
    align-items: center;
    width: 100%;
  }
  .arch-text {
    text-align: center;
    padding: 10px 15px;
    width: 100%;
  }
  .arch-image {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .arch-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }
  .stats {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .stat-box {
    width: 90%;
    margin: 0 auto;
  }
  .contact-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }
  .contact-btn {
    width: 90%;
    max-width: 300px;
  }
}
/*paporal*/
.travel-section {
  padding: 40px 60px;
  background-color: #f4f6fb;
  position: relative;
}
.travel-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
}
.travel-show-btn {
  position: absolute;
  right: 60px;
  top: 40px;
  background-color: #3b82f6;
  color: white;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.travel-show-btn a
{
    text-decoration:none;
    color:#fff;
}
.travel-show-btn:hover
{
   background-color:#146bf9; 
   color:#fff;
}
.travel-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 20px;
  flex-wrap: wrap;
}
.travel-globe-box {
  width: 45%;
  max-width: 500px;
  position: relative;
}
.travel-globe-img {
  width: 100%;
}
.travel-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 400px;
}
.travel-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0;
}
.travel-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.travel-card img:hover {
  transform: scale(1.05);
}
.travel-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0 4px;
  padding: 0 12px;
}
.travel-discover-btn {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 8px 20px;
  margin: 0 12px 14px;
  width: calc(100% - 24px);
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.travel-discover-btn a
{
    text-decoration:none;
    color:#fff;
}
.travel-discover-btn:hover {
  background-color: #2563eb;
}
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.travel-globe-img {
  width: 100%;
  animation: float 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .travel-section {
    padding: 20px;
  }
  .travel-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .travel-show-btn {
    position: relative;
    right: 0;
    top: 0;
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }
  .travel-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .travel-globe-box {
    width: 100%;
    max-width: 100%;
  }
  .travel-grid {
    grid-template-columns: 1fr;
    min-width: 100%;
  }
  .travel-card img {
    height: 140px;
  }
  .travel-card h4 {
    font-size: 14px;
  }
  .travel-discover-btn {
    font-size: 14px;
    width: 100%;
    margin: 0 auto 14px;
  }
}
/*testimonial*/
.testimonial-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px;
  margin: 60px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 40px; /* Ensure spacing between columns/cards */
}

.testimonial-left {
  max-width: 45%;
}

.testimonial-left p {
  color: #3b82f6;
  font-weight: 500;
  margin: 0 0 10px;
}

.testimonial-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: #111827;
}

.testimonial-card {
  background: #eeeeee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  max-width: 520px;
  flex: 1;
  min-width: 300px;
  transition: all 0.4s ease-in-out;
}

.testimonial-card.fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
  box-shadow: 0 0 0 2px #eeeeee;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  min-height: 100px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}
.testimonial-role {
  font-size: 14px;
  color: #888;
}
.testimonial-nav {
  text-align: right;
  margin-top: -40px;
  margin-bottom: 10px;
}
.testimonial-nav i {
  margin-left: 12px;
  padding-top:50px;
 cursor: pointer;
  font-size: 16px;
  color: #222;
  transition: color 0.3s;
}
.testimonial-nav i:hover {
  color: #3b82f6;
}
.testi {
  font-size: 18px;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    padding: 30px 20px;
    margin: 30px 10px;
    gap: 30px;
  }
  .testimonial-left,
  .testimonial-card {
    max-width: 100%;
  }
  .testimonial-left h2 {
    font-size: 28px;
    text-align: center;
  }
  .testimonial-left p {
    text-align: center;
  }
  .testimonial-nav {
    text-align: center;
    margin-top: 10px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 20px;
  }
}
.subbtn {
    background-color: #3b82f6; /* blue-500 */
    color: white;
    margin-top:10px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subbtn:hover {
    background-color: #2563eb; /* blue-600 */
}
label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
}
.book-btn a {
    text-decoration: none;
    color:#fff;
    font-weight:bold;
}
