/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #000;
  background: #f8f9fa;
  transition: background 0.3s ease-in-out;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  color: #000;
  transition: color 0.3s ease-in-out;
}

a {
  text-decoration: none;
  color: #000;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, #333, #000);
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(1px);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease-in-out;
}

header:hover {
  background: rgba(255, 255, 255, 1);
}

header h1 {
  margin: 0;
  font-size: 26px;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  font-weight: bold;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

header nav ul li a:hover {
  color: #007BFF;
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header nav ul {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  header nav ul.active {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  color: #000;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 36px;
  animation: fadeInDown 1s ease-in-out;
}

.hero p {
  font-size: 18px;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about {
  padding: 60px 0;
  background: #f8f9fa;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards;
}

.about-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-content img:hover {
  transform: scale(1.05);
}

.about-content .text {
  flex: 1;
  text-align: center;
}

/* Services Section */
.services {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff, #f8f9fa);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.service-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item i {
  font-size: 45px;
  color: #000;
  margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials {
  padding: 60px 0;
  background: #f8f9fa;
}

.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background: #fff;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.contact-info {
  text-align: center;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-info i {
  margin-right: 10px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact form input,
.contact form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.contact form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact form button {
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact form button:hover {
  background: #333;
  transform: translateY(-3px);
}

.contact form button:active {
  transform: translateY(0);
}

/* Footer */
footer {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #ccc;
}

.social-media a {
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.social-media a:hover {
  color: #007BFF;
  transform: scale(1.2);
}

footer p {
  margin: 10px 0;
}