
:root {
  --blue: #0b2a3e;
  --gold: #c6a564;
  --light: #f6f5f2;
}



body {
  font-family: "Montserrat", sans-serif;
  background: var(--light);
  color: var(--blue);
}

.hero {
  background: url("images/company.jpg") center/cover no-repeat;
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative; 
}

.hero .inner {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.btn {
  background: var(--gold);
  color: var(--blue);
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 80px 10%;
  text-align: center;
}
section h2 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 20px;
}
section p {
  max-width: 800px;
  margin: 0 auto 25px;
}
/* Services */
/* === Services Section === */

/* ============================
   SERVICES HERO HEADER
============================ */


.services-hero-content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-hero-content p {
  color: #ececec;
  font-size: 1.2rem;
}


/* ===== SERVICES HEADER ===== */
.services-header {
  width: 100%;
  height: 320px; /* Match products hero height */
  background: url("images/services-header.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0; /* remove padding so height stays consistent */
  color: white;
  position: relative;
  top: -20px; /* Match the same navbar offset as products */
}


.services-header h2 {
  font-size: 3.2rem;
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 1.2rem;
  max-width: 700px;
  opacity: 0.9;
}

.services-section {
  text-align: center;
  padding: 80px 10%;
  background: #f7f7f7;
}

.services-header {
  margin-bottom: 50px;
}

.section-subtitle {
  color:#f2531f;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0b2a3e;
  line-height: 1.2;
  margin: 15px 0;
}

.section-line {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: #c6a564;
  margin-top: 10px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info {
  padding: 20px;
  text-align: left;
}

.service-info .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-info h3 {
  font-weight: 700;
  color: #0b2a3e;
  margin-bottom: 5px;
}

.service-info p {
  font-size: 0.9rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Color accents */
.service-card.blue .icon { color: #007bff; }
.service-card.orange .icon { color: #f2531f; }
.service-card.green .icon { color: #00a86b; }

/* --- Slider --- */
/* --- Services Slider (Fixed Layout) --- */
.services-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  min-height: 420px; /* keep height consistent */
}

/* Stack all slides on top of each other */
.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.slides.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

/* Control area below */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  font-weight: 600;
  color: #0b2a3e;
}

.slider-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0b2a3e;
  cursor: pointer;
  transition: color 0.3s ease;
}

.slider-controls button:hover {
  color: #c6a564;
}

#pagination b {
  color: #c6a564;
  font-weight: 700;
}

/* Gallery */
    /* GALLERY SECTION */
    #gallery {
      padding: 80px 10%;
      background-color: #f8f9fa;
      text-align: center;
    }

    #gallery h2 {
      font-size: 2.2rem;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #0a2342;
      letter-spacing: 1px;
    }

    #gallery p.subtitle {
      font-size: 1rem;
      color: #666;
      margin-bottom: 40px;
    }

    /* Filter Buttons */
    .filter-bar {
      margin-bottom: 40px;
    }

    .filter-btn {
      background: none;
      border: 2px solid #0a2342;
      color: #0a2342;
      padding: 8px 18px;
      margin: 5px;
      cursor: pointer;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: #0a2342;
      color: #fff;
    }

    /* Gallery Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.03);
    }

    .gallery-item img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
      filter: brightness(70%);
    }

    .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 15px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .gallery-item:hover .caption {
      opacity: 1;
      transform: translateY(0);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
    }

    .lightbox img {
      width: 80%;
      max-width: 900px;
      border-radius: 8px;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox:after {
      content: "×";
      position: absolute;
      top: 20px;
      right: 40px;
      color: #fff;
      font-size: 40px;
      cursor: pointer;
    }
  
/* Footer */
footer {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 20px 10px;
  position: relative;
  z-index: 10;
}
footer img { height: 40px; margin-bottom: 10px; }


.socials a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

.socials a:hover {
  text-decoration: underline;
}


