* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.bck {
    width: 100%;
    height: 100vh;
    background-image: url(Images/Header.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

nav button {
    margin-top: 12px;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

nav {
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: space-around;
    color: rgb(0, 0, 0);                   
}

nav a {
    text-decoration: none;
    color: black;
}

nav ul li {
    list-style: none;
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav h1 {
    font-size: 30px;
    margin-top: 12px;
}

nav button {
    width: 150px;
    height: 40px;
    color: black;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 1px;
}

.services {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
