/* Reset or basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
  }
  
  /* Container used elsewhere (if needed) */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  /* ---------- NAVBAR (Logo + Text) ---------- */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: center;  /* center everything horizontally */
    background-color: orange;
    padding: 10px 20px;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* space between the image and text */
  }
  
  .nav-logo {
    max-height: 60px;
    width: auto; 
    border-radius: 10px;
  }
  
  /* Striped text styling: black with diagonal yellow stripes */
  .text-logo {
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
  
    /* Repeating pattern of black/yellow stripes for diagonal effect */
    background: repeating-linear-gradient(
      -45deg,
      rgb(255, 0, 0) 0,
      hwb(0 0% 0%) 10px,
      ORANGE 10px,
      orange 12px
    );
  
    /* WebKit-prefixed properties */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    /* Standard properties (for linting & future compatibility) */
    background-clip: text;
    color: transparent;
  }
  
  /* ---------- MARQUEE BAR ---------- */
  .marquee-bar {
    width: 100%;
    overflow: hidden;
    background-color: red;
    box-sizing: border-box;
    height: 30px;
  }
  
  .marquee-content {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
  }
  
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  
  /* ---------- HERO SECTION ---------- */
  .hero {
    background: url('../Images/largeshow.png') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative; /* sits above overlay */
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  /* ---------- CALL BANNER ---------- */
  .call-banner {
    background-color: black;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
    position: relative;
    border: 4px solid #FFD700; /* gold border for extra contrast */
    animation: pulse 1.5s infinite; /* optional: can remove if you prefer */
  }
  
  .phone-number {
    font-size: 36px;
    color: #FFD700; /* bright gold text for visibility */
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .call-note {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(0.95); }
    50%      { transform: scale(1); }
  }
  
  /* ---------- COMBINED ORANGE CONTAINER ---------- */
  .combined-container {
    background-color: orange;
    border-radius: 20px;
    padding: 30px;
    margin: 20px auto;  /* space around container */
    max-width: 1200px;
    color: white;
  }
  
  .welcome-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
  }
  
  .cards-container {
    display: flex;
    flex-wrap: wrap; /* wrap on smaller screens */
    justify-content: space-between;
    gap: 20px; /* optional spacing between cards */
  }
  
  .card {
    background-color: #000; /* black background card */
    border-radius: 10px;
    width: 32%; /* roughly 3 across on desktop */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .service-list li {
    margin-bottom: 8px;
    position: relative;
    font-size: 16px;
    font-weight: bold;
  }
  
  .service-list li::before {
    content: "★";   
    color: orange;
    margin-right: 6px;
  }
  
  /* ---------- REVIEWS SECTION ---------- */
  /* Map Section */
.map-section {
  background-color: black;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.map-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Review Images Row */
.review-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.review-images img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.review-images .review-large {
  width: 200px;
  height: auto;
}

.review-images .review-small {
  width: 150px;
  height: auto;
}

.reviews-section {
  background-color: black;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.reviews-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

/* Review Images Row */
.review-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allow wrapping for mobile */
}

.review-images a {
  display: inline-block;
  text-decoration: none;
}

/* Larger Images with Hover Effect */
.review-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-image:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.review-image:active {
  transform: scale(1.05); 
}

  
.stars {
  font-size: 50px;
  color: #FFD700; /* Gold color for the stars */
  letter-spacing: 5px;
  margin-top: 20px;
}
  
  .review {
    margin: 20px 0;
    color: white;
  }
  
  .review .stars {
    font-size: 20px;
    letter-spacing: 3px;
  }
  
  .review p {
    font-size: 18px;
    color: #FFD700;
  }
  /* Map Section Fix */
  .map-section {
    background-color: black;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .map-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
  }
  
  .map-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    background-color: orange;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
  }
  
  .created-by {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.8;
  }
  
  .footer-link {
    color: white;
    text-decoration: none;
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }


  iframe {
    width: 80%; 
    height: 500px; 
    border: 0;
    max-width: 100%;
  }
  
html, body {
  overflow-x: hidden; 
}
  
  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 768px) {
    /* Make logo + text stack on mobile */
    .navbar {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
  
    .text-logo {
      font-size: 1.2rem; 
      text-align: center;
    }
  
    .cards-container {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 80%; /* full width on smaller screens */
      margin: 0 0 20px 0;
    }
      /* Stack review images vertically */
  .review-images {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adjust spacing between stacked images */
  }

  .review-image {
    width: 80%; /* Make images larger in mobile view */
  }

  /* Fix map layout for small screens */
  .map-container iframe {
    width: 100%;
    height: 400px;
  }
  }
  