/* Subtle animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ====== NAVBAR (Indus-Style) ====== */
.navbar {
  width: 100%;
  background: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8%;
}

/* ===== Logo + Name ===== */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-area img {
  height: 110px; /* clean & consistent */
}


.logo-area img:hover {
  transform: scale(1.05);
}

/* Company Name Next to Logo */
.company-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.company-name h1 {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), #f7e8b1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif; /* add this for consistency */
}

.company-name span {
  font-size: 0.85rem;
  color: #ddd;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif; /* same font family */
}

/* ===== Nav Links ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  font-size: 1.2rem;
    border: none;
  outline: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  content: none !important;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ---------- CONTACT PAGE ---------- */
/* Hero section */

.contact-hero {
  position: relative;
  height: 320px;
  background: url('images/contact-header.jpg') no-repeat center/cover;
  margin-top: 0;
  padding-top: 0;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* THIS IS THE IMPORTANT PART */
.contact-hero .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.contact-hero h2 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

/* Info boxes */
.contact-info {
  text-align: center;
  padding: 70px 20px;
}
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0b2a3e;
}
.info-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.info-card {
  background: #fff;
  padding: 30px;
  width: 310px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
}
.info-card .icon {
  font-size: 2rem;
  background: #ffe7e0;
  color: #c6a564;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card h3 {
  font-weight: 700;
  color: #0b2a3e;
  margin-bottom: 10px;
}
.info-card p, .info-card a {
  color: #333;
  font-size: 0.95rem;
}

/* Google Map */
.contact-map iframe {
  width: 90%;
  height: 450px;
  border: none;
  border-radius: 15px;
  display: block;
  margin: 40px auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}


/* Language Switch */
.lang-switch {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lang-switch span:hover {
  color: white;
}
.lang-btn {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--gold);
  color: var(--blue);
  transform: scale(1.05);
}

/* ABOUT PAGE */
/* Hero Section */
.about-hero {
  background: url('images/about-header.jpg') no-repeat center 30%;
  background-size: 110%;   /* smaller = zoomed out, bigger = zoomed in */
  background-position: center 32%;  /* moves image up or down */ 
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  top: -20px; /* same height as your fixed navbar */
}

.about-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}
.about-hero p a {
  color: #f2a93b;
  text-decoration: none;
}

/* Achievements */
.achievements {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}
.achievements h2 {
  color: #0b2a3e;
  margin-bottom: 40px;
}
.achievement-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.achievement-card {
  background: white;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  padding: 30px 20px;
  border-top: 5px solid #f2a93b;
}
.achievement-card h3 {
  font-size: 2rem;
  color: #0b2a3e;
  margin-bottom: 10px;
}
.achievement-card p {
  color: #555;
}

/* Intro */
.about-intro {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:#0b2a3e;
}
.about-content {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.about-image img {
  border-radius: 15px;
  width: 480px;
}
.about-text {
  flex: 1;
}
.about-text .welcome {
  color: #f2531f;
  font-weight: 600;
  font-size: 1.75rem;   
}

.about-text h2 {
  color: #c6a564;
  margin: 10px 0 20px;
  
}
.about-text p {
  color: #ffffff;
  margin-bottom: 15px;
}
.about-text ul {
  list-style: none;
  padding: 0;
  
}
.about-text li {
  margin-bottom: 8px;
  color: #fafafa;
  font-weight: 600;
}

/* Process */
/* Working Process Section */
.working-process {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2a3e;
  margin-bottom: 50px;
}

.process-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

/* Each step is a row: text + image side by side */
.process-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
}

/* Text column */
.process-text {
  flex: 1;
  text-align: left;
}

.process-text h3 {
  font-size: 2.5rem;
  color: #c6a564;
  margin-bottom: 10px;
}

.process-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b2a3e;
  margin-bottom: 10px;
}

.process-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Image column */
.process-img {
  flex: 1;
  text-align: right;
}

