body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafc;
    color: #222;
}

/* NAVBAR */
nav {
    position: sticky;
    top: 0;
    background: white;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo-box img {
    height: 55px;
    margin-right: 10px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #007bff;
}

/* HERO */
.hero {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)),
                url('../images/slide1.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
}

.hero button {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 80px 60px;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card i {
    font-size: 40px;
    color: #007bff;
}

/* PORTFOLIO */
.portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.project img {
    width: 100%;
    border-radius: 10px;
}

/* CONTACT */
.contact-box {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form, .contact-info {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

/* FORM */
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

button {
    padding: 12px 25px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
}


button, .btn {
    background: gold;
    color: #111;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: bold;
}

button:hover, .btn:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px;
}



