 /* Styling for the package card container */
 .package-card-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Adjust gap between cards */
    flex-wrap: wrap; /* Wrap cards on smaller screens */
  }

  /* Styling for individual package cards */
  .package-card {
    position: relative;
    width: 90%; /* Default width for small screens */
    max-width: 500px; /* Increase maximum width for larger screens */
    height: 450px; /* Adjust height for a better aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .package-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
  }

  .package-icon img {
    width: 100%;
    height: 100%;
  }

  .city-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  }

  /* Media query for larger screens */
  @media (min-width: 768px) {
    .package-card {
      width: calc(45%); /* Each card takes 45% of the row for more width */
    }
  }

  @media (min-width: 1200px) {
    .package-card {
      width: calc(40%); /* Cards are even wider on large screens */
    }
  }
  
.audio-control {
    position: fixed;
    top: 20px;
    right: 20px;
}

#audio {
    display: none;
}

button {
    color: #fff ;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

button i {
    font-size: 24px;
}

.navbar-custom {
padding: 0.5rem 1rem;
}
/* Default styles */
.navbar-brand {
font-size: 1.5rem; /* Default for larger screens */
font-weight: bold;
white-space: nowrap; /* Prevent wrapping */
}

/* For screens smaller than 768px */
@media screen and (max-width: 768px) {
nav.navbar .navbar-brand {
font-size: 2rem !important; /* Ensure this style is applied */
}
}

/* For screens smaller than 576px */
@media screen and (max-width: 576px) {
nav.navbar .navbar-brand {
font-size: 1.75rem !important; /* Ensure this style is applied */
}
}



.package-card-container {
        display: flex;
        gap: 20px;
    }

    .package-card {
        position: relative;
        width: 500px;
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.3s;
    }

    .package-card:hover {
        transform: scale(1.05);
    }

    .package-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .package-card .city-label {
        position: absolute;
        bottom: 10px;
        left: 15px;
        color: white;
        font-size: 1.5em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .package-card .package-icon {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        padding: 8px;
    }

    .package-card .package-icon img {
        width: 25px;
        height: 25px;
    }