/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
header {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

nav ul li a:hover {
    color: #128c7e;
}

/* Hero Banner Section */
.hero-banner {
    background: url('https://example.com/your-image.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-banner h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-banner p {
    font-size: 1.5em;
    font-weight: 300;
}

/* Tour Packages Section */
.tour-packages {
    background-color: #fff;
    padding: 50px 0;
}

.tour-packages h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

.package-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.package-item img {
    width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.package-item h3 {
    font-size: 1.8em;
    margin-top: 15px;
}

.package-item p {
    font-size: 1.1em;
    margin-top: 10px;
    color: #555;
}

.package-item .btn {
    background-color: #007b7f;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

.package-item .btn:hover {
    background-color: #128c7e;
}

/* Footer Section */
footer {
    background-color: rg
}
/* Footer Section */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    margin: 0 15px;
    color: white;
    font-size: 2em;
    text-decoration: none;
}

footer .social-icons a:hover {
    color: #128c7e;
}


/* Social Media Button Styling */
.social-icons {
    margin-top: 10px;
    text-align: center;
}

.social-btn {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon {
    width: 40px;  /* Set the size of the icons */
    height: 40px;
    transition: transform 0.2s ease-in-out;
}

/* Hover effect for icons */
.social-btn:hover .social-icon {
    transform: scale(1.1);  /* Slightly increase the size on hover */
}

/* Optional: Adding specific colors */
.whatsapp-btn .social-icon {
    background-color: #25d366;
    border-radius: 50%;  /* Make the icon circular */
    padding: 5px;
}

.facebook-btn .social-icon {
    background-color: #1877f2;
    border-radius: 50%;
    padding: 5px;
}

.instagram-btn .social-icon {
    background-color: #E4405F;
    border-radius: 50%;
    padding: 5px;


}




/* Style for package items */
.package-item {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.image-container {
    position: relative;
}

.package-item img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
}

/* Default image */
.package-item .default-img {
    display: block;
}

/* Hover image, initially hidden */
.package-item .hover-img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Show hover image when the user hovers */
.package-item:hover .default-img {
    display: none;
}

.package-item:hover .hover-img {
    display: block;
}
