/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #0c0c0c;
    background-color: #f9f9f9;
}

/* Header */
header {
    background-color: #8c92ed;
    color: #ffffff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2rem;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #12b3c9;
}

/* Hero Section */
#hero {
    background: url('/assets/hero-video.mp4') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

#hero a {
    background-color: #ff7a59;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

#hero a:hover {
    background-color: #ff5029;
}

/* Sections */
section {
    padding: 100px 50px;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Services */
#services a {
    display: inline-block;
    background-color: #111;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

#services a:hover {
    background-color: #ff7a59;
}

/* Portfolio */
#portfolio div {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Testimonials */
#testimonials blockquote {
    background-color: #111;
    color: #fff;
    padding: 30px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    font-style: italic;
}

#testimonials footer {
    margin-top: 15px;
    font-weight: bold;
}

/* Call to Action */
#cta {
    background-color: #ff7a59;
    color: #fff;
    padding: 80px 20px;
}

#cta a {
    background-color: #fff;
    color: #ff7a59;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

#cta a:hover {
    background-color: #ff5029;
    color: #fff;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 50px;
    text-align: center;
}

footer h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

footer h4 {
    margin-top: 30px;
    font-size: 1.2rem;
}

footer ul {
    list-style: none;
    margin: 10px 0 20px;
    padding: 0;
}

footer ul li {
    margin: 5px 0;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ff7a59;
}

footer p {
    margin: 10px 0;
    font-size: 0.9rem;
}
