/* General Reset */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1500x600') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 1.5rem;
    background: linear-gradient(to right, #ffd700, #ff8c00);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    animation: glow 1.5s infinite alternate;
    margin-bottom: 20px;
}

.description {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    }
    to {
        box-shadow: 0 0 40px rgba(255, 140, 0, 1);
    }
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn i {
    margin-right: 10px;
}

.whatsapp-btn:hover {
    background: #1ebe57;
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}

.services h2 {
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    padding: 20px;
    margin: 10px;
    border: 1px solid #ddd;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}

    .hero-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem; /* Adjust size as needed */
        font-weight: 700;
        color: #2c7da5; /* Choose a color that fits your branding */
        text-align: center;
        margin: 20px 0;
        line-height: 1.2;
    }
