/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

/* Navbar */
.navbar {
    background: #22015090;
    color: white; 
    padding: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: beige;
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin-left: 20px;
}
.nav-links a {
    color: white;
    text-decoration: none;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - With Background & Overlay */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    color: white;
    background: linear-gradient(135deg, #1c242b, #26065b);
    overflow: hidden;
}

/* Overlay Effect */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.hero h1 {
    font-size: 2.5rem;
}
.hero p {
    margin-top: 10px;
    font-size: 1.2rem;
}
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff5733;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.btn:hover {
    background: #c70039;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #333;
    }
    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 15px;
    }
    .nav-links a {
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
.next-section {
    background: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
}

.next-section h2 {
    font-size: 2em;
    color: #333;
}

.next-section p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}



/* Section with Left Image - Right Text */
.section-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    gap: 20px;
}

.section-image {
    flex: 1;
    max-width: 50%;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-text {
    flex: 1;
    max-width: 50%;
}

.section-text h2 {
    color: #0d0c0c;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-text p {
    font-size: 16px;
    color: #0e0e0e;
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }

    .section-image,
    .section-text {
        max-width: 100%;
    }
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.whatsapp-button:hover {
    background-color: #1EBE5D; /* Slightly darker green */
}
