
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

h1, h2, h3 {
  color: #333;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #333;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 30px;
}

header .logo h1 {
  font-size: 2.2rem;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f4f4f4;
}

/* Hero Section */
#hero {
  height: 100vh;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 600px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.btn-primary {
  background-color: #f4f4f4;
  color: #333;
  padding: 15px 25px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-3px);
}

/* About Section */
#about {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

#about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Portfolio Section */
#portfolio {
  padding: 80px 0;
  background-color: #f4f4f4;
}

#portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.service {
  margin-bottom: 40px;
}

.service h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.service p {
  font-size: 1.1rem;
  color: #777;
}

/* Contact Section */
#contact {
  padding: 80px 0;
  background-color: #f4f4f4;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

form input, form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1.1rem;
}

form button {
  background-color: #333;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #444;
}

/* Footer Section */
footer {
  padding: 20px 0;
  background-color: #000;
  color: #fff;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align:
