/* ===============================
   RESET
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* ===============================
   HEADER
=================================*/
header {
    background: #111;
    color: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 22px;
    letter-spacing: 1px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #f9c74f;
}

/* ===============================
   HERO SECTION
=================================*/
.hero {
    height: 90vh;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    display: inline-block;
    background: #f9c74f;
    color: black;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero .btn:hover {
    background: #f9844a;
    transform: translateY(-3px);
}

/* ===============================
   SERVICES SECTION
=================================*/
.services {
    padding: 80px 60px;
    background: white;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f1f1f1;
    padding: 35px;
    border-radius: 15px;
    transition: 0.3s;
}

.service-card:hover {
    background: #f9c74f;
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* ===============================
   CTA SECTION
=================================*/
.cta {
    background: #111;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta .btn {
    background: #f9c74f;
    color: black;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cta .btn:hover {
    background: #f9844a;
}

/* ===============================
   FOOTER
=================================*/
footer {
    background: #000;
    color: #aaa;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}
