﻿    body {
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
      text-align: center;
    }

    header, footer {
      background-color: #1e1e1e;
      color: white;
      padding: 1rem 0;
    }

    h1, h2 {
      color: #c62828;
      margin: 0.5rem 0;
    }

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

    a:hover {
      text-decoration: underline;
    }

    nav {
      background-color: #333;
      padding: 0.5rem 0;
    }

    nav a {
      color: white;
      margin: 0 1rem;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }
    /* Carousel / Slider */
.carousel-container {
  position: relative;
  width: 300px;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-container button:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-slide {
  display: flex !important;
  flex-wrap: nowrap !important;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  flex: 0 0 100% !important;
    height: auto;
    max-width: 100%;
  height: 500px;
  object-fit: cover;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

/* CTA Overlay */
.cta-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(198, 40, 40, 0.85);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.cta-overlay a {
  color: #fff;
  text-decoration: underline;
}

.cta-overlay.active-animation {
  animation: fadeInUp 1s ease forwards;
}
.cta {
  background-color: #c62828; /* deep red */
  color: #ffffff;            /* white text */
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  border-radius: 8px;
  border: 2px solid #0f172a; /* dark accent border */
  font-size: 1.1em;
}

.cta a {
  color: #ffffff;            /* white links */
  text-decoration: underline;
}

.cta a:hover {
  color: #ffd700;            /* optional gold hover for emphasis */
}
.cta, 
.cta h2, 
.cta p, 
.cta a {
  color: #ffffff;  /* ensures all headings, paragraphs, and links are white */
}
    /* Dropdown */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-btn {
      color: white;
      font-weight: bold;
      padding: 0.5rem 1rem;
      display: inline-block;
      cursor: pointer;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #333;
      min-width: 180px;
      z-index: 999;
      border-radius: 4px;
      text-align: left;
    }

    .dropdown-content a {
      color: white;
      padding: 0.5rem 1rem;
      display: block;
      text-decoration: none;
      font-weight: normal;
    }

    .dropdown-content a:hover {
      background-color: #444;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .container {
      padding: 1rem;
      max-width: 960px;
      margin: 0 auto;
    }
    .formsite-wrapper {
  max-width: 600px;
  margin: 1rem auto;
}
    .gallery-vertical {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
    }

    .gallery-vertical img {
      width: 300px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .review {
      background-color: #fff;
      margin: 1rem auto;
      padding: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      max-width: 800px;
      text-align: left;
    }

    footer p {
      margin: 0;
      font-size: 0.9rem;
    }
    .video-container {
  position: relative;
  width: 100%;
  max-width: 720px; /* optional max width */
  margin: 0 auto; /* center */
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


#backToTop {
  opacity: 0; /* invisible initially */
  display: block; /* always block for JS fade */
position: fixed;
  bottom: 30px;
  right: 30px;
   z-index: 100;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
   font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;

}

#backToTop:hover {
  background-color: #444;
  transform: scale(1.1);
}
