body {
    /* background: linear-gradient(135deg, #e0f7fa, #ffffff); */
    font-family: 'Poppins', sans-serif;
    color: #222;
    overflow-x: hidden;
  }

  .get-in-touch {
    padding: 120px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }

  .touch-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }

  .touch-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s infinite alternate;
  }

  @keyframes glow {
    from { text-shadow: 0 0 10px #9be2ff; }
    to { text-shadow: 0 0 20px #67d4ff; }
  }

  .touch-desc {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.8;
    line-height: 1.7;
    color: #444;
  }

  .touch-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }

  .info-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px 35px;
    border-radius: 20px;
    transition: 0.4s ease;
    min-width: 240px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .info-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.3);
  }

  .info-box i {
    font-size: 40px;
    color: #00bcd4;
    margin-bottom: 10px;
  }

  .info-box h4 {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
  }

  .info-box p {
    font-size: 15px;
    color: #555;
  }

  /* 🌈 Floating Animation Icons */
  .floating-icons i {
    position: absolute;
    opacity: 0.15;
    font-size: 60px;
    color: #00acc1;
    animation: float 8s infinite ease-in-out;
  }

  .floating-icons .plane { top: 20%; left: 5%; animation-delay: 0s; }
  .floating-icons .globe { bottom: 25%; right: 10%; animation-delay: 3s; }
  .floating-icons .map { top: 10%; right: 20%; animation-delay: 1.5s; }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
  }

  @media (max-width: 768px) {
    .info-box { min-width: 200px; }
    .touch-title { font-size: 32px; }
  }










  /* city tour  */


   .tour-packages {
  background: linear-gradient(135deg, #f9fbff, #ffffff);
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-header h5 {
  color: red;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(90deg, black, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: #555;
  max-width: 700px;
  margin: 10px auto 40px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-thumb {
  position: relative;
  overflow: hidden;
}

.package-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.package-card:hover .package-thumb img {
  transform: scale(1.1);
}

.price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #00a8cc;
  color: #fff;
  padding: 6px 15px;
  font-size: 14px;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0,168,204,0.5);
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.package-content p {
  color: #777;
  font-size: 15px;
  margin-bottom: 10px;
}

.rating {
  color: #ffae00;
  font-weight: 500;
  margin-bottom: 15px;
}

.btn-explore {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #00a8cc, #00e5ff);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-explore:hover {
  background: linear-gradient(90deg, #007acc, #00a8cc);
  box-shadow: 0 0 20px rgba(0,168,204,0.4);
}

.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  background: #f1f9ff;
  color: #00a8cc;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.pagination a.active,
.pagination a:hover {
  background: #00a8cc;
  color: #fff;
}








/* packages tour */





.tour-packages {
  background: linear-gradient(180deg, #f9fdff 0%, #ffffff 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

/* Floating shapes */
.tour-packages::before,
.tour-packages::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,174,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 9s ease-in-out infinite alternate;
}
.tour-packages::before { top: 15%; left: 5%; }
.tour-packages::after { bottom: 10%; right: 10%; animation-delay: 2s; }

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(25px); }
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.section-header h5 {
  color: #00b4d8;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-header h2 {
  color: #023e8a;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00b4d8;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* Packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  z-index: 2;
  position: relative;
}

/* Card */
.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  position: relative;
}
.package-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,174,255,0.25);
}
.package-thumb {
  position: relative;
  overflow: hidden;
}
.package-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover img {
  transform: scale(1.15);
}
.package-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.package-card:hover .package-thumb::after {
  opacity: 1;
}

/* Price */
.price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Card content */
.package-content {
  padding: 25px;
  text-align: center;
}
.package-content h3 {
  color: #023e8a;
  font-weight: 700;
  margin-bottom: 8px;
}
.package-content p {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}
.rating {
  color: #ffb703;
  margin-bottom: 15px;
}
.btn-explore {
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-explore:hover {
  background: linear-gradient(90deg, #0096c7, #00b4d8);
  box-shadow: 0 5px 15px rgba(0,174,255,0.3);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
.pagination a {
  color: #0077b6;
  padding: 8px 14px;
  border: 1px solid #0077b6;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination a.active,
.pagination a:hover {
  background: #0077b6;
  color: #fff;
}











 .city-tours {
  background: #faf6f0;
  padding: 70px 0;
}

.section-header h2 {
  color: #c19b3b;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h5 {
  color: #666;
  font-weight: 600;
  letter-spacing: 1px;
}

.safari-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.safari-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.safari-thumb {
  position: relative;
}

.safari-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.safari-card:hover .safari-thumb img {
  transform: scale(1.05);
}

.price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, #c19b3b, #ffcc33);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.safari-content {
  padding: 20px;
  text-align: center;
}

.safari-content h3 {
  color: #c19b3b;
  font-weight: 800;
  margin-bottom: 10px;
}

.safari-content p {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-explore {
  display: inline-block;
  background: #c19b3b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-explore:hover {
  background: #a57f27;
}



    /* city tour  */





/* 
    about */

.desert-section{
    background:#c99372;   /* Same brown background */
    padding:90px 0;
}

.section-top-text{
    text-align:center;
    color:#ffffff;
    font-size:20px;
    margin-bottom:60px;
    max-width:850px;
    margin-left:auto;
    margin-right:auto;
}

.desert-grid{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:40px;
}

.desert-image{
    grid-row: span 2;
}

.desert-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
}

.desert-card{
    background:#f3e3cd;  /* Same cream card color */
    padding:45px;
    border-radius:25px;
}

.desert-card .icon{
    font-size:42px;
    color:#d66d1f;   /* Same orange icon color */
    margin-bottom:20px;
}

.desert-card h3{
    font-size:30px;
    margin-bottom:15px;
    color:#000;
}

.desert-card p{
    font-size:18px;
    color:#555;
    line-height:1.7;
}


/* 
    about */




.steps-section{
    background:#f2f2f2;  /* light grey background */
    padding:100px 0;
}

.section-subtitle{
    color:#d67a2e;  /* orange small text */
    letter-spacing:4px;
    font-weight:600;
    display:block;
    margin-bottom:20px;
}

.section-title{
    font-size:64px;
    font-weight:700;
    color:#000;
    margin-bottom:70px;
}

.steps-grid{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:40px;
    align-items:stretch;
}

.steps-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
}

.step-card{
    background:#f3e3cd;   /* cream card color */
    padding:50px 40px;
    border-radius:25px;
    position:relative;
}

.step-number{
    position:absolute;
    top:30px;
    right:40px;
    font-size:60px;
    font-weight:700;
    color:#e6c5a6;  /* light faded number */
}

.step-card h3{
    font-size:28px;
    color:#c96416;  /* orange heading */
    margin-bottom:20px;
}

.step-card p{
    font-size:18px;
    color:#555;
    line-height:1.7;
}





/* index */


.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

/* Heights */
.large-card {
  height: 600px;
}

.small-card {
  height: 280px;
}

.bottom-card {
  height: 300px;
}

/* Overlay */
.destination-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.destination-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.destination-content span {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dark Gradient */
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}












/* index */



/* Section Background */
.desert-adventure {
  background: #c8926f;
  padding: 100px 0;
  color: #fff;
}

.adventure-header h2 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.adventure-header p {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.6;
}

/* Card */
.adventure-card {
  background: #e9dcc7;
  border-radius: 25px;
  padding: 25px;
  display: flex;
  gap: 30px;
  align-items: center;
  height: 100%;
}

/* Image */
.adventure-image img {
  width: 260px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

/* Content */
.adventure-details {
  flex: 1;
  color: #000;
}

.adventure-details h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

/* Features */
.adventure-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-bottom: 20px;
  font-size: 18px;
}

/* Description */
.adventure-details p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
}

/* Price & Button */
.adventure-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adventure-price h4 {
  font-size: 32px;
  color: #d86f1f;
}

.adventure-price h4 span {
  font-size: 16px;
  color: #555;
}

.adventure-btn {
  background: #d86f1f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.adventure-btn:hover {
  background: #b85d18;
}

/* Responsive */
@media (max-width: 991px) {
  .adventure-card {
    flex-direction: column;
    text-align: center;
  }

  .adventure-image img {
    width: 100%;
    height: 300px;
  }

  .adventure-features {
    grid-template-columns: 1fr;
  }

  .adventure-price {
    flex-direction: column;
    gap: 15px;
  }
}





