  
    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }
    .navbar {
      background-color: #800020 !important;
    }
    .navbar-brand {
      font-size: small; !important;
      color: white; !important;
    }
    .nav-link {
      color: #fff !important;
      font-weight: 500;
    }
    .nav-link:hover {
      color: white !important;
    }
    
    span{
      font-size: small;
      color: white;
      display: flex;
      justify-content: center;
    }
    
    header {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      color: #fff;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    header h1 {
      font-size: 2.8rem;
      font-weight: 700;
    }
    section {
      padding: 60px 0;
    }
    .itinerary-card {
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      transition: transform 0.3s;
    }
    .itinerary-card:hover {
      transform: translateY(-8px);
    }
    .itinerary-card h5 {
      color: black ;
      font-weight: 600;
    }
    
    .read-more{
      color:#800020; 
     }

   footer {
      background:#800020;
      color: #aaa;
      padding: 20px 0;
      text-align: center;
      position: relative ; 
      z-index:1 ; 
    }

footer a {
      color: #00b894;
      text-decoration: none;
    }

.social-icons:hover{
         transform: translateY(-10px);
     }

.social-icons a {
	color: white;
	margin: 10px;
	font-size: 28px;
	transition: transition: transform 0.3s ease;;
}