/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
img {
    max-width: 100%;
    height: auto;
}
h2 {
    text-align: center;
}
a {
    text-decoration: none;
}

/* Navigation Menu */
nav {
    background: #6a1b9a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: inline;
}
nav ul li a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #ffcc00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #6a1b9a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.mobile-menu a {
    padding: 10px 0;
    border-bottom: 1px solid #4a148c;
    color: white;
}

/* Header */
header {
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header h1 {
    font-size: 3rem;
    margin: 0;
}
header p {
    font-size: 1.5rem;
    margin: 10px 0 0;
}

/* Phone Button in Header */
.phone-button {
    display: inline-block;
    margin-top: 15px;
    background: #ffcc00;
    color: #6a1b9a;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
.phone-button:hover {
    background: #e6b800;
    transform: scale(1.05);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Sections */
section {
    margin: 40px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about p {
    font-size: 1.2rem;
    text-align: center;
}

/* Services Section */
.services ul, .additional-services ul, .process ul {
    list-style: none;
    padding: 0;
}
.services ul li, .additional-services ul li, .process ul li {
    background: #f4f4f4;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    border-left: 5px solid #6a1b9a;
    display: flex;
    align-items: center;
    gap: 10px;
}
.services ul li:hover, .additional-services ul li:hover, .process ul li:hover {
    background: #eaeaea;
}

/* Testimonials Section */
.testimonials p {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
}

/* Call-to-Action Section */
.cta {
    background: #ccc5ff;
    color: #6a1b9a;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
}
.cta a {
    display: inline-block;
    background: #6a1b9a;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}
.cta a:hover {
    background: #4a148c;
}

/* Contact Section */
.contact {
    text-align: center;
}
.contact p {
    font-size: 1.2rem;
    margin: 10px 0;
}
.contact a {
    color: #6a1b9a;
    font-weight: bold;
}
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.contact-icons a {
    display: inline-block;
    background: #6a1b9a;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}
.contact-icons a:last-child {
    padding: 15px 20px;
}

/* Footer */
footer {
    background: #4a148c;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
footer p {
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.whatsapp-button:hover {
    background: #1ebe5b;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: flex;
    }
    header h1 {
        font-size: 2.5rem;
    }
    header p {
        font-size: 1.2rem;
    }
    .cta a {
        padding: 10px 20px;
        font-size: 1rem;
    }
}