.process-img img {
   width: 400px;
  height: 250px;        /* 👈 controls height */
  object-fit: cover;   /* 👈 crops nicely */
  border-radius: 10px;
}

/* Make it responsive */
@media (max-width: 900px) {
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  .process-img {
    text-align: center;
  }
  .process-img img {
    max-width: 100%;
  }
}

/* Skills Section (Industry Skill - navy background) */
/* Industry Skill Section */
.industry-skill {
  background-color: #b0b5b8;
  padding: 80px 0;
}

.skill-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left side (video box) */
.skill-video {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px; /* control the width */
  aspect-ratio: 1 / 1; /* makes it a perfect square */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}



/* Text Side */
.skill-text {
  flex: 1;
  min-width: 320px;
}

.skill-text .section-subtitle {
  color: #f2531f;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
   font-size: 1.75rem;  
}
.skill-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 20px;
  
}
.skill-text p {
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Progress Bars */
.progress-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.progress-item {
  width: 100%;
}
.progress-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 5px;
  
}

.progress-bar div {
  background: #f2a93b;
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width 2s ease-in-out;
}

.progress-bar {
  position: relative;
  height: 8px;
  background: #ccc;
  border-radius: 4px;
  margin-bottom: 35px;
  overflow: visible; /* important: let the percentage bubble show */
}

.progress-bar .bar-fill {
  background: #f2a93b;
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width 2s ease-in-out;
  position: relative;
}

.percent-bubble {
  position: absolute;
  top: -35px;
  left: 0;
  transform: translateX(-50%);
  background: #f2a93b;
  color: #0b2a3e;
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: left 0.1s linear;
}

.percent-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #f2a93b transparent transparent transparent;
}

.process-images img {
  width: 80%;        /* shrink the images */
  max-width: 300px;  /* don’t let them grow too large */
  border-radius: 12px;
  margin: 0 auto;    /* center them */
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center; 
  }
  .skill-container {
    flex-direction: column;
    text-align: center;
  }
  .progress-title {
    justify-content: center;
    gap: 10px;
  }
  .skills-text, .skill-text {
    padding: 40px 20px;
  }
}

.socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  background: #0b2a3e;
  color: #c6a564;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #c6a564;
  color: #0b2a3e;
  transform: scale(1.2);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Play button overlay */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(31, 191, 98, 0.8);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Request a Quote Section */
.quote-section {
  background: linear-gradient(to right, #0b2a3e, #1a3b52);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
}

.quote-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #f9a825;
}

.quote-text p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 40px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  outline: none;
}

textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  resize: none;
  font-size: 1rem;
  outline: none;
}

.quote-btn {
  background: #f9a825;
  color: #0b2a3e;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background: #ffb300;
  transform: translateY(-3px);
}

.btn-highlight {
  background: #f9a825;
  color: #0b2a3e;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn-highlight:hover {
  background: #ffb300;
}

/* ===== CATEGORY TABS ===== */
/* ===== CATEGORY TABS ===== */
/* Tabs */

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;

}
.product-tabs .tab {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
}


.product-tabs .tab {
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;   /* <-- ADD THIS */
}


.product-tabs .tab.active {
  color: #1b1c49;
}

.product-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #1b1c49;
  border-radius: 10px;
}

/* Hide/show content boxes */
.product-tab-content {
  display: none;
}

.product-tab-content.active {
  display: flex;
}
.product-tabs,
.product-tab-content {
  position: relative;
  z-index: 9999;
}


/* ===== FEATURE BOX ===== */

.feature-box {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px 45px;
  /* display: flex;  <-- remove this */
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}


.feature-text {
  flex: 1;
  text-align: left;
}

.feature-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1b1c49;
  margin-bottom: 15px;
}

.feature-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.learn-more {
  color: #1b1c49;
  font-weight: 700;
  text-decoration: none;
}

.learn-more:hover {
  text-decoration: underline;
}

