@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

:root {
    --primary: #2e7d32;
    --secondary: #f57c00;
    --bg: #f9f9f9;
    --text: #333;
    --light: #fff;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kumbh Sans', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Container to center and add spacing */
.container.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 40px;
    text-align: center;
    background: linear-gradient(135deg, #a5d6a7, #66bb6a);
    border-radius: 20px 20px 0 0;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Heading */
#hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Subtitle paragraph */
#hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Button style */
.button {
    display: inline-block;
    background-color: #2e7d32;
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 10px rgba(46, 125, 50, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.button:hover {
    background-color: #1b4d20;
    box-shadow: 0 8px 15px rgba(27, 77, 32, 0.8);
}

/* Availability note */
#availability {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1b5e20;
    color: #c8e6c9;
    padding: 15px 20px;
    border-radius: 0 0 20px 20px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.button {
    padding: 5px 20px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.button:hover {
    background-color: #ef6c00;
}

#services {
    padding: 5px 0;
    background-color: white;
    text-align: center;
}

.service-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 6px;
    /* reduced gap */
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1f2937;
    /* dark grayish-blue */
}

.service-card p {
    color: #6b7280;
    /* medium gray */
    font-size: 1rem;
    margin-bottom: 8px;
    /* reduced gap */
    margin-top: 12px;
    /* reduced gap */
}

.service-card a {
    color: #2563eb;
    /* blue-600 */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-card a:hover {
    text-decoration: underline;
    color: #1d4ed8;
    /* blue-700 */
}

#extra-help {
    max-width: 100%;
    margin: 30px auto;
    background-color: #e0f2f1;
    /* soft teal */
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    color: #00695c;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 105, 92, 0.2);
}

#extra-help strong {
    color: #004d40;
}

.about {
    display: flex;
    gap: 40px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-box {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 15px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-box h2 {
    margin-bottom: 8px;
    /* reduced gap */
}

.about-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #25D366;
    /* WhatsApp green border */
    margin-bottom: 24px;
    /* reduced gap */
}

.about-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    /* reduced gap */
    margin-top: 12px;
    /* reduced gap */
}

.team-images {
    display: flex;
    gap: 20px;
}

#testimonials {
    background: #f1f8e9;
    padding: 40px;
    text-align: center;
}

.testimonial {
    font-style: italic;
    color: #33691e;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
}

.whatsapp-button img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

#social-media {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 2.5rem;
}

.social-icon {
    color: #444;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #25D366;
    /* WhatsApp green as a nice hover */
    cursor: pointer;
}
