body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #fff;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    z-index: 1000;
}

.logo span {
    color: #f0a500;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    text-align: center;
}

.btn {
    background: #f0a500;
    padding: 12px 25px;
    display: inline-block;
    margin-top: 20px;
    color: black;
    text-decoration: none;
}

.about-short, .page {
    padding: 100px 20px;
    text-align: center;
}

.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.card {
    background: #1a1a1a;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 10px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.big-img {
    width: 80%;
    margin-top: 20px;
    border-radius: 10px;
}

.contact-box {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

input, textarea {
    width: 300px;
    margin: 10px;
    padding: 10px;
}

button {
    background: #f0a500;
    border: none;
    padding: 10px;
}

.footer {
    text-align: center;
    padding: 20px;
    background: black;
}
.reviews {
    padding: 80px 20px;
    text-align: center;
}

.review-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    width: 280px;
    transition: 0.3s;
}

.review:hover {
    transform: translateY(-5px);
}

.stars {
    color: gold;
    margin-top: 10px;
}
.contact-page {
    padding: 100px 20px;
    text-align: center;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-form, .contact-info {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 5px;
    border: none;
}

.contact-form button {
    width: 100%;
    background: #f0a500;
    padding: 12px;
    border: none;
    cursor: pointer;
}

.success {
    margin-top: 10px;
    color: lightgreen;
}