* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #007bff;
    padding: 15px;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 30px;
    font-weight: 600;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-size: 25px;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    color: blue;
    font-size: 28px;
    margin: auto;
    text-align: center;
}

button {
    padding: 10px 20px;
    margin: 10px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background: #0056b3;
}

.page {
    display: none;
    padding: 20px;
}

.page.active {
    display: block;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #007bff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    nav ul.show {
        display: flex;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}


/* WhatsApp Button Styles */
    #whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1000;
      transition: transform 0.3s ease;
    }

    #whatsapp-button:hover {
      transform: scale(1.1);
    }

    #whatsapp-button img {
      width: 30px;
      height: 30px;
    }

/* Quote Section */

.quote p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}


.social-icons {
    margin-bottom: 1.5rem;
}

.social-icon {
    margin: 0 15px;
    text-decoration: none;
    font-size: 2rem;
    transition: transform 0.3s ease-in-out;
}


/* Hover Effect on Social Icons */
.social-icon:hover {
    transform: scale(1.2);
    color: #007bff;
}

footer p {
    font-size: 1rem;
    margin-top: 2rem;
}
