body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

header {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #bdc3c7;
    text-shadow: none;
}

main {
    padding: 50px 20px;
    text-align: center;
}

h1 {
    font-size: 3em;
    color: #ecf5ff;
    margin-bottom: 0.5em;
}

footer {
    background: #34495e;
    color: white;
    text-align: center;
    padding: 1em 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

button {
    padding: 12px 25px;
    background: #7f8c8d;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

button:hover {
    background: #95a5a6;
    transform: translateY(-2px);
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

form {
    max-width: 500px;
    margin: 0 auto;
}

input:focus, textarea:focus {
    border-color: #34495e;
    outline: none;
    box-shadow: 0 0 8px rgba(52,73,94,0.3);
}

/* Carousel */

.carousel {
    position: relative;
    overflow: hidden;
    height: 800px;
    display: flex;
}

.carousel-container {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slide 16s infinite;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@keyframes slide {
    0% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.nav-button {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 0 4px;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-button:focus {
    outline: none;
    background-color: white;
    border-color: white;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* 3 cards Styling */

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 350px;
    text-align: center;
}

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

.card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 15px 0;
}

.card p {
    font-size: 1rem;
    color: #7f8c8d;
    padding: 0 15px;
}

.card-button {
    display: inline-block;
    padding: 12px 25px;
    margin: 20px 0;
    background: #34495e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.card-button:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Social icons styling */
.social-icons {
    margin-top: auto; /* Pushes the icons to the bottom */
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0; /* Optional padding */
}
.social-icons a {
    margin: 0 15px;
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #bdc3c7;
}

/* Blog Post Styling */

.blog-post {
    border: 1px solid #e0e0e0;
    padding: 25px;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-post h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.blog-post a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-post a:hover {
    color: #2c3e50;
}

/* Contact form */

.contactForm {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contactForm h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contactForm input, 
.contactForm textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contactForm button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contactForm button:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
}

.header .logo {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #f39c12;
}

/* Main Section Styles */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 24px;
    margin: 0 0 10px;
    color: #2c3e50;
}

.card-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
}

.card-price {
    font-size: 18px;
    font-weight: 600;
    color: #f39c12;
    margin: 0 0 15px;
}

.card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.card-button:hover {
    background-color: #e67e22;
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer p {
    margin: 0;
}