/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color:  #007bff;
    border: 2px solid #007bff;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}
/* Header */
.header {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/tour5.jpg') no-repeat center center/cover;
    color: white;
    padding: 50px 20px;
}

.header h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    margin: 0;
}

/* Main Content */
.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
    text-align: center;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color:  #007bff;
}

section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.whatsapp-icon {
    position: fixed; /* Makes it stay in place even when scrolling */
    bottom: 20px;    /* Distance from the bottom of the screen */
    right: 20px;     /* Distance from the right side of the screen */
    z-index: 1000;   /* Ensures it appears above other elements */
}

.whatsapp-icon a img {
    width: 50px;    /* Adjust the size of the icon */
    height: 50px;   /* Keep the aspect ratio */
    border-radius: 50%; /* Makes it circular */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effects */
}

.whatsapp-icon a img:hover {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Enhances the shadow */
}
/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color:  #007bff;
    color: white;
}

.footer p {
    margin: 5px 0;
}

.footer a {
    color: #ff6347;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
