
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #444;
}

header {
    background: #f9ecec;
    padding: 20px 0;
    position: fixed;
    width: 100%;
}

.logo-img{
    padding: 7px;
    width: 85px;
    height: 50px;
    top: 0;
    position: absolute;
    padding-bottom: 20%;
  }

nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #c48b8b;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #a46666;
}


.hero {
background-image: url('img/back.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-text {
    width: 500px;
    height: 230px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
}

.services {
    background: #fef9f9;
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border: 1px solid #e0dede;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #c48b8b;
}

.service-item p {
    font-size: 16px;
    color: #777;
}



footer {
    text-align: center;
    padding: 20px;
    background: #f9ecec;
    color: #777;
}