body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 10%;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
}

#top {
    display: flex;
    justify-content: center;
    background-color: #444;
    position: sticky;
    top: 0;
    z-index: 1000;
}
#top a {
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
}

#top a:hover {
    background-color: #555;
}

.intro {
    padding: 50px 10%;
    text-align: center;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.features {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    margin-top: 30px;
    padding: 0 10%;
}

.feature {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    color: #555;
}

#portfolio {
    padding: 50px 10%;
    text-align: center;
}

#portfolio .portfolio-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#portfolio img {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#testimonials {
    padding: 50px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

#testimonials blockquote {
    font-style: italic;
    color: #555;
    margin: 20px auto;
    max-width: 600px;
}

#testimonials cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

#contact {
    padding: 50px 10%;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact label {
    font-weight: bold;
}

#contact input, #contact textarea, #contact button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#contact button {
    background-color: #333;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

#contact button:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 10%;
    margin-top: 50px;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h2{
    text-align: center;
}

p{
    text-align: center;
}


#bottom {
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #000000, #2196F3);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }
  
#bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
#bottom a:hover {
    color: #8e8e8e;
    transform: scale(1.1);
  }
  
#bottom a:active {
    color: #FF4500;
  }