* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html{
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  line-height: 1.8rem;
  font-weight: 400;
  color: #333;
  background: #f9f9f9;
}

h2 {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: bold;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #333;
}

h3{
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #444;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slider-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero-slide-text {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 800px;
}
.hero-slide-text h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  margin-bottom: 2rem;
}
.hero-slide-text h3 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
}
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none; /* allows clicks to pass through except the buttons */
}
.slider-controls button {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.4);
  color: #f9f9f9;
  border: none;
  font-size: 2rem;
  font-weight: 100; /* Very light */
  padding: 0.2rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  font-family: Arial, sans-serif; /* Use a cleaner, thinner font */
}
.image-attribution {
  position: absolute;
  bottom: 10px;
  right: 20px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 10px;
}
.image-attribution a {
  color: white;
  text-decoration: none;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline.hero-cta {
  display: inline-block;
  background-color: darkred;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.5s ease, transform 0.5s ease;
}

/* Products */

.products {
  padding: 3rem 1rem;
  background: #f9f9f9;
  text-align: center;
}
.product-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-icon {
  font-size: 2.5rem;
  color: darkred;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #3b0000;
}

.product-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: center;
}


/* Process Section */
.process {
  background-color: #f9f9f9;
  text-align: left;
  background: #fff;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.process-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}
.process h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
  color: #3b0000;
}

.process-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.process-list li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: darkred;
  color: white;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 1rem;
}


/* Testimonials */
.testimonials {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}
blockquote {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
  background: #fff;
  padding: 2.5rem 2rem 2.5rem 3rem;
  border: 1px solid darkred;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto;
  color: #444;
  text-align: left;
}
blockquote::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #d10000;
  opacity: 0.2;
  line-height: 1;
}
blockquote::after {
  content: "”";
  position: absolute;
  bottom: 20px;
  right: 20px;
  top: 100px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #d10000;
  opacity: 0.2;
  line-height: 1;
}
blockquote strong {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-left: 1rem;
  color: #111;
}
blockquote footer {
  display: block;
  margin-left: 15rem;
  font-size: 0.95rem;
  font-style: italic;
  color: #555;
  background: none;
}


/* FAQs */
.faqs {
  background: #fff;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #e0e0e0;
}
.faq {
  width: 100%;
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 1.2rem;
  border: 1px solid darkred;
  border-radius: 10px;
  background: #f9f9f9;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.faq:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.163);
}
.faq-toggle {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
  color: #333;
  transition: transform 0.3s ease;
}
.faq-toggle:hover {
  transform: scale(1.005);
}
.faq-content {
  padding: 0 1.5rem;
  font-size: 1.1rem;
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #444;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease,
    transform 0.5s ease;
}
.faq.open .faq-content {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1rem;
  font-size: 1rem;
}

.faq .faq-content a {
  text-decoration: none;
  color: darkred;
}


/* Contact */
.contact {
  padding: 3rem 1rem;
  background: linear-gradient(to top, #0f0f0f, #7b0000);
  color: #fff;
}
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}
.contact h2 {
  margin-bottom: 3rem;
  color: #fff;
  margin-left: 3rem; /* aligns heading with the contact-grid content */
}
.contact-grid {
  display: flex;
  justify-content: flex-start; /* align items to left */
  flex-wrap: wrap;
  gap: 5rem;
  margin-left: 3rem; /* same as h2 for alignment */
}
.contact-grid-col-sm {
  flex: 1;
}
.contact-grid-col-md {
  flex: 2;
}
.contact-grid-col-lg {
  flex: 3;
}
.contact-grid a {
  color: #fff;
  text-decoration: none;
  line-height: 2;
}
iframe {
  border: solid 2px darkred;
  border-radius: 10px;
}

footer{
  background: #0f0f0f;
  color: #fff;
}

.footer-container {
  text-align: center;
  margin: 0 auto;
  max-width: 1000px;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
}

footer p {
  flex: 1;
  margin: 0 1rem;
  font-size: 0.9rem;
}
footer p a {
  color: #fff;
  text-decoration: none;
}
hr {
  border: none;
  border-top: 1px solid #414141;
}

.cta-section {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center; 
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.cta-container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #3b0000;
}

.cta-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 25px;
}

