body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #111;
  color: #fff;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.topbar {
  background: #000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(255, 0, 0, 0.3);
}

.topbar .logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  color: red;
}

.topbar nav {
  float: right;
}

.topbar nav a {
  text-decoration: none;
  color: white;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.topbar nav a:hover {
  color: red;
}

.hero {
  background: url('photos/pexels-marviio-15641049.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 60px 20px;
  border-radius: 8px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: red;
}

.service-cards, .testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card, .testimonial {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: #aaa;
}

form {
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #000;
  border: 1px solid red;
  color: #fff;
  border-radius: 4px;
}

form button {
  background: red;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

form button:hover {
  background: darkred;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

/* Slideshow styles */
.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
}

.img-wrapper {
  overflow: hidden;
  border-radius: 10px;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease-in-out;
  object-fit: cover;
}

.img-wrapper:hover img {
  transform: scale(1.1);
}

/* Optional: navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  color: black;
  font-weight: bold;
  font-size: 22px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.7);
  user-select: none;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background: rgba(255, 0, 0, 0.8);
  color: white;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.caption {
  text-align: center;
  padding: 10px;
  font-weight: bold;
  color: red;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(255, 0, 0, 0.5);
  user-select: none;
  border-radius: 0 3px 3px 0;
  transition: 0.3s;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(255, 0, 0, 0.8);
}

.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #111;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.info-item i {
  color: red;
  font-size: 1.2rem;
}

.info-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.info-item:hover {
  background: #222;
}
