body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}


/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #06bef1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px; /* Adjust logo size */
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    color: #699FA4; /* Blueish color for "ALANKAR" */
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffffec;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #06f6ea;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    animation: slide 20s infinite;
}

.slide {
    flex: 1;
    min-width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.slide h1 {
    font-size: 3em;
    margin: 0;
}

.slide p {
    font-size: 1.5em;
    margin: 10px 0;
}

.slide button {
    padding: 10px 20px;
    background-color: #ff9800;
    border: none;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

@keyframes slide {
    0% { transform: translateX(0%); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
}

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
}

.services .service-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.services .service-item img {
    max-width: 150px;
    margin-right: 20px;
}

.services .service-item div {
    flex-grow: 1;
}

/* Footer */
.footer {
    background-color: #06bef1;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
/* WhatsApp Popup Styling */
.whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    z-index: 1000;
    animation: slideIn 0.5s ease;
}

.whatsapp-popup.hidden {
    display: none;
}

.whatsapp-popup .whatsapp-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.whatsapp-popup a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.whatsapp-popup .close-popup {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    margin-left: auto;
    cursor: pointer;
}

/* Slide-in Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
