/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background-color: #222;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    width: 50px;
    height: 45px;
}

nav .nav-links {
    list-style: none;
    display: flex;
}

nav .nav-links li {
    margin-left: 20px;
}

nav .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav .nav-links li a:hover {
    color: #ff5722;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #222;
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    background-color: #ff5722;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e64a19;
    transform: translateY(-5px);
}

/* Services Section */
.services-section {
    padding: 4rem 5%;
    text-align: center;
    background-color: #fff;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #ff5722;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f4f4f4;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #ff5722;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    text-align: center;
    background-color: #fff;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #ff5722;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background-color: #ff5722;
    color: #fff;
    padding: 12px 30px;
    border: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 1.5rem 5%;
    text-align: center;
    font-size: 1rem;
}

footer p {
    margin-bottom: 1rem;
}

footer a {
    color: #ff5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e64a19;
}
