/* Hero container */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

/* Background image */
#background-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#background-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top-center h5 title */
#hero-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1em;
  margin: 0;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  z-index: 1;
}

/* Bottom-center h1 and button */
#hero h1,
#inquire-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* h1 subtitle */
#hero h1 {
  bottom: 190px;
  font-size: 3.8em;
  margin: 0;
}

/* Button */
#inquire-button {
  bottom: 120px;
  padding: 10px 20px;
  font-size: .9em;
  background-color: #ff4081;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

#inquire-button:hover {
  background-color: #c003f9;
}
.about {
  display: grid;
  grid-template-columns: 1fr 400px;
  background-color: #000;
  color: #fff;
  padding: 20px;
}

.sweet-pic img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.about-text {
  position: relative;
  padding: 20px;
  left: 60px;
}
.works {
  padding: 40px 20px;
  background-color: #095f81;
  text-align: center;
}

.works h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.work-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.work-pic img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.work-description h2 {
  margin-top: 15px;
  font-size: 20px;
  color: #555;
}
.services {
  padding: 40px 20px;
  background-color: #eaeaea;
  text-align: center;
}

.services h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.service-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-description h2 {
  margin-top: 15px;
  font-size: 20px;
  color: #444;
}

.review-page {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.review-page h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-item {
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-size: 18px;
  color: #2196f3; /* blue */
  font-weight: bold;
}

.review-description p {
  font-size: 16px;
  color: #fff;
  margin: 5px 0;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #04203e; /* blue */
  padding: 40px 20px;
  flex-wrap: wrap;
}

.footer-image img {
  width: 300px;
  height: auto;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.footer-content {
  flex: 1;
  padding-left: 340px; /* 👈 Added left padding */
  color: #000; /* 👈 Black text */
}

.footer-content h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-content h4 {
  font-size: 18px;
  margin: 5px 0;
}

.footer-content button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #000; /* 👈 Black button */
  color: #fff; /* 👈 White text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer-content button:hover {
  background-color: #333;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2em;
    bottom: 160px;
  }

  #inquire-button {
    bottom: 100px;
    font-size: 0.8em;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    left: 0;
    padding: 10px;
  }

  .sweet-pic img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content {
    padding-left: 0;
    margin-top: 20px;
  }

  .footer-image img {
    width: 100%;
    max-width: 300px;
  }
}
