/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2vw;
}

/* Header */
header {
    background-color: #333333ef;
    color: #fff;
    padding: 10px 0;
    position: fixed ;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#as {
    width: 7vw;
    height: 6vw;
}

header h1 {
    margin: 0;
    font-size: 4vw;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 2vw;
}

/* Hero section */
#hero {
    background-image: url('asadi.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    padding-top: 20vw;
}

#hero h2 {
    font-size: 4vw;
    margin-bottom: 20px;
}

#hero p {
    font-size: 2vw;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #45a049;
}

/* Services section */
#services {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service {
    width: calc(50% - 40px);
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.service p {
    font-size: 1.1em;
}

/* Portfolio section */
#portfolio {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.portfolio-item {
    width: calc(50% - 40px);
    margin-bottom: 40px;
    text-align: center;
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.portfolio-item h3 {
    font-size: 1.5em;
    margin-top: 10px;
}

/* Team section */
#team {
    padding: 80px 0;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-member {
    width: calc(33.33% - 40px);
    margin-bottom: 40px;
    text-align: center;
}

.team-member img {
    max-width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5em;
    margin-top: 10px;
}

.team-member p {
    color: #666;
}

/* Testimonials section */
#testimonials {
    background-color: #333;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    justify-content: space-around;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.testimonial {
    flex: 0 0 auto;
    width: 70%;
    margin-right: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    scroll-snap-align: center;
}

.testimonial p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonial cite {
    font-style: normal;
    font-size: 1.1em;
}

/* Contact section */
#contact {
    background-image: url('asadi.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #45a049;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
    