* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #6b7280;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: url('images/Shotbyseyi/IMG-20250712-WA0046.jpg') no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
  animation: fadeIn 2s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  padding: 20px;
}

.hero-image {
  width: 400px;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

.hero-text {
  text-align: left;
  max-width: 500px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span {
  color: #f1c40f;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.5rem;
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.cta-button {
  padding: 15px 30px;
  background-color: #1f2937;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid #fff;
}

.cta-button:hover {
  background-color: #374151;
  transform: translateY(-3px);
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.services, .about, .testimonial, .gallery, .contact {
  padding: 60px 20px;
  text-align: center;
}

.services h2, .about h2, .testimonial h2, .gallery h2, .contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services p, .gallery p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 15px;
}

.service-link {
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
}

.service-link:hover {
  color: #6b7280;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content img {
  width: 40%;
  border-radius: 10px;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  gap: 20px;
}

.stats div {
  font-size: 1.2rem;
}

.stats span {
  font-weight: 600;
  color: #1f2937;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: #6b7280;
  margin-bottom: 20px;
}

.testimonial-images {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.testimonial-images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact textarea {
  height: 150px;
}

.contact button {
  padding: 10px;
  background-color: #1f2937;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact button:hover {
  background-color: #374151;
}

.social-links {
  margin-top: 30px;
}

.social-links h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #333;
  font-size: 1.8rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #1f2937;
  transform: scale(1.2);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile (up to 576px) */
@media (max-width: 576px) {
  .navbar {
    padding: 10px;
    flex-direction: column;
    text-align: center;
  }
  .logo {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 8px;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .hero {
    height: 70vh;
    padding: 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .hero-content {
    flex-direction: column;
    gap: 15px;
  }
  .hero-image {
    width: 100%;
    height: auto;
    max-height: 250px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .services h2, .about h2, .testimonial h2, .gallery h2, .contact h2 {
    font-size: 1.8rem;
  }
  .services p, .gallery p {
    font-size: 0.95rem;
  }
  .services-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .service-card img, .gallery-img {
    height: 150px;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-content img {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .stats {
    flex-direction: column;
    gap: 10px;
  }
  .stats div {
    font-size: 1rem;
  }
  .testimonial-content p {
    font-size: 1rem;
  }
  .testimonial-images img {
    width: 60px;
    height: 60px;
  }
  .contact form {
    max-width: 100%;
  }
  .contact input, .contact textarea {
    font-size: 0.9rem;
  }
  .social-links h3 {
    font-size: 1.2rem;
  }
  .social-icons {
    gap: 12px;
  }
  .social-icons a {
    font-size: 1.4rem;
  }
}

/* Tablet (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .navbar {
    padding: 15px;
  }
  .nav-links {
    gap: 12px;
  }
  .hero {
    height: 80vh;
    padding: 15px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-content {
    flex-direction: column;
    gap: 25px;
  }
  .hero-image {
    width: 80%;
    height: auto;
    max-height: 350px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .cta-button {
    width: auto;
    padding: 12px 25px;
  }
  .services-grid, .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .service-card img, .gallery-img {
    height: 180px;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-content img {
    width: 100%;
    margin-bottom: 25px;
  }
  .stats {
    justify-content: center;
  }
  .testimonial-images img {
    width: 80px;
    height: 80px;
  }
  .contact form {
    max-width: 400px;
  }
}

/* Desktop (769px and above) */
@media (min-width: 769px) {
  .navbar {
    padding: 20px 30px;
  }
  .nav-links {
    gap: 20px;
  }
  .hero-content {
    gap: 40px;
  }
  .hero-image {
    width: 350px;
    height: 500px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
  .services-grid, .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .about-content {
    gap: 40px;
  }
  .about-content img {
    width: 45%;
  }
  .contact form {
    max-width: 450px;
  }
}

/* Large Desktop (above 1200px) */
@media (min-width: 1201px) {
  .navbar {
    padding: 25px 50px;
  }
  .nav-links {
    gap: 25px;
  }
  .hero-content {
    gap: 60px;
  }
  .hero-image {
    width: 400px;
    height: 600px;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
  .hero p {
    font-size: 1.7rem;
  }
  .services-grid, .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .service-card img, .gallery-img {
    height: 250px;
  }
  .about-content {
    gap: 60px;
  }
  .about-content img {
    width: 40%;
  }
  .contact form {
    max-width: 500px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}