/* style.css */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Layout */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Navigation */
header {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f5a623;
}

.nav-link {
    position: relative;
    display: inline-block;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.hero .btn {
    background-color: #f5a623;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    opacity: 0;
    animation: slideUp 3s forwards;
}

.hero .btn:hover {
    background-color: #d88f1f;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Featured Projects */
.featured-projects {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.featured-projects h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.project-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.project {
    background-color: #fff;
    width: 30%;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.project:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.project h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project p {
    font-size: 1rem;
    color: #777;
}

/* Testimonials */
.testimonials {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #fff;
    width: 45%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 1.1rem;
}

.testimonial p {
    margin-bottom: 10px;
}

.testimonial strong {
    font-weight: bold;
    color: #333;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
}

/* About Page */
.about-us {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-content p {
    width: 50%;
    font-size: 1.2rem;
    color: #777;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

/* Services Page */
.services {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.services-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    background-color: #fff;
    width: 30%;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    color: #777;
}

/* Projects Page */
.projects {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.project-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.project-item {
    background-color: #fff;
    width: 30%;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.project-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.project-item h3 {
    font-size: 1.5rem;
}

/* Contact Page */
.contact {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: left;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .btn {
    background-color: #f5a623;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-form .btn:hover {
    background-color: #d88f1f;
}
