/* =========================
   Hero Section Slider
========================= */
/* ---------- Slider CSS ---------- */
:root {
  --slider-height: 100vh;   /* Full viewport height */
  --fade-ms: 1000ms;        /* KEEP this in sync with JS fadeDuration if you change */
  --dot-size: 12px;
}

body {
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:#f4f4f4;
}

.hero {
  width:100%;
  height:var(--slider-height);
  margin:0;
  border-radius:0;
  box-shadow:none;
  overflow:hidden;
  background:#000;
}

.slider {
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.slide {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  transition: opacity var(--fade-ms) ease-in-out;
  will-change: opacity;
  z-index:1;
  pointer-events:none;
}

.slide.active {
  opacity:1;
  z-index:2;
  pointer-events:auto;
}

.slide img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  user-select:none;
}

/* Text overlay per slide */
.hero-text {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#fff;
  text-align:center;
  background: rgba(0,0,0,0.45);
  padding:20px 28px;
  border-radius:10px;
  max-width:85%;
  box-sizing:border-box;
  opacity:0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.slide.active .hero-text {
  opacity:1;
  transform:translate(-50%,-50%) translateY(0);
}

.hero-text h1 {
  margin:0 0 8px 0;
  font-size:42px;
  line-height:1.1;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.hero-text p {
  margin:0 0 14px 0;
  font-size:18px;
  color:#eee;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-button {
  display:inline-block;
  background:#1F1A17;
  color:#fff;
  padding:12px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:700;
}
.cta-button:hover {
  background:#E7791D;
}

/* Arrows */
.arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:rgba(0,0,0,0.45);
  color:#fff;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:6;
  transition: background .2s ease;
}
.arrow:hover { background:rgba(0,0,0,0.65); }
.arrow.prev { left:20px; }
.arrow.next { right:20px; }
.arrow:focus { outline:2px solid rgba(231,121,29,0.8); }

/* Dots */
.dots {
  position:absolute;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  z-index:7;
}
.dot {
  width:var(--dot-size);
  height:var(--dot-size);
  border-radius:50%;
  background:rgba(255,255,255,0.45);
  border:0;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease;
}
.dot:hover { transform:scale(1.2); }
.dot.active { background: #E7791D; }

/* Responsive */
@media (max-width: 900px) {
  :root { --slider-height: 70vh; }
  .hero-text h1 { font-size:32px; }
  .hero-text p { font-size:16px; }
}
@media (max-width: 600px) {
  :root { --slider-height: 55vh; }
  .hero-text { padding:14px 16px; max-width:92%; }
  .hero-text h1 { font-size:22px; }
  .hero-text p { font-size:14px; }
  .arrow { width:38px; height:38px; }
}






.after-slider-heading {
  text-align: center;
  padding: 60px 20px;
  background: #fff;  /* or keep transparent if you want */
}

.after-slider-heading h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  text-transform: uppercase;
}

.after-slider-heading .highlight {
  color: #E7791D;   /* brand orange */
}

@media (max-width: 768px) {
  .after-slider-heading h1 {
    font-size: 28px;
  }
}












/* Product Intro */
.product-intro {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
}
.product-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}
.product-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Product Showcase */
.product-showcase {
  width: 100%;
  max-width: 1200px;   /* boxed layout */
  margin: 0 auto;
  padding: 60px 20px;
}

.product-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;            /* more spacing between image & text */
  margin-bottom: 80px;  /* more breathing space */
}

.product-block.reverse {
  flex-direction: row-reverse;
}

.product-image {
  flex: 1;
}
.product-image img {
  width: 100%;
  height: 450px;         /* consistent height */
  object-fit: cover;     /* crop nicely */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.product-image img:hover {
  transform: scale(1.05); /* hover zoom effect */
}

.product-details {
  flex: 1;
}
.product-details h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}
.product-details p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Learn More Button */
.learn-more {
  display: inline-block;
  padding: 12px 24px;
  background: #E7791D;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.learn-more:hover {
  background: #c05d14;
}

/* Responsive */
@media (max-width: 768px) {
  .product-block,
  .product-block.reverse {
    flex-direction: column;
    text-align: center;
  }
  .product-image img {
    height: 300px; /* smaller on mobile */
  }
}

}

/* Responsive */
@media (max-width: 768px) {
  .product-block, .product-block.reverse {
    flex-direction: column;
    text-align: center;
  }
  .product-image img {
    max-width: 100%;
  }
}

























/* =========================
   Product Categories
========================= */
.product-categories {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.product-categories h2 {
    color: #1F1A17;
    font-size: 32px;
    margin-bottom: 40px;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.category-card {
    background-color: #fff;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px;
    color: #1F1A17;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

/* =========================
   About Us
========================= */
.about-us {
    padding: 60px 20px;
    text-align: center;
    background-color: #e0f2f1;
}

.about-us h2 {
    color: #1F1A17;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-us p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 18px;
}

/* =========================
   Contact Information
========================= */
.contact-info {
    padding: 60px 20px;
    text-align: center;
    background-color: #1F1A17;
    color: white;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* =========================
   Navbar
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1F1A17;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

/* Normal Links */
.nav-links li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover Links */
.nav-links li a:hover {
    color: #E7791D;
}

/* Active Page Highlight */
.nav-links li a.active {
    color: #E7791D;
}

/* =========================
   Dropdown
========================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1F1A17;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
}

/* Hover on Dropdown */
.dropdown-menu li a:hover {
    background: #E7791D;
    color: #fff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* =========================
   Hamburger Menu (Mobile)
========================= */
.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #1F1A17;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* =========================
   Footer
========================= */
footer {
    background: #1F1A17;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

footer a {
    color: #E7791D;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}



.slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slick-prev, .slick-next {
  z-index: 1000;
}


.site-footer {
  background: #1F1A17;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #E7791D; /* Highlighted heading */
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.certifications {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.certifications img {
  width: 60px;
  height: auto;
  border-radius: 4px;
  background: #fff;
  padding: 4px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .certifications {
    justify-content: center;
  }
}


