/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background-color: tomato;
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

header .logo p {
    margin: 0;
    font-size: 14px;
}

header ul {
    list-style: none;
    display: flex;
    margin: 0;
}

header ul li {
    margin: 0 15px;
}

header ul li a {
    color: white;
    font-size: 16px;
}

/* Hero Section */
.hero {
    /* background: tomato; */
    background-image: url('./images/hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero .btn {
    background-color: tomato;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}

/* Services Section */
.services {
    padding: 3rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
}

.service-card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 3rem 2rem;
    background-color: #fff;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
    height: 200px;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    justify-content: space-around;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: #555;
}

/* Skills Section */
.skills {
    padding: 3rem 2rem;
    background-color: #fff;
    text-align: center;
}

.skills h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.skills-list {
    display: flex;
    justify-content: space-around;
}

.skill {
    width: 20%;
}

.skill-bar {
    height: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.skill-bar.html { background-color: #e44d26; width: 90%; }
.skill-bar.css { background-color: #2965f1; width: 85%; }
.skill-bar.js { background-color: #f0db4f; width: 80%; }
.skill-bar.react { background-color: #61dafb; width: 75%; }

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

footer a {
    color: #4CAF50;
}
