* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
		
    font-family: 'Poppins', sans-serif;
}
h2{
	color:#9C8C27;
}

body { background-color: #fcfcfc; color: #333; line-height: 1.6;}

.container { width: 90%; max-width: 1200px; margin: auto; }

/* Navbar & Logo */
header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none; /* Removes the underline */
    border-radius: 5px;
    font-weight: bold;
}

.button-link:hover {
    background-color: #0056b3; /* Darkens the button on hover */
}

.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo-container { display: flex; align-items: center; gap: 10px; }

.company-logo {
    height: 50px; /* Adjust size to fit your logo */
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #222;
}

.logo-text span { color: #9C8C27; }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #444; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: #007bff; }

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; color:#9C8C27;
	text-shadow: 1px 1px 2px pink, 0 0 1em white; 
}
.btn { background: #007bff; color: white; padding: 12px 30px; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; display: inline-block; font-weight: 600; }

/* Services & Destinations */
.section-title { text-align: center; margin: 50px 0 30px; font-size: 2rem; }

.service-grid, .dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); text-align: center; }
.service-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 5px; }

.dest-card { position: relative; height: 250px; border-radius: 10px; overflow: hidden; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; }
.dest-overlay { position: absolute; bottom: 0; background: rgba(0,0,0,0.6); width: 100%; color: white; padding: 10px; text-align: center; }

/* Form */
#contact-form { max-width: 700px; margin: 40px auto; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.form-group { display: flex; gap: 15px; margin-bottom: 15px; }
input, select, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }
#contact-form .btn { width: 100%; }

footer { background: #222; color: white; text-align: center; padding: 20px 0; margin-top: 50px; }

/* Mobile */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: #333; margin: 5px; transition: 0.3s; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .form-group { flex-direction: column; gap: 0; }
}