body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
  }
  
  /* Navbar Styles */
  .navbar-dark {
    background: linear-gradient(135deg,  #1A2447 0%, #596AB5 100%) !important;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .navbar-dark .navbar-nav .active {
    color: #ff6b6b !important; /* Active link color */
    border: 2px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.1); /* Light background for active */
    border-radius: 5px;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}
  .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.2rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover::after {
    width: 70%;
  }
  
  /* Swiper Styles */
  .hero-section {
    height: 600px;
    margin-bottom: 4rem;
  }
  
  .hero-section .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2);
  }
  
  .slide-content {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    width: 80%;
    max-width: 800px;
    text-align: center;
  }
  
  .slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
  }
  
  .slide-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
  }

  `
/* New code */
/* Home Gallery Section */
.home-gallery-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption {
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-expand-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-expand-btn:hover {
  background: #ff6b6b;
  transform: scale(1.1);
}

.view-more-container {
  text-align: center;
  margin-top: 2rem;
}

.btn-view-more {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-view-more:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
  color: #fff;
}

.btn-view-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-view-more:hover i {
  transform: translateX(5px);
}

/* Fullscreen Modal */
.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fullscreen-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: #ff6b6b;
  transform: rotate(90deg);
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fullscreen-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.fullscreen-modal.active .fullscreen-image {
  transform: scale(1);
  opacity: 1;
}

.image-caption {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
  max-width: 80%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
}

.fullscreen-modal.active .image-caption {
  opacity: 1;
  transform: translateY(0);
}

.modal-navigation {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 5;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.nav-btn:hover {
  background: #ff6b6b;
  opacity: 1;
}

.prev-btn {
  transform: translateX(-20px);
}

.next-btn {
  transform: translateX(20px);
}

.fullscreen-modal.active .prev-btn,
.fullscreen-modal.active .next-btn {
  transform: translateX(0);
}

/* Animation for modal */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .modal-navigation {
    padding: 0 10px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  .modal-close-btn {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff6b6b;
    transform: scale(1.2);
  }
  
  /* Stats Section */
  .stats-section {
    margin-top: -100px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
  }
  
  .stats-section-content {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
  }
  
  .stats-section-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ffa502, #2ed573);
  }
  
  .stat-item {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
  }
  
  .stat-icon {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .stat-item:hover .stat-icon {
    transform: rotate(10deg);
  }
  
  .stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-label {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* Travel Section */
  .travel-section {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .travel-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .travel-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  
  .travel-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
  }
  
  .travel-btn {
    background: #fff;
    color: #ff6b6b;
    border-radius: 50px;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .travel-btn:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-5px);
  }
  
  .travel-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .travel-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Features Section */
  .features-section {
    text-align: center;
    padding: 2rem 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
  }
  
  .features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #333;
  }
  
  .features-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .feature-box {
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 10px;
  }
  
  .feature-box:hover {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transform: translateY(-10px);
  }
  
  .feature-box img {
    width: 70px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .feature-box:hover img {
    transform: scale(1.1) rotate(10deg);
  }
  
  .feature-box h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .feature-box p {
    color: #666;
    font-size: 1rem;
  }
  
  /* Section Titles */
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  /* Featured Section Styles */
  .featured-section {
    /* padding: 4rem 0; */
    background: #f9f9f9;
    position: relative;
  }
  
  .featuredSwiper {
    width: 100%;
    height: 250px;
    margin-bottom: 2rem;
  }
  
  .featuredSwiper .swiper-slide {
    transition: all 0.3s ease;
    transform: scale(0.85);
    opacity: 0.7;
  }
  
  .featuredSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
  
  .featuredSwiper .swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Read More Section Styles */
  .read-more-section {
    padding: 4rem 0;
    background: #fff;
  }
  
  .readMoreSwiper {
    width: 100%;
    padding: 2rem 0;
  }
  
  .readMoreSwiper .swiper-slide {
    height: auto;
    transition: all 0.3s ease;
  }
  
  .card {
    height: 100%;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .card:hover .card-img-top {
    transform: scale(1.1);
  }
  
  .card-body {
    padding: 1.5rem;
    position: relative;
  }
  
  .card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, #ff6b6b, #ff7f50);
    transition: all 0.3s ease;
  }
  
  .card:hover .card-body::before {
    height: 100%;
  }
  
  .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .card:hover .card-title {
    transform: translateX(10px);
  }
  
  .card-text {
    color: #6c757d;
    transition: all 0.3s ease;
  }
  
  .card:hover .card-text {
    transform: translateX(10px);
  }
  
  /* Swiper Navigation Styles */
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    transform: scale(1.1);
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.25rem;
  }
  
  /* Footer Styles */
  .footer-section {
    background: linear-gradient(135deg,  #1A2447 0%, #596AB5 100%);
    color: #fff;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ffa502, #2ed573);
  }
  
  .footer-top {
    padding: 5rem 0 3rem;
    position: relative;
  }
  
  .footer-top::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .footer-section h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffa502);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  
  .footer-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
  }
  
  .footer-links a:hover::before {
    opacity: 1;
  }
  
  .social-links {
    margin-top: 1.5rem;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .social-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
  }
  
  .social-links a:hover::before {
    opacity: 1;
  }
  
  .newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    overflow: hidden;
  }
  
  .newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding-left: 20px;
    height: 50px;
  }
  
  .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .newsletter-form .btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    height: 46px;
    margin: 2px;
  }
  
  .newsletter-form .btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .footer-section a {
    text-decoration: none;
  }
  
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
  }
  
  .footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-bottom-links li {
    display: inline-block;
    margin-left: 1.5rem;
  }
  
  .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .footer-bottom-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: all 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #ff6b6b;
  }
  
  .footer-bottom-links a:hover::after {
    width: 100%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero-section {
      height: 500px;
    }
  
    .slide-content h2 {
      font-size: 2.5rem;
    }
  
    .travel-section {
      flex-direction: column;
      text-align: center;
    }
  
    .travel-btn {
      margin-top: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      height: 400px;
    }
  
    .slide-content h2 {
      font-size: 2rem;
    }
  
    .slide-content p {
      font-size: 1rem;
    }
  
    .stats-section {
      margin-top: -50px;
    }
  
    .stat-value {
      font-size: 1.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .footer-bottom {
      text-align: center;
    }
  
    .footer-bottom-links {
      margin-top: 1rem;
      text-align: center;
    }
  
    .footer-bottom-links li {
      margin: 0 0.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-section {
      height: 300px;
    }
  
    .slide-content h2 {
      font-size: 1.5rem;
    }
  
    .stats-section-content {
      margin-top: -30px;
    }
  }
  
  /* Animation Keyframes */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
/* Popular Destinations Section */
.destinations-section {
    /* padding: 5rem 0; */
    background-color: #f9f9f9;
  }
  
  .destination-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .destination-image {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .destination-card:hover .destination-image img {
    transform: scale(1.1);
  }
  
  .destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .destination-card:hover .destination-overlay {
    opacity: 1;
  }
  
  .btn-explore {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
  }
  
  .destination-card:hover .btn-explore {
    transform: translateY(0);
    opacity: 1;
  }
  
  .btn-explore i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .btn-explore:hover {
    background: #fff;
    color: #ff6b6b;
  }
  
  .btn-explore:hover i {
    transform: translateX(5px);
  }
  
  .destination-content {
    padding: 1.5rem;
  }
  
  .destination-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .destination-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
  }
  
  .destination-meta span {
    display: flex;
    align-items: center;
  }
  
  .destination-meta i {
    margin-right: 5px;
    color: #ff6b6b;
  }
  
  .destination-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
  }  