/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #34495e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.logo-container {
    flex: 0;
}

.logo {
    width: 120px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f1c40f;
}

/* Hero Section */
.hero {
    background: url('images/sikkim-hero.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
	color: #47448f;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Places Section */
#places-section {
    padding: 50px 5%;
    text-align: center;
}

#places-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.place-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.place-card:hover {
    transform: scale(1.05);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-card p {
    padding: 15px;
    font-size: 1rem;
    text-align: justify;
}

/* WhatsApp Contact */
.whatsapp-contact {
    text-align: center;
    margin: 40px 0;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1EBE5D;
}

/* Footer */
#footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

/* Header */
#header {
    background: #34495e;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #2c3e50;
}

/* Package Section */
.predefined-packages {
    padding: 50px 20px;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    width: 300px;
    padding: 20px;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* WhatsApp Contact */
.whatsapp-contact {
    padding: 20px;
    background: #45607b;
    color: white;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1eb94b;
}

/* Footer */
footer {
    background: #34495e;
    color: white;
    padding: 15px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-cards {
        flex-direction: column;
        align-items: center;
    }
    .package-card {
        width: 90%;
    }
}



/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

/* Header */
#header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#header h1 {
    margin-left: 20px;
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 15px;
    transition: 0.3s;
    border-radius: 5px;
}

nav ul li a:hover {
    background: #1a252f;
}

/* Hero Section */
.hero {
    background: url('images/sikkim-hero.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: normal;
    justify-content: center;
    text-align: center;
    color: #47448f;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Contact Section */
#contact-section {
    padding: 50px 5%;
    text-align: center;
}

.contact-background {
    background: url('images/sikkim-hero.jpg') no-repeat center center/cover;
    height: auto;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-content {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f1c40f;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* WhatsApp Contact Button */
.contact-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #1ebe52;
}

/* Call Section */
.call-us {
    margin-top: 20px;
    font-size: 1.1rem;
}

.call-btn {
    display: block;
    background: #ff6f61;
    color: white;
    padding: 10px 20px;
    margin: 10px auto;
    width: 200px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.call-btn:hover {
    background: #e64c3c;
}

/* Footer */
#footer {
    background: #2c3e50;
    color: white;
    padding: 15px;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-background {
        padding: 40px 15px;
    }

    .contact-content {
        width: 90%;
        padding: 20px;
    }

    .call-btn {
        width: 90%;
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background:url('images/sikkim-hero.jpg')no-repeat center center fixed;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
#header {
    background: #4c66ae;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#header h1 {
    margin-bottom: 5px;
}

#header p {
    font-size: 18px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin-top: 10px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #1a252f;
    border-radius: 5px;
}

/* Form Container */
.container {
    background: white;
    padding: 40px;
    margin: 40px auto;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    text-align: left;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

button {
    background: #2ecc71;
    color: white;
    padding: 12px;
    font-size: 18px;
    border: none;
    cursor: pointer;
