* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family:'Poppins', sans-serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

/* CONTAINER */
.container {
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* HEADER */
header {
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:1000;
}

.header-inner {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img {
    height:85px;
}

nav a {
    margin-left:25px;
    text-decoration:none;
    color:#333;
    font-weight:500;
}

/* HERO */
.hero {
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;

    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/hero.jpg') center/cover no-repeat;
}

.hero h1 {
    font-size:55px;
}

.hero p {
    margin:15px 0;
    font-size:20px;
}

/* BUTTON */
.btn {
    padding:12px 25px;
    background:#7b1fa2;
    color:white;
    border-radius:6px;
    text-decoration:none;
    display:inline-block;
}

/* SECTION */
.section {
    padding:80px 0;
}

.section h2 {
    text-align:center;
    margin-bottom:40px;
}

/* SERVICES GRID (FIXED) */
.services-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:25px;
}

.card {
    background:white;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover {
    transform:translateY(-8px);
}

/* GALLERY */
.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:20px;
}

.gallery img {
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

/* CONTACT */
.form-wrapper {
    display:flex;
    justify-content:center;
}

.form-card {
    background:white;
    padding:40px;
    border-radius:12px;
    max-width:420px;
    width:100%;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.form-card form {
    display:flex;
    flex-direction:column;
    gap:15px;
}

.form-card input,
.form-card select,
.form-card textarea {
    padding:14px;
    border-radius:8px;
    border:1px solid #ccc;
}

.form-card textarea {
    min-height:120px;
}

/* FOOTER */
footer {
    background:#000;
    color:white;
    text-align:center;
    padding:20px;
}

/* MOBILE */
@media(max-width:768px){
    .hero h1 {
        font-size:32px;
    }

    .hero p {
        font-size:16px;
    }

    .logo img {
        height:65px;
    }
}