
:root {
    --primary-color: #4a90e2; /* Soft Blue */
    --secondary-color: #50e3c2; /* Soft Green */
    --text-color: #4a4a4a;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    padding-top: 0px; /* For fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.section-padding {
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    padding: 150px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.btn-brand {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #357abd;
    border-color: #357abd;
    color: white;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us-item .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial-card .client-name {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Contact Form */
#contact {
    background-color: #f8f9fa;
}

/* Footer */
.site-footer {
    background-color: #343a40;
    color: white;
    padding: 50px 0;
}

.site-footer h5 {
    color: var(--secondary-color);
}

.site-footer a {
    color: #adb5bd;
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
}
