.hero {
    background-image: url("images/hm1.jpg");
    background-size: cover;
    background-position: center;
    height: 80vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

.btn-learn-more {
    background-color: #ff7f50;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
}

.btn-book-now {
    background-color: red;
    color: white;
    font-weight: bold;
}

/* .navbar-custom {
    background-color: #1a1a2e;
} */

.navbar-custom .nav-link {
    color: white;
}

.navbar-custom .nav-link:hover {
    color: #d6d6d6;
}

.navbar-nav .nav-link {
    text-decoration: underline;
    color: #f0eded;
}

.navbar-nav .nav-item {
    margin: 0 12px;
}

.info-box {
    width: 90%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 15px;
    object-fit: cover;
    height: 350px;
}


.gallery-section {
    text-align: center;
    margin: 50px 0;
}

.gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.gallery-section img {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 15px; 
  }

.gallery-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}



.photo-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.photo-card:hover {
    transform: scale(1.05);
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 2rem 0;
}

.footer h5, .footer p, .footer a {
    color: #ffffff;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .btn-subscribe {
    background-color: red;
    color: white;
    font-weight: bold;
}

.traveller-photo {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 200px;
}

.photo-grid .col-md-4 {
    margin-bottom: 20px;
}

.blue-bg {
    background-color: #05407f; /* Bootstrap's primary color */
    color: white;
    font-weight: bold;
    width: 100%;
    height: 300px;
  }
  html {
    scroll-behavior: smooth;
}

.card {
    border-width: 2px;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth animation for hover effects */
}

.shadow-hover {
    box-shadow: 0 4px 8px rgba(209, 207, 207, 0.1); /* Initial shadow */
}

.shadow-hover:hover {
    transform: scale(1.05); /* Slight scaling on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.card-body {
    transition: background-color 0.3s; /* Animation for background color */
}

.card-body:hover {
    background-color: rgba(0, 123, 255, 0.1); /* Light highlight on hover */
}
/* Adjust font size for achievements based on screen width */
@media (max-width: 400x) {
    .achievement-text {
        font-size: 1.5rem; /* Font size for small screens (mobile) */
    }

    .achievement-subtext {
        font-size: 1rem; /* Smaller font for mobile */
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .achievement-text {
        font-size: 3rem; /* Font size for medium screens (tablet) */
    }

    .achievement-subtext {
        font-size: 1.25rem; /* Slightly larger font for tablets */
    }
}

@media (min-width: 768px) {
    .achievement-text {
        font-size: 3.5rem; /* Font size for larger screens (desktop) */
    }

    .achievement-subtext {
        font-size: 1.25rem; /* Standard font for desktop */
    }
}
