
/* ====== ABOUT US HERO SECTION ====== */

/* Background + Animations */
@keyframes fadeInBg {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1366&q=80") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  animation: fadeInBg 1.5s ease-in-out forwards;
  overflow: hidden;
}

/* Dark overlay for readability */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Brush stroke divider at the bottom */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('https://ibb.co/rV0BRfW') repeat-x bottom;
  background-size: contain;
  z-index: 2;
}

/* Text content styling */
.about-hero-content {
  position: relative;
  z-index: 3;
  animation: slideUp 1.2s ease-out forwards;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .about-hero {
    height: 70vh;
  }

  .about-hero h1 {
    font-size: 2.6rem;
  }

  .about-hero p {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 65vh;
    padding: 0 20px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }
}

/* ================= TOUR HIGHLIGHT SECTION ================= */
/* ================= HOW WE ARE BEST SECTION ================= */
.how-we-best {
  background: #fff;
  padding: 80px 10%;
  animation: fadeInUp 1s ease-in-out;
}

.best-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Side */
.best-left {
  flex: 1 1 500px;
  animation: slideInLeft 1.2s ease;
}

.best-left .image-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
}

.best-left .best-text {
  margin-top: 15px;
  text-align: left;
}

.best-left .best-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #d8232a;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.best-left .best-text p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

/* Right Side */
/* Right Side - Updated to Vertical Layout */
.best-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
  animation: slideInRight 1.2s ease;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
}

/* Circular Icon */
.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #d8232a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 5px solid #ffe066;
}

.feature-icon:hover {
  background: #ffe066;
  transform: scale(1.1);
}

/* Heading and Paragraph */
.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #d8232a;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 300px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .best-container {
    flex-direction: column;
    text-align: center;
  }
  .best-left .best-text {
    text-align: center;
  }
  .feature {
    flex-direction: column;
    align-items: center;
  }
}/* ====== BEST FOR TRAVEL SECTION ====== */
.best-travel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  gap: 50px;
  background: #fff;
}

.best-travel-left {
  flex: 1;
  text-align: center;
}

.best-travel-left img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.best-travel-left img:hover {
  transform: scale(1.03);
}

.best-travel-left h2 {
  margin-top: 25px;
  font-size: 28px;
  color: #d8232a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-travel-left p {
  margin-top: 10px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* ====== RIGHT SIDE FEATURES ====== */
.best-travel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #2a7ade;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #d8232a;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ====== ANIMATION ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.best-travel-left, .best-travel-right {
  animation: fadeInUp 1.2s ease both;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .best-travel {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .best-travel-right {
    align-items: center;
  }

  .feature-box {
    flex-direction: column;
    text-align: center;
  }

  .icon-circle {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .best-travel-left h2 {
    font-size: 24px;
  }

  .feature-text h3 {
    font-size: 18px;
  }
}

/* ====== TRAVEL READY SECTION ====== */
.travel-ready {
  position: relative;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.travel-ready::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.travel-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.2s ease both;
}

/* Play Button */
.play-btn {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.play-btn:hover {
  background: #d8232a;
  transform: scale(1.1);
}

.travel-content h2 {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.travel-content p {
  margin: 20px 0 35px;
  font-size: 18px;
  color: #f1f1f1;
}

/* Buttons */
.travel-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.4s ease;
  text-decoration: none;
  text-align: center;
}

.primary-btn {
  background: #d8232a;
  color: #fff;
}

.primary-btn:hover {
  background: #ffd700;
}

.secondary-btn {
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #d8232a;
}

/* Video Overlay */
.video-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -35px;
  right: -10px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .travel-content h2 {
    font-size: 30px;
  }

  .travel-content p {
    font-size: 16px;
  }

  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .video-content iframe {
    height: 300px;
  }
}

/* ================= POPULAR DESTINATIONS SECTION ================= */
/* .popular-destinations {
  text-align: center;
  padding: 100px 10%;
  background: #f8f9fb;
  animation: fadeInUp 1.3s ease-in-out;
}

.popular-destinations h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.popular-destinations p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  animation: fadeInUp 1.4s ease-in-out;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff;
  text-align: left;
  transition: background 0.3s ease;
}

.destination-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.destination-info p {
  font-size: 0.95rem;
  line-height: 1.4;
} */

/* ================= ANIMATIONS ================= */
/* @keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
} */

/* ================= RESPONSIVE ================= */
/* @media (max-width: 768px) {
  .popular-destinations {
    padding: 60px 6%;
  }

  .popular-destinations h2 {
    font-size: 1.8rem;
  }
} */


