@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Monomakh&family=Shafarik&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Merriweather;
    background-color: #010101;
    color: #eee;
}

body {
    font-family: 'Merriweather', serif;
    background-color: #010101;
    color: #eee;
    line-height: 1.6;
}

header {
    width: 1200px;
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}

header .logo {
    font-weight: bolder;
    font-size: 24px;
}

header .menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
}

header .menu li {
    display: inline;
}

header .menu li a {
    color: #eee;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

header .menu li a:hover {
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
}





.about-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    /* margin-bottom: 40px; */
}

.about-nav-button {
    padding: 12px 24px;
    background-color: #fda90d;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-nav-button:hover {
    background-color: #4c51bf;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* services.css */

.services-section {
    padding: 50px;
    /* background-color: #f4f4f4; Light background color */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.services-container {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive columns */
    gap: 20px; /* Space between cards */
}

.service-card {
    /* background-color: white; Card background color */
    border-radius: 5px; /* Rounded corners */
    padding: 20px; /* Inner spacing */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for cards */
    transition: transform 0.3s; /* Smooth transform on hover */
}

.service-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.service-image {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Rounded corners for images */
    margin-bottom: 15px; /* Space below images */
}

.service-card h3 {
    color: #eee; /* Green color for service titles */
}

.service-card p {
    color: #eee; /* Dark text color for descriptions */
}