
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
	
}

header {
    background-color: #292c35;
    color: #fff;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #ff7f50;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.hero {
    text-align: center;
    padding: 150px 0;
    background-color: hsl(53, 100%, 66%);
    color: hsl(0, 0%, 0%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.card {
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #292c35;
    color: #fff;
}



@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 10px 0;
    }

    .hero {
        padding: 100px 0;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  

  .about {
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    text-align: center;
  }
  
  .about h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
  }
  
  .about .profile-image {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .about p {
    text-align: justify;
  }

  .about p {

    padding-top: 50px;
  }

.contact p {
    text-align: center;
    padding-top: 50px;
    
}
.contact address {
    text-align: center;
    padding-top: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  

  .contact {
    background-color: #f9f9f9;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
  }
  
  .contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
  }
  
  .contact form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact input[type="text"],
  .contact input[type="email"],
  .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact textarea {
    height: 150px;
  }
  
  .contact button {
    padding: 10px 30px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
  }
  
  .contact button:hover {
    background-color: #e55b00;
  }
  

.projects {
    background-color: #f9f9f9;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    text-align: center;
  }
  
  .projects h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    padding-top: 40px;
  }
  
  .project-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .project-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .project-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .project-item p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  

.services {
    background-color: #f9f9f9;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    text-align: center;
  }
  
  .services h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .service {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
  }
  
  .service h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  



.video-container {
    position: relative;
    width: 560px; 
    height: 315px; 
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer{
    padding-top: 50px;
}