.feature-image img {
  width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .feature-box {
    flex-direction: column;
    text-align: center;
  }
  .feature-text { text-align: center; }
}
/* ========== HOMEPAGE PRODUCTS (FINAL CLEAN VERSION) ========== */
/* ========== HOMEPAGE FULLSCREEN SLIDER (FINAL) ========== */


.products-hero {
  position: relative;
  height: 320px;
  background-image: url("images/products-hero.jpg"); /* your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
   margin-top: 0;       /* reset spacing */
  padding-top: 0;      /* reset spacing */
  position: relative;
  top: -20px; /* same height as your fixed navbar */
}

.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.products-hero-inner {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.products-hero-inner h1 {
  font-size: 3rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}

.products-hero-inner p {
  margin-top: 12px;
  font-size: 1.1rem;
}



.fullscreen-slider {
  position: relative;
  height: calc(100vh - 90px); /* full screen minus navbar */
  display: flex;
  justify-content: center;
  align-items: center;
   padding: 50px 0 150px 0;
}

/* The slider frame */
.hero-slider {
  position: relative;
  width: min(950px, 90vw);
  height: min(550px, 65vh);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

/* Each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Only the active one is visible */
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Background image */
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* Text + button block */
.hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
  max-width: 600px;

}

.hero-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
    color: #f66e33;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

/* Glowing Shop button */
.shop-btn {
  display: inline-block;
  background: linear-gradient(135deg,#c7a354,#e2c27c);
  padding: 14px 34px;
  border-radius: 50px;
  color: #0d243b;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 0 0 rgba(199,163,84,0.0);
}

.shop-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 18px rgba(199,163,84,0.65),
    0 0 30px rgba(226,194,124,0.45);
}


.badge {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
}


/* Arrows */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #ffffff;
  font-size: 2.4rem;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 3;
  border-radius: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(0,0,0,0.75);
  transform: translateY(-50%) scale(1.03);
}

.hero-prev { left: 22px; }
.hero-next { right: 22px; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero-slider {
    width: 94vw;
    height: 70vh;
    border-radius: 18px;
  }

  .hero-content h2 {
    font-size: 2.0rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-prev,
  .hero-next {
    font-size: 1.8rem;
    padding: 6px 10px;
  }
}

/* Glowing Shop Button */
.shop-btn {
  display: inline-block;
  background: linear-gradient(135deg,#c7a354,#e2c27c);
  padding: 14px 32px;
  border-radius: 50px;
  color: #0d243b;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.shop-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(199,163,84,0.65),
              0 0 30px rgba(226,194,124,0.45);
}


:root {
  --green: #1fbf62; /* brand green */
}


/* Base CTA you already have stays the same for Contact (gold) */
.nav-links .cta {
  border: 2px solid var(--gold);
  border-radius: 30px;
  padding: 6px 16px;
  color: var(--gold);
  transition: all 0.3s ease;
}

/* Green variant for Green Recycling */
.nav-links .cta-green {
  border-color: var(--green);
  color: var(--green);
  position: relative;
  overflow: visible;
}

.nav-links .cta-green:hover {
  background: var(--green);
  color: #0b2a3e;
}

/* Circle badge over the Green Recycling button */
.nav-links .cta-green::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(31,191,98,0.15);
  animation: pulseGreen 1.8s ease-out infinite;
}

@keyframes pulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(31,191,98,0.35); transform: scale(1); }
  70%  { box-shadow: 0 0 0 10px rgba(31,191,98,0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(31,191,98,0); transform: scale(1); }
}


/* --- Responsive Nav Fix for Green Recycling Button --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; /* prevents breaking */
}

.nav-links a.cta-green {
  white-space: nowrap; /* prevents text split into two lines */
  padding: 8px 18px;   /* consistent button spacing */
  border-width: 2px;
  border-radius: 30px;
}

@media (max-width: 950px) {
  .nav-links {
    justify-content: center;
  }

  .nav-links a.cta,
  .nav-links a.cta-green {
    padding: 6px 14px;
    font-size: 0.9rem;
  }

  .lang-switch {
    order: 10; /* moves FR button below if needed */
  }
}


