body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
}

.logo .tick {
    color: #FFD700; /* Gold color for the tick mark */
    font-size: 28px;
    margin-left: 5px;
}

.main-title {
    font-size: 20px;
    margin-left: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

/* About Us Section */
#about {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#about h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

#about p {
    font-size: 18px;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
}
#services {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#services h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

#services p {
    font-size: 18px;          /* Larger font size */
    line-height: 1.6;         /* More line spacing */
    text-align: center;       /* Center the text */
    margin: 0 auto;           /* Center the paragraph block */
    max-width: 800px;         /* Optional: limit the paragraph width */
}

/* Service Cards */
.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 200px;
    margin: 10px;
    padding: 20px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    font-weight: bold;
}



.glow-bold {
    font-weight: bold;
    color: #65f406; /* Gold color, you can change it */
    text-shadow: 0 0 10px rgba(152, 244, 3, 0.7), 0 0 20px rgba(255, 215, 0, 0.5); /* Glowing effect */
}

/* Contact Section */
#contact {
    background-color: #f0f0f0;
    padding: 40px;
    text-align: center;
}

#contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

#contact p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-block;
    background-color: #09f25f;  /* WhatsApp green color */
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Footer Styling */
footer {
    background-color: #f0f0f0; /* Optional: Background color for the footer */
    padding: 20px;
    text-align: center; /* Center the text */
    position: relative; /* Ensure proper layout control */
    bottom: 0;
    width: 100%;
}

.footer-text {
    font-size: 16px;
    color: #333; /* Optional: Text color */
    margin: 0;
}
