/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --light: #fff;
    --dark: #222;
    --accent: #3498db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    padding: 2rem 0;
    height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo img {
    max-width: 150px;
    height: auto;
    /* margin-bottom: 1.5rem; */
}

.motto {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: 1px;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    /* margin-bottom: 3rem; */
}

.service {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service h3 {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Footer */
footer {
    text-align: center;
    /* margin-top: 3rem; */
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact {
    margin-bottom: 1.5rem;
}

.contact p {
    display: inline-block;
    margin: 0 1rem;
    color: var(--primary);
}

.contact i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .services {
        grid-template-columns: 1fr;
    }
    
    .contact p {
        display: block;
        margin: 0.5rem 0;
    }
}

.whatsapp-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-img img {
    width: 250px;
}