/* ---------- GREEN RECYCLING PAGE ---------- */
.recycling-hero {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 20%, rgba(31,191,98,0.20), transparent 60%),
              linear-gradient(180deg, #0b2a3e 0%, #0b2a3e 40%, #0e2f48 100%),
              url('images/recycling-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.recycling-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.recycling-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.recycling-hero .leaf {
  color: var(--green);
  margin-right: 12px;
  font-size: 0.9em;
  vertical-align: middle;
}

.recycling-hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #d8efe4;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-stats .stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 10px;
}

.hero-stats .stat strong {
  display: block;
  font-size: 1.6rem;
  color: #fff;
}

.hero-stats .stat span {
  color: #bde8cf;
  font-size: 0.95rem;
}

/* Section title */
.section-title {
  font-size: 2rem;
  color: #0b2a3e;
  margin-bottom: 20px;
  font-weight: 800;
}

/* Value cards */
.recycling-value {
  background: #f5fbf8;
  padding: 70px 20px;
  text-align: center;
}

.recycling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 30px auto 0;
}

.re-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  padding: 22px;
  border-left: 5px solid var(--green);
  text-align: left;
}

.re-card h3 {
  color: var(--green);
  margin-bottom: 8px;
}

/* What we recycle */

/* ----------------------------
   WHAT WE RECYCLE (fixed layout)
----------------------------- */
.recycling-products {
  padding: 70px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f7f9fb);
}

.re-products-grid {
  width: 100%;
  max-width: 1300px;            /* Wider container */
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Balanced columns */
  gap: 32px;                    /* More space between cards */
  justify-items: center;        /* Center cards neatly */
  align-items: stretch;
}

.re-product {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  width: 100%;
  max-width: 400px;             /* Prevents extra-wide cards */
}

.re-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.re-product img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.re-product h4 {
  margin: 14px 12px 6px;
  color: #0b2a3e;
  font-weight: 700;
  font-size: 1.05rem;
}

.mini-badge {
  margin: 0 auto 18px;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(31, 191, 98, 0.15);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .re-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .re-products-grid {
    grid-template-columns: 1fr;
  }
}


/* CTA */
.recycling-cta {
  background: linear-gradient(90deg, rgba(31,191,98,0.15), rgba(31,191,98,0.05));
  text-align: center;
  padding: 60px 20px 80px;
}

.recycling-cta h2 {
  color: #0b2a3e;
  font-size: 2rem;
  margin-bottom: 8px;
}

.recycling-cta p {
  color: #36526b;
  margin-bottom: 18px;
}

.btn.btn-green {
  background: var(--green);
  color: #0b2a3e;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(31,191,98,0.3);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .recycling-hero h1 { font-size: 2.2rem; }
  .hero-stats .stat strong { font-size: 1.4rem; }
}

.recycling-info {
  background: #f9faf9;
  padding: 80px 20px 60px;
  text-align: center;
}

.recycling-info h2 {
  color: #0b2a3e;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.recycling-info p {
  color: #36526b;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.recycling-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

.recycling-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px;
  flex: 1 1 300px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recycling-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.recycling-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.recycling-card h3 {
  color: #0b2a3e;
  font-weight: 700;
  margin-bottom: 8px;
}

.recycling-card p {
  color: #36526b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .recycling-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* HEADER */
.prod-header {
  text-align: center;
  padding: 75px 20px 50px;
}

.prod-header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #0b2a3e;
  position: relative;
  display: inline-block;
}

.prod-header h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #c6a564, #e7d6a5);
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(198,165,100,0.4);
}

.prod-header p {
  font-size: 1.1rem;
  color: #5c616c;
  max-width: 600px;
  margin: 14px auto 0;
  letter-spacing: 0.3px;
}


/* TABS *//* ---------- MODERN SEGMENTED PRODUCT TABS ---------- */

