/* 
This file contains theme styles for the website, including color schemes, typography, and other visual elements to enhance the overall aesthetic appeal. 
*/

body {
    background-color: #f4f4f4;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    color: #3498db;
}

.button {
    background-color: #2980b9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #3498db;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
}

.footer a {
    color: #ecf0f1;
}

.footer a:hover {
    color: #3498db;
}

.demo-request {
    background-color: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
}

.demo-request a {
    color: white;
    font-weight: bold;
}

.demo-request a:hover {
    text-decoration: underline;
}