@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');


:root {
  --brand-red: #d32f2f;
  --brand-white: #ffffff;
  --brand-gray: #f5f5f5;
  --transition-speed: 0.3s;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background: var(--brand-white);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

/* ===== HEADER STRUCTURE ===== */
.site-header {
  background-color: #c9302c;
  color: white;
  height: 150px;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.header-logo {
  height: 50px;
  width: auto;
}

.social-icons {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: black;
}

.site-title {
  font-size: 3rem;
  text-align: center;
  margin-top: -30px; /* Negative value moves it up */
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: black;
}


/* Hamburger menu button - hidden by default on desktop */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile navigation styles */
.main-nav {
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: -0.3rem 0 0;
}

.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #ffe6e6;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}


.main-nav a:hover {
  color: black;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #c9302c;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 80px 0 0 0;
    transition: right 0.3s ease;
    z-index: 5;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }
  
  .nav-menu a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  /* Hamburger animation when active */
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 60vh;
  background: url('../images/herobackground.png') center center / cover no-repeat;
  padding: 5rem 0;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-logo {
  position: relative;
  width: 200px;
  animation: popIn 0.8s ease-out forwards;
  opacity: 0;
}

.hero-cta {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform var(--transition-speed);
}

.btn:hover {
  transform: scale(1.05);
}

.btn.primary {
  background: var(--brand-red);
  color: var(--brand-white);
}

.btn.secondary {
  background: var(--brand-white);
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===== SLIDER ===== */
.slider-container.container {
  max-width: 800px;
  margin: 2rem auto;
}

.slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}


.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.2rem 0.6rem;
  z-index: 5;
  pointer-events: auto;
}

.slide-btn:hover {
  background: var(--brand-red);
  color: var(--brand-white);
}

.prev { left: 1rem; }
.next { right: 1rem; }

/* ===== FAQ ===== */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--brand-gray);
}

.question {
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color var(--transition-speed);
}

.question:hover {
  color: var(--brand-red);
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed);
}

.faq-item.open .answer {
  max-height: 200px;
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* ===== REVIEWS PLACEHOLDER ===== */
.google-reviews-placeholder {
  background: var(--brand-gray);
  padding: 2rem;
  text-align: center;
  border-radius: 4px;
  margin-top: 1rem;
}
body {
  font-family: 'Poppins', sans-serif;
}
/* ---- FAQ Section Styling ---- */
.faq {
  background: #fff;
  padding: 3rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  font-family: 'Montserrat', sans-serif;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s;
}

.question:hover {
  color: #c9302c;
}

.question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1.2rem;
  color: #c9302c;
  transition: transform 0.3s;
}

.faq-item.open .question::after {
  content: '-';
  transform: rotate(180deg);
}

.answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 1rem;
  color: #555;
  font-family: 'Montserrat', sans-serif;
  padding-top: 0.5rem;
}

.faq-item.open .answer {
  max-height: 500px;
  opacity: 1;
}
.faq-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1rem;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #eee;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  font-weight: bold;
  color: #c9302c;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
  color: #333;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 1rem;
}
.reviews-section {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
}

.reviews-heading {
  font-size: 2rem;
  color: #c9302c;
  margin-bottom: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.google-icon {
  width: 30px;
  height: 30px;
}

.stars {
  color: gold;
  font-size: 1.5rem;
}

.review-text {
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: bold;
  color: #555;
}

.leave-review-box {
  background: #c9302c;
  padding: 1.5rem;
  border-radius: 10px;
  color: white;
  max-width: 600px;
  margin: 2rem auto 0;
}

.leave-review-box p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.leave-review {
  background: white;
  color: #c9302c;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.leave-review:hover {
  background: #ddd;
}
.testimonial-slider {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-family: sans-serif;
  position: relative;
  overflow: hidden;
}
.testimonial {
  display: none;
  text-align: center;
  animation: fade 0.5s ease-in-out forwards;
}
.testimonial.active {
  display: block;
}
.testimonial-stars {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 10px;
}
.testimonial-text {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 10px;
}
.testimonial-author {
  font-weight: bold;
}
.testimonial-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.testimonial-nav button {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #444;
  transition: color 0.3s ease;
}
.testimonial-nav button:hover {
  color: #000;
}
@keyframes fade {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.testimonial-slider {
  max-width: 850px;
  margin: 60px auto;
  padding: 30px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.testimonial-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
}

.testimonial-subheading {
  margin-bottom: 30px;
  font-size: 16px;
  color: #444;
}
.testimonial-subheading a {
  color: #007bff;
  text-decoration: underline;
}

.testimonial {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  font-size: 18px;
  margin: 10px auto 10px;
  max-width: 80%;
  color: #333;
}

.testimonial-author {
  font-weight: bold;
  color: #333;
}

.testimonial-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 20px;
}

.testimonial-nav button {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #444;
  transition: color 0.3s ease;
}

.testimonial-nav button:hover {
  color: #000;
}

@keyframes fade {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.testimonial-slider {
  max-width: 850px;
  margin: 60px auto;
  padding: 30px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.testimonial-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
}

.testimonial-subheading {
  margin-bottom: 30px;
  font-size: 16px;
  color: #444;
}
.testimonial-subheading a {
  color: #007bff;
  text-decoration: underline;
}

.testimonial {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  font-size: 18px;
  margin: 10px auto 10px;
  max-width: 80%;
  color: #333;
}

.testimonial-author {
  font-weight: bold;
  color: #333;
}

.testimonial-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 20px;
}

.testimonial-nav button {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #444;
  transition: color 0.3s ease;
}

.testimonial-nav button:hover {
  color: #000;
}

@keyframes fade {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.materials-section {
  padding: 2rem 1rem;
  text-align: center;
}

.materials-section .intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.material-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.material-card:hover {
  transform: translateY(-5px);
}

.material-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.material-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.25rem;
}

.material-card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #444;
}
.gallery.container {
  padding: 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
.about-projects {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 4rem 1rem;
}


.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-bullets {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.about-bullets li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.about-bullets i {
  color: var(--brand-red, #e63946);
  margin-right: 0.5rem;
}

.about-slider {
  flex: 1 1 450px;
  max-width: 600px; /* up from 500px */
}


.slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%; /* taller slider */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


.slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity 0.5s ease-in-out;
}

}

.slider img.active {
  opacity: 1;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