.prod-tabs {
  display: inline-flex;
  justify-content: center;
  background: #ffffff;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  gap: 0;
  margin: 0 auto 30px;
  position: relative;
}

/* Each tab */
.ptab {
  position: relative;
  background: none;
  border: none;
  font-size: 1.05rem;
  padding: 12px 26px;
  cursor: pointer;
  border-radius: 50px;
  color: #7a7a7a;
  font-weight: 600;
  transition: color .25s ease, background .25s ease;
  z-index: 2;
}

/* Hover fade */
.ptab:hover {
  color: #0b2a3e;
}

/* Underline animation */
.ptab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0b2a3e;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.ptab:hover::after {
  width: 60%;
}

/* Active state = highlighted pill */
.ptab.active {
  color: #ffffff;
  background: #c6a564;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.ptab.active::after {
  width: 0;
}

/* Container for content spacing */
.prod-container {
  margin-top: -80px;

  text-align: center;
}

/* CONTENT SECTIONS */
.prod-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.prod-content.active {
  opacity: 1;
  transform: translateY(0);
}


.prod-content img {
  width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.ptext {
  flex: 1;
}

.ptext h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #0b2a3e;
}

.ptext p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.prod-content { display: none; }
.prod-content.active { display: flex; }


/* ============================
   MODERN SERVICES ACCORDION
============================ */

.services-intro h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b2a3e;
  position: relative;
  display: inline-block;
}

.services-intro h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #c6a564;
  margin: 12px auto 0;
  border-radius: 2px;
}

.services-intro p {
  font-size: 1.05rem;
  color: #2a2a2a;
  margin-top: 18px;
}



.services-cta {
  margin-top: 70px;
  padding: 50px 20px;
  background: linear-gradient(135deg, #0b2a3e, #0a2342);
  border-radius: 16px;
  color: #fff;
}

.services-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cta-btn {
  background: #c6a564;
  color: #0b2a3e;
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #e0c27a;
  transform: translateY(-2px);
}

.services-modern {
  background: linear-gradient(180deg, #f7f5f0 0%, #ffffff 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.services-header {
  margin-bottom: 1px;
}



/* === CLEAN CARD-STYLE ACCORDION FIX === */

.accordion-item {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f5f0 100%
  );
  border-left: 5px solid #c6a564; /* gold accent */
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.accordion-header {
  padding: 22px 24px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b2a3e;
  background: #ffffff;
  cursor: pointer;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.accordion-title{
  grid-column: 2;
  justify-self: center;
  text-align: center;
}

.accordion-icon{
  grid-column: 3;
  justify-self: end;
  color: #c6a564;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}



/* OPEN STATE */
.accordion-item.active .accordion-body {
  max-height: 600px;
  padding: 18px 24px 24px;
}


.accordion-item {
  position: relative;
  overflow: hidden;
}



.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: linear-gradient(
    180deg,
    #faf9f6 0%,
    #f1e3b8 100%
  );
  color: #0b2a3e;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* ===== MOBILE NAV FIX ===== */
/* ===== FINAL MOBILE HEADER FIX (iPhone safe) ===== */
@media (max-width: 768px) {

  .navbar .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 16px !important;
    gap: 12px !important;
  }

  /* Logo + company name centered */
  .logo-area {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 6px !important;
  }

  .logo-area img {
    height: 58px !important;
    max-width: 100% !important;
  }

  .company-name h1 {
    font-size: 1.05rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
  }

  .company-name span {
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
  }

  /* Navigation links */
  .nav-links {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 14px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links a {
    font-size: 0.95rem !important;
    white-space: nowrap !important;
  }

  /* Buttons */
  .nav-links a.cta,
  .nav-links a.cta-green,
  .lang-btn {
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
  }
}

.prod-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.prod-list li{
  margin-bottom: 15px;
}

.prod-list li::before{
  content: "•";
  display: inline-block;
  width: 18px;     /* controls the bullet column */
}