.cta-section .btn-primary:hover {
  background-color: #a30000 !important;
}




/* Vision / Mission */
.company-profile {
  padding: 5rem 1.5rem 2rem 1.5rem;
  max-width: 890px;
  margin: 0 auto;
}

.company-profile h2 {
  margin-bottom: 3rem;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 1rem auto;
}

.vision-mission .box {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
}

.vision-mission .box h2 {
  font-family: 'Roboto', sans-serif;
}

.justified {
  text-align: justify;
  line-height: 1.6;
  color: #333;
  font-size: 1.05rem;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
}

.about-hero {
  height: 50vh;
  width: 100%;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  object-fit: cover;
  display: block;
}



@media screen and (max-width: 768px) {
    .about-hero {
    height: 25vh;        /* or try height: auto; */
    width: 100%;
    overflow: hidden;
  }

  .about-hero img {
    height: 100%;        /* fill the container’s 25vh */
    width: 100%;
    object-fit: cover;
    object-position: left;
    display: block;
  }

  /* Optional: tighten spacing below hero on mobile */
  .company-profile {
    padding: 2rem 2rem 2rem;
  }
  .company-profile h2 {
    margin-top: 15px;        /* avoid extra top gap on some UAs */
    margin-bottom: 1.5rem;
  }

  /* Your vertical stacking for vision/mission */
  .vision-mission {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
  }
  .vision-mission .box {
    width: 100%;
    display: block;
  }
  
  .hero-slider {
    height: 60vh;
  }
  .hero-slide-text{
    padding: 0rem 5rem;
  }
  .hero-slide-text h1 {
    font-size: 2.5rem;
  }
  .hero-slide-text h3 {
    font-size: 1.2rem;
  }
  .slider-controls button {
    font-size: 1.5rem;
  }

  .product {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 1rem;
  } 

  .products .product-container { 
    align-items: center;
  }
  .products .product-container h2 {
    padding: 0 3rem;
  }
  .products .product-info{
    text-align: left;
    padding: 0 3rem;
  }
  .product.reverse {
    flex-direction: column;
    margin-top: 1rem;
  }
  .product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 1rem 0rem 2rem 0rem;
  }
  .product-info {
    padding: 0;
    margin-top: 0;
    width: 90%;
  }
  .product-info h3 {
    margin-top: 1rem;
  }


  .timeline-step {
    flex-direction: column;
    align-items: center;
    margin-bottom: -3rem;
  }
  .timeline-step.left,
  .timeline-step.right {
    flex-direction: column;
  }
  .timeline-step .content {
    width: 90%;
    text-align: center;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 70px;
    width: 2px;
    height: 75%;
    background-color: transparent;
    transform: translateX(-50%);
    z-index: 0;
  }
  .timeline::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 1;
  }
  .timeline-end {
    content: "";
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 1;
  }
  .timeline-middle {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 1;
  }
  .timeline-step.left .icon {
    margin-left: 0rem;
  }
  .timeline-step.right .icon {
    margin-right: 0rem;
  }
  .timeline-step .icon {
    margin: 2rem 0;
  }


  .testimonials h2 {
    font-size: 1.5rem;
  }
  blockquote {
    font-size: 1rem;
    padding: 2rem 1.5rem;
  }
  blockquote::before {
    font-size: 3rem;
    left: 15px;
  }
  blockquote::after {
    font-size: 3rem;
    right: 15px;
    top: 160px;
  }
  blockquote strong {
    font-size: 1.1rem;
  }
  blockquote footer {
    margin-left: 0;
    font-size: 0.9rem;
  }


  .faq {
    width: 90%;
  }
  .faq-toggle {
    font-size: 1rem;
  }
  .contact h2 {
    text-align: center;
    transform: translateX(-20px);
  }
  .contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    gap: 2rem;
    text-align: center;
  }
  .contact-grid-col-md,
  .contact-grid-col-sm,
  .contact-grid-col-lg {
    width: 100%;
  }
  .contact-grid iframe {
    width: 100%;
    height: 200px;
  }


  footer p a {
    color: #fff;
    text-decoration: none;
  }


  .hero {
    padding: 80px 15px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .btn-outline {
    width: 100%;
    max-width: 200px;
  }
}