*{
    margin: 0;
    padding: 0;
    font-family: 'Jost' , sans-serif;
    
}
* {
  cursor: none; /* Hide the default cursor */
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px; /* adjust based on your nav/header height */
}
.icons{
  font-size: large;
}
#production-meter {
  position: fixed;
  top: 10px;
  right: 20px;
  background: black;
  color: white;
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#production-meter .label {
  font-size: 20px;
  font-weight: normal;
  margin-right: 5px;
  color: white;
}



.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 4px solid red;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width 0.2s ease, height 0.2s ease, border 0.2s ease;
    
}
body.custom-cursor-active {
    cursor: none;
}
    
body.over-nav .custom-cursor {
  mix-blend-mode: normal; /* Disable blending */
  border-color: red; /* Keep solid red */
}
@media (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}
.header {
    min-height: 100vh;
    width: 100%;
    position: relative;

    overflow: hidden; /* hides any overflow */
}
.header {
    min-height: 100vh;
    width: 100%;
    position: relative;

    overflow: hidden; /* hides any overflow */
}
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.header nav,
.header .text-box {
    position: relative;
    z-index: 1;
}
.header1 {
    min-height: 100vh;
    width: 100%;
    position: relative;

    overflow: hidden; /* hides any overflow */
}
.header1 {
    min-height: 100vh;
    width: 100%;
    position: relative;

    overflow: hidden; /* hides any overflow */
}
.header1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.header1 nav,
.header1 .text-box {
    position: relative;
    z-index: 1;
}
.bg-video1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* ensures full coverage */
    object-position: center; /* centers the video */
    
}
.bg-video2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* ensures full coverage */
    object-position: center; /* centers the video */
    
}
#muteToggleBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 68, 54, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#muteToggleBtn:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 0 25px rgba(255, 68, 54, 0.7);
  background: rgba(255, 68, 54, 0.25);
}


.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color:#fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

/* ===== NAVBAR BASE ===== */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 9999;
    padding: 12px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



.logo {
    width: 150px;
    height: auto;
    margin-left: 30px;
    margin-bottom: 20px;
    padding-top: 20px;
}

/* Desktop nav links */
.nav-links ul {
    margin-right: 30px;
    padding: 0;
    list-style: none;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links ul li a:hover {
    color: #f44336;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: width 0.3s ease;
}

.nav-links ul li:hover::after {
    width: 100%;
}
/* Dropdown container */
.nav-links ul li.dropdown {
  position: relative;
}

/* Dropdown menu hidden by default */
.nav-links ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: black; /* dark background like navbar */
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 5px;
}

/* Style each dropdown item */
.nav-links ul li .dropdown-menu li {
  list-style: none;
}

.nav-links ul li .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff; /* white text */
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
}

/* Hover effect */
.nav-links ul li .dropdown-menu li a:hover {
  
  color: #fff;
}

/* Show dropdown on hover */
.nav-links ul li.dropdown:hover .dropdown-menu {
  display: block;
}



/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* ===== Hamburger Menu ===== */

nav .fa-solid{
    display: none;
}


/* about wecpl */
/* .ABOUTWECPL{
    width:100%;
    margin: auto;
    padding-top: 50px;
      
} */
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    padding: 10px;
}
/* .row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.aboutwecpl-col { 
    max-width: 100%;
    margin: auto;
    padding: 20px ;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;

}
.title{

    font-size: 3.5em;
    margin-bottom: 20px;
    text-align: center;

}
.intro{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
    text-align: justify;
    font-weight: 400;
}
.content_with_image{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
}
.side_image{
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}
.side-text{
     flex: 1;
     font-size: 1.1em;
} */
/* === About Section Styling (block design) === */
.about-card1 {
  position: relative;
 background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),
    url(IMAGES/background.png);
  padding: 50px 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background-size: cover;
}
.about-card2 {
  position: relative;
 background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),
    url(IMAGES/Robot.jpg);
  padding: 50px 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background-size: cover;
}



/* Decorative notches */
.about-card::before,
.about-card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.about-card::before { top: -11px; }
.about-card::after { bottom: -11px; }

.ABOUTWECPL {
  width: 100%;
  margin: 0;
  padding: 60px 20px;
 
  background-size: cover;
  background-color: white;
}

/* Title stays centered */
.ABOUTWECPL .title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  text-align: center;
}

/* Intro paragraph */
.ABOUTWECPL .intro {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
  color: white;
  text-align: justify;
  
}

/* Block wrapper with step-style ends */
.content_with_image {
  position: relative;
  background: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Decorative notches */
.content_with_image::before,
.content_with_image::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.content_with_image::before {
  top: -11px;
}

.content_with_image::after {
  bottom: -11px;
}

/* Hover effect */
.content_with_image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

/* Image inside the block */
.side_image {
  max-width: 45%;
  height: auto;
  border-radius: 4px;
}

/* Text area */
.side-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}
.content_with_image1 {
  position: relative;
  background: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Decorative notches */
.content_with_image1::before,
.content_with_image1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.content_with_image1::before {
  top: -11px;
}

.content_with_image1::after {
  bottom: -11px;
}

/* Hover effect */
.content_with_image1:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}









/* <-----PEOPLE AT WECPL------> */
.PEOPLE_AT_WECPL{
    width:100%;
    margin: auto;
    padding-top: 50px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    padding: 10px;
}
.row1{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
   box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
    text-align: center;
    padding-left: 30px;
}
.row2{
    margin-top: 5%;
    display: flex;
    margin-left: 0;
    justify-content: space-between;
    flex-direction: row-reverse;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
    text-align: center;
    
}
.people_at_wecpl-col { 
    max-width: 100%;
    margin: auto;
    padding: 20px ;
    background: black;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;

}
.title{

    font-size: 3.5em;
    margin-bottom: 20px;
    text-align: center;

}
.title1{

    font-size: 3.5em;
    margin-bottom: 20px;
    text-align: center;
    color: white;

}
.intro{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
    text-align: justify;
    font-weight: 400;
}
.intro1{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
    text-align: justify;
    font-weight: 400;
    color: white;
}
.content_with_image1{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.side_image{
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}
.side-text{
     flex: 1;
     font-size: 1.1em;
}





/* <---------GLOBAL REACH-----> */
.global-reach {
  text-align: center;
  padding: 50px 20px;
  background: white;
}

.global-reach h2 {
  font-size: 5em;
  margin-bottom: 50px;
  color: black;
 
}

.subtitle {
  font-size: 1rem;
  color: white;
  margin-bottom: 30px;
}

/* .map-container {
  position: relative;
  display: inline-block;
  background-color: white;
}

.map {
  width: 100%;
  max-width: 1150px;
}

.marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.marker:hover::after {
  content: attr(data-location);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
} */

 .world-map {
  position: relative;
  width: 80vw;         /* full viewport width */
  margin: 0;            /* remove auto margin */
  left: 50%;
  right: 50%;
  transform: translateX(-50%); /* center properly on all screens */
  margin-left: 20px;
}

 .world-map img {
  width: 100%;
  height: auto;
  filter: grayscale(80%) brightness(1.1);
}

  /* Red animated pointers */
 .pointer {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: red;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
  animation: glowing 1.5s infinite ease-in-out;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.4),
                0 0 10px rgba(255, 0, 0, 0.6),
                0 0 15px rgba(255, 0, 0, 0.8);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.9),
                0 0 25px rgba(255, 0, 0, 0.9),
                0 0 35px rgba(255, 0, 0, 0.9);
    transform: scale(1.3);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.4),
                0 0 10px rgba(255, 0, 0, 0.6),
                0 0 15px rgba(255, 0, 0, 0.8);
    transform: scale(1);
  }
}




  /* Hover modal box */
  .continent-modal {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px;
    display: none;
    min-width: 180px;
    text-align: left;
    z-index: 10;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .continent-modal h4 {
    margin-top: 0;
    color: #333;
  }

  .continent-modal ul {
    padding-left: 20px;
    margin: 0;
  }

  .continent-modal ul li {
    color: #555;
  }
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 0;
  flex-wrap: wrap;
  color: black
}

.stat h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color:black;
}

.stat p {
  color: black;
  font-size: 1rem;
}
/* <------call to action -------> */
.cta{
    margin: 100px auto;
    width: 80%;
    background-color: black;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color:#fff;
    margin-bottom: 40px;
    padding: 0;
}



/* <------FOOTER-----> */
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.chevron {
  display: inline-block;
  margin-bottom: 4px;
  margin-left: 5px;
  border: solid #fff;   /* white by default */
  border-width: 0 2px 2px 0;
  padding: 2px;
  transform: rotate(45deg); /* pointing down */
  transition: transform 0.3s ease;
}

/* When dropdown is open on mobile */
.dropdown.open .chevron {
  transform: rotate(-135deg); /* pointing up */
}

.imds_details{
  text-align: justify;
  color: #777;

}


/* <------about us page----> */
.sub-header1{
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),
    url(IMAGES/office/About\ Us.jpg);
    background-position: center;
    background-size: cover;
    text-align: left;
    color: white;
    position: relative;
}

.sub-header1, nav {
  margin: 0;
  padding: 0;
}
.sub-header1 h1{
    margin-top: 90px;
    padding-top: 450px;
    font-size: 5em;
    margin-left: 50px;
}
 .underline {
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 15px;
    width: 0;
    background-color: red; /* change color as needed */
    border-radius: 3px;
    animation: slideIn 2s ease-out forwards;
    margin-bottom: 30px;
  }

  @keyframes slideIn {
    from {
      width: 0;
      left: 0;
    }
    to {
      width: 70%;
      left: 0;
    }
  }

  /* Optional full-width underline animation */
  .underline-full {
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 5px;
    width: 0;
    background-color: red;
    animation: expandFull 3s ease-in-out forwards;
  }

  @keyframes expandFull {
    0% { width: 0; left: 0; }
    100% { width: 100vw; left: 0; }
  }

.about-us{
    width: 70%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;

    
}
.about-col1{
    flex-basis: 48%;
    padding: 30px 2px;
    text-align: center ;

    
}
.about-col img{
    width: 100%;
    height: 450px;
    vertical-align: top;
    
}
.about-col h3{
    padding-top: 10%;
    font-size: 1.5em;
}

.about-col p{
    padding: 15px 0 25px;
    text-align: justify;
    padding-right: 20px;
    font-size: 22px;
}
.statement{
    text-align: center;
    font-size: 22px;
}
.about-col1 h3{
    padding-top: 10%;
    font-size: 1.5em;
}

.about-col1 p{
    padding: 15px 0 25px;
    text-align: justify;
    padding-right: 50px;
    padding-left: 50px;
   font-size: 1.3em;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: #fff;
}
.team-about-us h1{
  margin-top: 50px;
    text-align: center;
    font-size: 4em;
   
}



body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
}

/* <-----team section-----> */

.team-section {
  padding: 20px;
}

.heading {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}

.scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-track::-webkit-scrollbar {
  height: 10px;
}

.scroll-track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.member {
  scroll-snap-align: center;
  min-width: 320px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
}

.avatar {
  margin-top: 50px;
  width: 100%;
  height: 400px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-weight: bold;
  margin-top: 12px;
  font-size: 1.1rem;
}

.role {
  color: #555;
  font-size: 0.95rem;
  margin-top: 5px;
}
/* <-----AWARDS SECTION-------> */
.sub-header8 {
  margin-top: 115px;
  height: 55vh;
  width: 100%;
  
  background-position: center;
  background-size: cover;
  text-align: center;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-header7 {
  margin-top: 115px;
  height: 55vh;
  width: 100%;
  background-image: 
    url(IMAGES/IMDS\ \(3\).jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

    .awards-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.awards-section h2 {
  font-size: 4em;
  margin-bottom: 30px;
}

.awards-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none; /* hide scrollbar (Firefox) */
}

.awards-scroll::-webkit-scrollbar {
  display: none; /* hide scrollbar (Chrome/Safari) */
}

.award-card {
  flex: 0 0 300px; /* fixed width */
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.award-card img {
  width: 100%;
  height: 60vh;
  margin-right: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.award-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.award-card p {
  font-size: 14px;
  color: #666;
}
/* Fullscreen Popup for Certificates */
.fullscreen-view {
  margin-top: 50px;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.fullscreen-view img {
  max-width: 70%;
  max-height: 70%;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.fullscreen-view .close-btn {
  position: absolute;
  top: 100px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-slider .slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.hero-slider .slide {
  min-width: 100%;
  height: 60vh;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 50%;
  z-index: 10;
}

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

.hero-slider .dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-slider .dots span {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-slider .dots .active {
  background: #e63946;
}



    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

/* ===================== MOBILE FRIENDLY (portrait + landscape) ===================== */



/* <------PRODUCTS PAGE-------> */
.sub-header2 {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  color: white;
  text-align: left;
}
.sub-header2 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 55px;
}

/* Gradient Overlay */
.sub-header2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4));
  z-index: -1;
}

.sub-header2, nav {
  margin: 0;
  padding: 0;
}
.sub-header2 h1{
    margin-top: 50px;
    padding-top: 460px;
    font-size: 5em;
    margin-left: 50px;
}
.sub-header10 {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  color: white;
  text-align: left;
}
.sub-header10 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 55px;
}

/* Gradient Overlay */
.sub-header10 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4));
  z-index: -1;
}

.sub-header10, nav {
  margin: 0;
  padding: 0;
}
.sub-header10 h1{
    margin-top: 50px;
    padding-top: 460px;
    font-size: 5em;
    margin-left: 40px;
}
.sub-header11 {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  color: white;
  text-align: left;
}
.sub-header11 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 55px;
}

/* Gradient Overlay */
.sub-header11 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4));
  z-index: -1;
}
.sub-header11, nav {
  margin: 0;
  padding: 0;
}
.sub-header11 h1{
    margin-top: 50px;
    padding-top: 460px;
    font-size: 5em;
    margin-left: 40px;
}
.sub-header12 {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  color: white;
  text-align: left;
}
.sub-header12 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 55px;
}

/* Gradient Overlay */
.sub-header12 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4));
  z-index: -1;
}
.sub-header12, nav {
  margin: 0;
  padding: 0;
}
.sub-header12 h1{
    margin-top: 50px;
    padding-top: 460px;
    font-size: 5em;
    margin-left: 40px;
}
.sub-header13{
    height: 90vh;
    width: 100%;
    background-image:linear-gradient(rgba(55, 64, 103, 0.1),rgba(4,9,30,0.1)), 
    url(IMAGES/process/Precision\ Engineering.jpg);
    background-position: center;
    background-size: cover;
    text-align: left;
    color: white;
    position: relative;
}
.sub-header13, nav {
  margin: 0;
  padding: 0;
}
.sub-header13 h1{
    margin-top: 90px;
    padding-top: 500px;
    font-size: 5em;
    margin-left: 10px;
}
.layer1{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer1:hover{
    background: rgba(226, 0, 0, 0.7) ;
}
.layer1 h3{
    width:100%;
    font-weight: 500;
    color: #fff;
    font-size: 22px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer1:hover h3{
    bottom: 49%;
    opacity: 1;

}
/* Enable same effect on mobile/tablet when tapped */
.layer1:active,
.layer1:focus {
  background: rgba(226, 0, 0, 0.7);
}
.layer1:active h3,
.layer1:focus h3 {
  bottom: 49%;
  opacity: 1;
}

.PRODUCTS{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.PRODUCTS h1{
  font-size: 3em ;
}
.products_col {
  flex: 1;                 /* take equal space */
  max-width: 20%;          /* ~4 in one row with spacing */
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}
.products_col img {
  width: 100%;
  display: block;
  
}
.row {
  display: flex;
  flex-wrap: nowrap;       /* keep items in one row */
  justify-content: space-between;
  margin-top: 30px;
}

.imds-photo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.imds-photo img {
  width: 100%;
  height: 80vh;
  display: block;
}


/* ---------------- NEW FEATURE SECTION ---------------- */
.feature-section { 
  width: 90%; 
  margin: 50px auto; 
}
.feature-row { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-bottom: 30px; 
  flex-wrap: wrap; 
}
.feature-text { 
  flex: 1; 
  margin-left: 0;
  width: 100%;
  
}
.feature-text h1 { 
  font-size: 32px; 
  color: #0a2342; 
  margin-bottom: 15px; 
}
.feature-text p { 
 font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-align: justify;       /* 👈 Makes text justified */
  text-justify: inter-word;  /* 👈 Better spacing between words */
  margin-bottom: 15px;
  
}
.feature-image { 
  flex: 1; 
  text-align: right; 
}
.feature-image img { 

  height: 450px;
  width: 90%; 
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
}

/* --- FIXED: HORIZONTAL SCROLL --- */
.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* allow scrolling */
.scroll-container {
  overflow-x: auto;              /* FIXED (was hidden) */
  scroll-behavior: smooth;
  width: 100%;
  -ms-overflow-style: none;      /* IE/Edge */
  scrollbar-width: none;         /* Firefox */
}
.scroll-container::-webkit-scrollbar { display: none; }  /* Chrome/Safari */

/* row of items */
.scroll-content {
  display: flex;
  gap: 15px;
  padding: 10px 0;
}

/* show 5 at a time */
.scroll-item {
  position: relative;
  flex: 0 0 calc(20% - 10px);
  border-radius: 10px;
  overflow: hidden;
}
.scroll-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.scroll-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 14px;
}

/* arrows */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}
.scroll-btn.left { left: -20px; }
.scroll-btn.right { right: -20px; }
.scroll-btn:hover { background: rgba(0,0,0,0.8); }
/* ---------------- FIX SCROLL CUT-OFF ---------------- */
section {
  scroll-margin-top: 120px; /* adjust depending on your header height */
}



/* <--------capabilities page-------> */
.sub-header3 {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  color: white;
  text-align: left;
}

/* Background Video */
.sub-header3 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full coverage */
  z-index: -2; /* behind everything */
}

/* Gradient Overlay */
.sub-header3 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4));
  z-index: -1;
}

/* Content (nav, heading, etc.) */

.sub-header3, nav {
  margin: 0;
  padding: 0;
}
.sub-header3 h1{
    margin-top: 90px;
    padding-top: 300px;
    font-size: 4em;
    margin-left: 40px;
    z-index: 12;
}
.sub-header14 {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  text-align: left;
  color: white;
}

/* Video background */
.sub-header14 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the entire section */
  z-index: -2;
}

/* Gradient overlay */
.sub-header14 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4));
  z-index: -1;
}
.sub-header14, nav {
  margin: 0;
  padding: 0;
}
.sub-header14 h1{
    margin-top: 90px;
    padding-top: 300px;
    font-size: 4em;
    margin-left: 40px;
}
.sub-header15 {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  text-align: left;
  color: white;
}

/* Video background */
.sub-header15 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Gradient overlay */
.sub-header15 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4));
  z-index: -1;
}
.sub-header15, nav {
  margin: 0;
  padding: 0;
}
.sub-header15 h1{
    margin-top: 90px;
    padding-top: 300px;
    font-size: 4em;
    margin-left: 40px;
}
.sub-header16 {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  text-align: left;
  color: white;
}

/* Background video */
.sub-header16 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Gradient overlay */
.sub-header16 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4));
  z-index: -1;
}
.sub-header16, nav {
  margin: 0;
  padding: 0;
}
.sub-header16 h1{
    margin-top: 90px;
    padding-top: 300px;
    font-size: 4em;
    margin-left: 40px;
    
}

.capabilities_content {
  font-family: Arial, sans-serif;
  width: 100%;
  margin: auto;
  padding: 60px 0;
  text-align: center;
}

.capabilities_content h2 {
  color: #222;
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 30px;
}

.capabilities_content p {
  color: #555;
  width: 90%;
  margin: 0 auto 30px;
  text-align: justify;
  line-height: 1.6;
  font-size: 20px;
}

/* .capabilities_scroll {
  display: flex;
  height: 500px;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  
  justify-content: flex-start; 
}

.capabilities_scroll::-webkit-scrollbar {
  height: 8px;
  
}

.capabilities_scroll::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
}

.capabilities_scroll img {
  flex: 0 0 calc(33.33% - 20px); 
  max-width: calc(33.33% - 20px);
  border-radius: 10px;
}*/ 
.capabilities_scroll1 {
  display: flex;
  height: 500px;
  overflow-x: hidden; /* IMPORTANT — no bounce */
  gap: 0; /* Remove spacing that caused jerking */
  padding: 0;
}

/* Smooth uniform image layout */
.capabilities_scroll1 img {
  flex: 0 0 33.33%;
  width: 30%;
  height: 500px;
  object-fit: contain; /* Makes all images equal size */
  gap: 30px;
  border-radius: 10px;
}

/* Optional scrollbar styles (won’t affect infinite scroll) */
.capabilities_scroll1::-webkit-scrollbar {
  height: 8px;
}
.capabilities_scroll1::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
}
.capabilities_scroll2 {
  display: flex;
  height: 500px;
  overflow-x: hidden; /* IMPORTANT — no bounce */
  gap: 0; /* Remove spacing that caused jerking */
  padding: 0;
}

/* Smooth uniform image layout */
.capabilities_scroll2 img {
  flex: 0 0 33.33%;
  width: 30%;
  height: 500px;
  object-fit: cover; /* Makes all images equal size */
  gap: 30px;
  border-radius: 10px;
}

/* Optional scrollbar styles (won’t affect infinite scroll) */
.capabilities_scroll2::-webkit-scrollbar {
  height: 8px;
}
.capabilities_scroll2::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
}



.capabilities_content .comment-box {
  border: 1px solid #ccc;
  margin: 50px auto;
  padding: 20px;
  text-align: left;
  width: 90%;
  max-width: 800px;
}

.capabilities_content .comment-box h3 {
  margin-bottom: 10px;
}

.capabilities_content .comment-form input,
.capabilities_content .comment-form textarea {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  background:#f0f0f0;
}
/* Tablets (max-width: 1024px) → Show 2 images */
@media (max-width: 1024px) {
  .capabilities_scroll img {
    flex: 0 0 50%;
    width: 50%;
    height: 300px; /* Adjust height for tablet */
  }
}

/* Phones (max-width: 600px) → Show 1 image full width */
@media (max-width: 600px) {
  .capabilities_scroll1 {
    height: 250px; /* Smaller container height for mobile */
  }
  .capabilities_scroll2 {
    height: 250px; /* Smaller container height for mobile */
  }

  .capabilities_scroll1 img {
    flex: 0 0 100%;
    width: 100%;
    height: 250px; /* Match container height */
    border-radius: 8px;
    object-fit: contain;
  }
  .capabilities_scroll2 img {
    flex: 0 0 100%;
    width: 100%;
    height: 250px; /* Match container height */
    border-radius: 8px;
    object-fit: cover;
  }
}


.capabilities_content .comment-form button {
  margin: 10px 0;
  padding: 10px 20px;
  background: #f44336;
  color: #fff;
  border: none;
  cursor: pointer;
}
.capabilities_details {
  width: 90%;
  margin: 60px auto;
  font-family: Arial, sans-serif;
}

.capabilities_details h1 {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.details_block {
  margin-bottom: 30px;
}

.details_block h2 {
  font-size: 30px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
  text-align: center;

}

.details_block p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
  margin-left: 20px; /* small indent for content */
}




/* <------contact us page-----> */
.sub-header5{
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.4),rgba(4,9,30,0.4)),
    url(IMAGES/contact-us-cover2.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: black;
    position: relative;
    
}
.contact_heading{
  text-align: center;
  font-size: 4em;
}
.sub-header5, nav {
  margin: 0;
  padding: 0;
}
.sub-header5 h1{
    margin-top: 90px;
    padding-top: 250px;
    font-size: 4em;
}
/* Existing .row */
.row {
  display: flex;
  flex-wrap: nowrap;       /* keep items in one row */
  justify-content: space-between;
  margin-top: 30px;
}
.row3 {
  display: flex;
  flex-wrap: nowrap;       /* keep items in one row */
  justify-content: space-between;
  margin-top: 30px;
}

/* Contact Us */
.contact-us {
    width: 80%;
    margin: auto;
    margin-top: 50px;
    background-color: black;
    padding: 40px 20px;
}

/* Contact columns */
.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa, .contact-col div .fa-solid {
    font-size: 28px;
    color: white;
    margin: 10px 30px;
}

.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
    font-weight: 400;
}

.contact-col div p {
    padding: 0;
    color: white;
}

/* Map */
.location {
    width: 100%;
}

.location iframe {
    width: 100%;
    height: 300px;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Popup styling */
#successPopup {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: white;
  color: black;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-weight: bold;
}

#successPopup.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .row3{
        flex-direction: column;
    }
    .contact-col {
        flex-basis: 100%;
        margin-right: 30px;
    }
    .location iframe {
        margin-left: 0;
        }
    
}




/* <====careers & opportunities====> */
.sub-header4{
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(55, 64, 103, 0.4),rgba(4,9,30,0.4)),
    url(IMAGES/office/JOIN\ OUR\ TEAM.jpg);
    background-position: center;
    background-size: cover;
    text-align: left;
    color: white;
    position: relative;
}
.sub-header4, nav {
  margin: 0;
  padding: 0;
}
.sub-header4 h1{
    margin-top: 90px;
    padding-top: 475px;
    font-size: 4em;
    margin-left: 40px;
}
/* JOB OPENINGS */
.job-openings {
  padding: 50px 20px;
  text-align: center;
}
.job-openings h1{
  font-size: 3em;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.job-card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.job-card:hover {
  transform: translateY(-5px);
}
.apply-btn {
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 8px;
}
.apply-btn:hover {
  background: red ;
}
/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.modal-content {
  background: #fff;
  padding: 20px;
  padding-right: 50px;
  border-radius: 10px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}
.modal-content h2 {
  margin-bottom: 15px;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.modal-content .submit-btn {
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
.modal-content .submit-btn:hover {
  background: #e65c00;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
}
/* REVIEWS */
/* EMPLOYEE REVIEWS */
/* EMPLOYEE REVIEWS */
.reviews {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
}

.reviews h2 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #222;
}

.review-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
  scroll-behavior: smooth;
}

.review-scroll::-webkit-scrollbar {
  height: 8px;
}

.review-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.review-card {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-photo {
  width: 150px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
 
  
}

.review-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #555;
}

.review-card h4 {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}


/* ABOUT CULTURE */
.about-culture {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 20px;
  align-items: center;
  gap: 20px;
}
.culture-text {
  flex: 1;
}
.culture-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}




@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
 /* <=======life_at_wecpl=====> */
:root {
  --gap: 120px;
  --image-max-width: 500px; /* limit width of each image */
}

/* Full-width section */
#life_at_wecpl-section {
  width: 100%;
  padding: 40px 0;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* Centered heading */
#life_at_wecpl-heading {
  text-align: center;
  font-size: 4em;
  margin-bottom: 10px;
}

/* Text spans full width but stays neat */
#life_at_wecpl-subtext,
#life_at_wecpl-content {
  text-align: left;
  font-family: 'Jost' , sans-serif;
  max-width: 1200px;
 
  padding: 0 20px;
  color: black;
  font-size: 100px;
}
#life_at_wecpl-content1 {
  text-align: left;
  font-family: 'Jost' , sans-serif;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
  color: black;
  font-size: 100px;
}

/* Image grid centered with limited size */
#life_at_wecpl-images {
  display: flex;
  justify-content: center;
  gap: var(--gap);
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: small;
}

/* Figures have fixed max width */
#life_at_wecpl-images figure {
  max-width: var(--image-max-width);
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #eee;
  display: flex;
}

/* Images fill the figure box */
#life_at_wecpl-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* On small screens, keep images stacked */


/* <======our journey page=======> */
/* ==================== JOURNEY SECTION ==================== */
.sub-header6 {
  height: 75vh;
  width: 100%;
  
  background-position: cover;
  background-size: cover;
  text-align: center;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-heading {
  font-size: 3em;
  margin-top: 150px;
  color: black;
  text-align: center;
}
.slides{
  height: 100vh;
  padding-bottom: 0;
}

/* Journey Section Container */
.journey-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}



/* Timeline Line */
.timeline {
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
  transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
}

.timeline-content img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0;
}

.year {
  font-size: 1.8rem;
  font-weight: bold;
  color: black;
}

.timeline-content p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.5;
}


/* <====cookiees===> */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  border: 1px solid red;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 600px;
  display: none;
}
.cookie-popup.show {
  display: block;
}
.cookie-content p {
  margin: 0 0 10px;
  font-size: 20px;
  color: white;
}
.cookie-content button {
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
  border: none;
  background:red;
  color: #fff;
  border-radius: 4px;
}
.cookie-content button:hover {
  background: black;
}
/* Chevron / toggle icon — always visible */
.dropdown-toggle {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* icon rotation (when submenu open) */
.dropdown.open .dropdown-toggle .fa-chevron-down {
  transform: rotate(-135deg);
}

/* smaller arrow size on desktop if needed */
.dropdown-toggle .fa-chevron-down {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.two-image-section {
    text-align: center;
    padding: 50px 20px;
  }

  .two-image-title {
    font-size: 4em;
    margin-bottom: 50px;
    margin-top: 100px;
  }

  .two-image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* stack on smaller screens */
  }

  .two-image-container img {
    width: 45%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .download-btn {
  display: inline-block;
  background: #e63946;
  color: white;
  margin-top: 30px;
  margin-left: 42%;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  object-position: center;
}
.download-btn:hover {
  background: #c62828;
}
#job-opening{
  margin-top: 50px;
}
 .zoomable {
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .zoomable:hover {
      transform: scale(1.05);
    }

    /* Fullscreen modal */
    .modal {
      display: none; 
      position: fixed;
      z-index: 1000;
      padding-top: 50px;
      margin-top: 100px;
      margin-bottom: 200px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.8);
    }

    .modal-content {
      margin: auto;
      display: block;
      max-width: 80%;
      max-height: 80%;
      border-radius: 10px;
    }

    /* Close button */
    .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }
/* <-----mobile version-----> */
/* ---------- MOBILE STYLES ---------- */
@media (max-width: 768px) {
  .sustainability {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  min-height: 30vh; 
  margin-bottom: 0;
        /* full height */
}
  .about-card1{
    margin-right: 45px;
  }
  .about-card2{
    margin-right: 45px;
  }
  .sub-header7 {
  margin-top: 115px;
  height: 30vh;
  width: 100%;
  background-image: url("IMAGES/IMDS\ \(3\).jpg");
  background-size: contain;      /* show full image without cropping */
  background-repeat: no-repeat;  /* prevent tiling */
  background-position: center;   /* center the image */
  
  text-align: center;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
  
  #production-meter {
  position: fixed;
  top: 10px;
  right: 20px;
  background: black;
  color: white;
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
#production-meter .label {
  font-size: 16px;
  font-weight: normal;
  margin-right: 5px;
  color: white;
}




  .PRODUCTS h1{
    margin-bottom: 50px;
  }
  .sketchfab-embed-wrapper video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  #changeVideoBtn {
    font-size: 0.2rem;
    padding: 18px;
    height: 60%;
    width: 100%;         /* button almost full width */
    max-width: 200px;   /* prevent it from being too wide */
   
  }


  .sub-header5 {
    height: 50vh;
  }

  .sub-header5 h1 {
    padding-top: 120px;
    font-size: 2rem;
  }

  /* ===== Contact section ===== */
  .contact-us {
    width: 95%;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-col {
    width: 100%;
    flex-basis: 100%;
    margin: 0;
  }

  .contact-col div h5 {
    font-size: 16px;
  }

  .contact-col div p {
    font-size: 14px;
  }

  /* --- Contact form --- */
  .contact-col form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contact-col input,
  .contact-col textarea {
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    padding: 12px;
  }

  .contact-col textarea {
    min-height: 150px;
    resize: vertical;
    margin-right: 0;
  }

  .contact-col button.hero-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
  }

  /* ===== Map ===== */
  .location {
    width: 100%;
  }

  .location iframe {
    width: 100%;
    height: 300px;
    margin: 0;
  }

  /* ===== Social media ===== */
  .social_media h2 {
    font-size: 2rem !important;
  }

  /* Stack icons vertically */
  .social_media div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center;
  }

  .social_media div img {
    width: 120px !important;
    height: 120px !important;
  }

  .social_media p {
    font-size: 18px !important;
    margin-top: 8px;
  }
  .sub-header3 {
    height: 70vh;
  }
  .sub-header3 h1{
    margin-left: 7px;
    margin-right: 7px;
    font-size: 3em;
  }
  .sub-header14 {
    height: 70vh;
  }
  .sub-header14 h1{
    margin-left: 7px;
    margin-right: 7px;
    font-size: 3em;
  }
  .sub-header15 {
    height: 70vh;
  }
  .sub-header15 h1{
    margin-left: 7px;
    margin-right: 7px;
    font-size: 3em;
  }
  .sub-header16 {
    height: 70vh;
  }
  .sub-header16 h1{
    margin-left: 7px;
    margin-right: 7px;
    font-size: 3em;
  }
 
  
  .about-card {
    padding: 30px 20px;
    margin: 20px;
    margin-right: 50px;
  }

  .ABOUTWECPL .title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .ABOUTWECPL .intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Stack text & image vertically */
  .content_with_image {
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
   
  }

  .side_image {
    max-width: 100%;
    width: 100%;
    border-radius: 4px;
  }
  .ABOUTWECPL .intro,
  .ABOUTWECPL .side-text {
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
  }
  .side-text {
    font-size: 1rem;
    text-align: left;
  }

   .download-btn {
  display: inline-block;
  background: #e63946;
  color: white;
  margin-top: 30px;
 
 
  border-radius: 8px;
  font-size: 10px;
  
  font-weight: bold;
  transition: background 0.3s;
  object-position: center;
  text-align: center;
}
.download-btn:hover {
  background: #c62828;
}
  .two-image-title{
    font-size: 2.5em;
  }
   .two-image-container img {
      width: 100%;
    }

  .chevron{
    display: none;
  }
   .header {
    min-height: 40vh;
    margin-bottom: 0;
  }
   .header1 {
    min-height: 100vh;
    margin-bottom: 0;
  }
#life_at_wecpl-images{
  row-gap: 70px;
}

  .bg-video1 {
    height: 55vh;
    object-fit: contain;
    padding-top: 22px;
    
  }
  .bg-video2 {
    height: 90vh;
    object-fit: cover;
    padding-top: 22px;
    
  }
  #life_at_wecpl-section h6{
    font-size: 0.5em;
}
#life_at_wecpl-section p{
  text-align: justify;
}
  /* ---------- NAVBAR ---------- */
  nav {
    padding: 15px 20px;
    
  }

  /* Center logo inside nav on mobile */
  .logo {
    margin-right: 140px;
    display: block;
  }

  /* Show hamburger icon */
  nav .fa-solid {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10001;
  }

  /* Slide-in panel for nav links */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: black;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 9999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* ---------- MENU ITEMS ---------- */
  .nav-links ul li {
    display: block;
    padding: 15px 45px 15px 25px; /* leave space on right for arrow */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; /* needed for arrow absolute pos */
   
  }

  .nav-links ul li a {
    font-size: 18px;
    display: inline-block;
    color: white;
    text-decoration: none;
  }

  /* ---------- DROPDOWN TOGGLE BUTTON ---------- */
  .dropdown-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 4px;
    z-index: 2;
  }

  .dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  /* Rotate arrow when submenu is open */
  .dropdown.open .dropdown-toggle .fa-chevron-down {
    transform: rotate(-180deg);
  }

  /* ---------- SUBMENU ---------- */
  .nav-links .dropdown .dropdown-menu {
    
    position: static;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding-left: 18px;
  }

  .nav-links .dropdown.open .dropdown-menu {
    max-height: 500px; /* large enough for submenu items */
  }

  /* ---------- PAGE CONTENT ADJUSTMENTS ---------- */
  .content_with_image,
  .content_with_image1 {
    flex-direction: column;
    align-items: center;
    text-align: left;
    word-break: break-word;
  }

  .side_image {
    max-width: 90%;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  h1.title,
  h1.title1 {
    font-size: 2rem;
  }

  .intro,
  .intro1 {
    font-size: 1rem;
    padding: 0 10px;
  }
  nav .fa-bars {
    display: block;
    font-size: 30px;
    color: red;
    position: absolute;
    top: 60px;
    right: 50px;
    cursor: pointer;
    z-index: 1001; /* Above menu */
  }
   nav .fa-circle-xmark {
    display: block;
    font-size: 28px;
    color: white;
    position: absolute;
    top: 50px;
    right: 200px;
    cursor: pointer;
    z-index: 1001;
  }
  .sub-header1  {
    height: auto;
    padding: 30px 20px;
  }
  .sub-header1 h1{
    margin-top: 100px;
    padding-top: 300px;
    font-size: 3em;
    margin-left: 0px;
}
  

  /* About Us */
  .about-us {
    width: 90%;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .about-col {
    flex-basis: 100%;
    padding: 15px 0;
    text-align: center;
  }
  .about-col h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .about-col img {
    width: 100%;
    
    margin: 15px 0;
    border-radius: 8px;
  }
  /* Ensure title → image → content stacking */
  .row1, .row2 {
    flex-direction: column;
    align-items: center;
    text-align: justify;
    padding-right: 10px;
    padding-left: 10px;
  }

  /* Team & Journey Headings */
  .team h1 {
    font-size: 2.5em;
    margin-top: 40px;
  }
  .journey-heading{
    margin-top: 200px;
    font-size: 2.5em;
  }

  /* Timeline */
  .timeline {
    flex-direction: column;
    align-items: center;
    
  }
  .timeline p{
    text-align: left;
  }
  .timeline::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }
  .timeline-item {
    width: 80%;
    margin: 60px 0;
    text-align: center;
    position: relative;
  }
  .timeline-year {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: #f9f9f9;
    padding: 0 10px;
    z-index: 3;
  }
 

  /* Awards Section */
  .awards-section h2 {
    font-size: 2.5em;
  }
  .award-card {
    flex: 0 0 240px;
  }
  .download-btn {
  display: inline-block;
  background: #e63946;
  color: white;
 
  
  
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  object-position: left;
 
}
.download-btn:hover {
  background: #c62828;
}
.sub-header2 {
    height: 40vh;
    padding: 0px 10px;
  }
  .sub-header2 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 80px;
}
  .sub-header2 h1 {
    font-size: 3em;
    padding-bottom: 0px;
    padding-top:200px;
    margin-left: 0px;
  }
  .PRODUCTS h1{
    font-size: 2em;
  }
  
  .sub-header10 {
    height: 38vh;
    padding: 0px 10px;
    object-fit: contain;
  }
  .sub-header10 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 55px;
}
  .sub-header10 h1 {
   font-size: 3em;
    padding-bottom: 0px;
    padding-top: 180px;
    margin-left: 0px;
  }
  .sub-header11 {
    height: 35vh;
    padding: 0px 10px ;
  }
  .sub-header11 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 55px;
}
  .sub-header11 h1 {
   font-size: 3em;
    padding-bottom: 0px;
    padding-top: 180px;
    margin-left: 0px;
  }
   .sub-header12 {
    height: 35vh;
    padding: 0px 10px;
  }
  .sub-header12 .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  object-fit: contain; /* ensures full coverage */
  z-index: -2; /* behind everything */
  margin-top: 55px;
}
  .sub-header12 h1 {
    font-size: 3em;
    padding-bottom: 0px;
    padding-top: 180px;
    margin-left: 0px;
  }
   .sub-header13 {
    padding-top: 20px;
    height: 50vh;
    padding: 40px 10px;
    
  }
  .sub-header13 h1 {
    font-size: 3em;
    
    padding-top: 250px;
  }

  .row1 .row2 {
    flex-direction: column;
    align-items: center;
  }
  .products_col {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .feature-row {
    flex-direction: column;
    text-align: center;
  }
  .feature-text {
    padding: 0;
  }
  .feature-text h1 {
    font-size: 24px;
  }
  .feature-text p {
    font-size: 14px;
    line-height: 1.6;
  }
  .feature-image {
    text-align: center;
    margin-top: 15px;
  }
  .feature-image img {
    width: 100%;
    max-width: 350px;
  }

  section {
    scroll-margin-top: 90px; /* smaller offset for mobile */
  }
   .scroll-item {
    flex: 0 0 calc(33.33% - 10px);
  }
  .scroll-item img {
    height: 120px; /* smaller height for mobile */
  }
  

 
  .timeline {
    padding: 10px 0;
  }

  .timeline-item {
    width: 50%;
    padding: 10px;
  }

  .timeline-content {
    padding: 15px;
    font-size: 0.95rem;
  }

  .timeline-content img {
    max-height: 150px;
  }

  .year {
    font-size: 1.4rem;
  }
  .awards-section img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  

}



/* ===================== LANDSCAPE MOBILE ===================== */
@media only screen and (max-height: 500px) and (orientation: landscape) {
  /* Sub-header */
  .sub-header1 {
    height: auto;
    padding: 40px 10px;
  }
  .sub-header1 h1 {
    font-size: 3em;
    padding-bottom: 80px;
  }

  /* Timeline */
  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }
  .timeline-item {
    width: 45%;
    margin: 20px 5px;
  }
  .timeline::before {
    display: none;
  }

  /* Awards Section */
  .awards-scroll {
    gap: 15px;
  }
  .award-card {
    flex: 0 0 200px;
    padding: 15px;
  }
  .award-card h3 {
    font-size: 16px;
  }
  .award-card p {
    font-size: 13px;
  }
  
}



/* Tablet (2 per row) */
@media (max-width: 1024px) {
  .row {
    justify-content: center;
    gap: 20px;
  }
  .products_col {
    flex-basis: 45%;
  }
  .feature-row {
    flex-direction: row;
    text-align: left;
  }
  .feature-text {
    flex: 1 1 100%;
    padding-right: 15px;
  }
  .feature-image {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 20px;
  }
  .feature-image img {
    width: 80%;
  }
}



@media(max-width: 700px){
    
    .capabilities_content .comment-box {
    padding: 15px;
  }

  .capabilities_content .comment-box h3 {
    font-size: 1.2em;
  }

  .capabilities_content .comment-form input,
  .capabilities_content .comment-form textarea {
    font-size: 0.9em;
    padding: 10px;
  }

  .capabilities_content .comment-form button {
    font-size: 1em;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  #life_at_wecpl-images {
    flex-direction: column;
    align-items: center;
  }
}


/* <-----core values------> */
/* Container */
.core-values {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  min-height: 50vh; 
   background-image: url(IMAGES/core.png);
          opacity: 0.8;
filter: brightness(1.1);
background-position: center 80%;
background-size: 1400px; /* keeps the Earth visible and clean */
  background-repeat: no-repeat;
  margin-right:30px;/* full height */
  background-color: red;
}
.sustainability {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  min-height: 50vh; 
  margin-bottom: 0;
  background-image: url(IMAGES/sustainability-background.png);
  background-color: #12b886;
  opacity: 0.9;
filter: brightness(1.1);
background-position: center 10%;
background-size: contain; /* keeps the Earth visible and clean */
  background-repeat: no-repeat;
  margin-right: 20px;
  
  
        /* full height */
}
.sustainability p{
  color: white;
}
.core-values p{
  color: white;
}
.container {
  position: relative;
  width: 900px;
  height: 900px;
  margin-right: 32px;
  justify-content: center;
}

/* Center Circle with pulse */
.center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: linear-gradient(135deg, rgb(199, 113, 113));
  color: white;
  padding: 80px;
  border-radius: 50%;
  box-shadow: 0 6px 20px white;
  font-weight: bold;
  font-size: 50px;
  text-align: center;
  z-index: 5;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 6px 30px rgba(0,0,0,0.6); }
}


/* Segment blocks */
.segment {
  position: absolute;
  width: 250px;
  height: 160px;
  color: white;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform-origin: center center;


}

.segment:hover {
  transform: scale(1.15) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  filter: brightness(1.1);
  z-index: 10;
}


/* Gradient colors & positions with more spacing */
.quality { background: #ff4d4d; top: 0%; left: 34%; bottom: 10%; }
.creativity { background: #ff4d4d; top: 20%; right: 0%; }
.productivity { background: #ff4d4d; top: 20%; left: 0%; }
.responsibility { background: #ff4d4d; bottom: 20%; right: 0%; }
.ethics { background: #ff4d4d; bottom: 20%; left: 0%; }


/* Segment icons */
.segment h3::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}
/* Assign icons */
.quality h3::before { content: "\f091"; }      /* fa-check-circle */
.creativity h3::before { content: "\f0eb"; }   /* fa-lightbulb */
.productivity h3::before { content: "\f0c0"; } /* fa-users */
.responsibility h3::before { content: "\f555"; }/* fa-handshake */
.ethics h3::before { content: "\f19c"; }       /* fa-balance-scale */

/* Floating modal */
.float-modal {
  position: absolute;
  display: none;
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  width: 220px;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.float-modal.show {
  opacity: 1;
  transform: translateX(0);
}

/* Container */
.sustain-container {
  position: relative;
  width: 900px;
  height: 900px;
  margin-right: 30px;
  padding-top: 40px;
}

/* Center Circle with pulse */
.sustain-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: linear-gradient(135deg, #2f9e44, #74c69d); /* Green tones */
  color: white;
  padding: 80px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  z-index: 5;
  animation: sustain-pulse 2s infinite;
}
@keyframes sustain-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 6px 30px rgba(0,0,0,0.6); }
}

/* Segment blocks */
.sustain-segment {
  position: absolute;
  width: 250px;
  height: 160px;
  color: white;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform-origin: center center;
}
.sustain-segment:hover {
  transform: scale(1.15) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  filter: brightness(1.1);
  z-index: 10;
}

/* Sustainability gradient colors & positions */
.sustain-energy { background: linear-gradient(135deg,#38d9a9,#20c997); top: 0%; left: 33.5%; }
.sustain-waste { background: linear-gradient(135deg,#63e6be,#38d9a9); top: 20%; right: 0%; }
.sustain-water { background: linear-gradient(135deg,#20c997,#12b886); top: 20%; left: 0%; }
.sustain-community { background: linear-gradient(135deg,#51cf66,#2f9e44); bottom: 20%; right: 0%; }
.sustain-biodiversity { background: linear-gradient(135deg,#2f9e44,#1b4332); bottom: 20%; left: 0%; }

/* Segment icons */
.sustain-segment h3::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}
.sustainability-text{
  margin-top: 0px;
  margin-bottom: 30px;
  color: green;
  font-size: 30px;
  text-align: center;
}
.corevalues-content{
  margin-top: 0px;
  margin-bottom: 30px;
  color: red;
  font-size: 30px;
  text-align: center;
  z-index: 10;
}
/* Assign sustainability icons */
.sustain-energy h3::before { content: "\f0e7"; }      /* fa-bolt */
.sustain-waste h3::before { content: "\f1b8"; }       /* fa-recycle */
.sustain-water h3::before { content: "\f773"; }       /* fa-tint */
.sustain-community h3::before { content: "\f0c0"; }   /* fa-users */
.sustain-biodiversity h3::before { content: "\f06c"; }/* fa-leaf */

/* Floating modal */
.sustain-modal {
  position: absolute;
  display: none;
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  width: 220px;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sustain-modal.show {
  opacity: 1;
  transform: translateY(0);
}
/* ==========================================================
   🔹 Mobile View Optimization (Same Alignment, Clean Look)
   ========================================================== */
@media (max-width: 768px) {
  .sustain-container {
    position: relative;
    width: 100%;
    height: 550px; /* fits neatly on screen */
    margin: 0 auto;
    transform: scale(0.8);
    transform-origin: top center;
    margin-right: 10px;
    
  }
  .container {
    position: relative;
    width: 100%;
    height: 550px; /* fits neatly on screen */
    margin: 0 auto;
    transform: scale(0.8);
    transform-origin: top center;
    margin-right: 10px;
    margin-top: 20px;
  }
  
  

  /* Smaller, centered main circle */
  .sustain-center {

    width: 130px;
    height: 130px;
    padding: 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .center {
    width: 150px;
    height: 150px;
    padding: 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }


  /* Smaller cards around circle */
  .sustain-segment {
    width: 120px;
    height: 150px;
    font-size: 13px;
    padding: 10px;
  }
  .segment {
    width: 120px;
    height: 150px;
    font-size: 13px;
    padding: 10px;
  }

  /* Rearrange cards around the center more neatly */
   .quality {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
  }
  .creativity{
    top: 34%;
    right: 70px;
  }
  .responsibility{
    top: 70%;
    right: 100%;
  }
  .ethics{
    top: 70%;
    left: 40%;
  }
  .productivity{
    top: 34%;
    left: 70px;

  }
  .sustain-energy {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
  }
 

  .sustain-water {
    top: 32%;
    left: 1px;
  }
  

  .sustain-waste {
    top: 32%;
    right: 1%;
  }

  .sustain-biodiversity {
    bottom: 8%;
    left: 10%;
  }

  .sustain-community {
    bottom: 8%;
    right: 12%;
  }

  /* Adjust section text */
  .sustainability-text {
    font-size: 18px;
    margin-bottom: 10px;
    margin-right: 15px;
  }

  .sustainability p {
    font-size: 15px;
  }
}
/* =====================================================
   🔹 Mobile Fix for Floating Modal (Responsive & Centered)
   ===================================================== */
@media (max-width: 768px) {
  .sustainability {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  min-height: 50vh; 
  margin-bottom: 0;
  background-image: url(IMAGES/sustainability-background.png);
  background-color: #12b886;
  opacity: 0.9;
filter: brightness(1.1);
background-position: center 50%;
background-size: 800px; /* keeps the Earth visible and clean */
  background-repeat: no-repeat;
  margin-right: 40px;
  
  
        /* full height */
}
  .sustain-modal {
    position: fixed; /* instead of absolute for better placement */
    top: 60%;
    left: 80%;
    transform: translate(-50%, -70%) !important;
    width: 70%;
    max-width: 300px;
    padding: 18px 30px;
    border-radius: 15px;
    z-index: 999;
    text-align: center;
    background: rgba(0, 128, 0, 0.95); /* or match your theme */
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }

  .sustain-modal.show {
    display: block;
    opacity: 1;
  }

  /* Optional backdrop for focus */
  .sustain-modal::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
    z-index: -1;
  }
  .sustainability-text {
    margin-top: 20px;
  }
   .core-values {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  min-height: 50vh; 
  margin-bottom: 0;
  background-image: url(IMAGES/core\ values\ cover.png);
  background-color: red;
  opacity: 0.9;
filter: brightness(1.1);
background-position: center 50%;
background-size: 800px; /* keeps the Earth visible and clean */
  background-repeat: no-repeat;
 margin-right: 40px;
  
  
        /* full height */
}
.float-modal {
   top: 60%;
    left: 80%;
    transform: translate(-50%, -50%) !important;
  position: absolute;
  display: none;
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  width: 220px;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  opacity: 0;
 
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: left;
}
.float-modal.show {
  opacity: 1;
  transform: translateX(0);
}
  /* Optional backdrop for focus */
  .float-modal::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
    z-index: -1;
  }
  .corevalues-content {
    margin-top: 20px;
    margin-right: 25px;
  }
}

  .wecpl-life-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
  }

  .wecpl-life-section h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 50px;
    font-weight: 600;
  }
  .wecpl-life-section p{
    text-align: center;
    font-size: 25px;
    margin-bottom: 30px;
  }

  .wecpl-life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }

  .wecpl-life-block {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
  }

  .wecpl-life-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .wecpl-life-block:hover img {
    transform: scale(1.1);
  }

  .wecpl-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: 500;
    transition: bottom 0.4s ease;
  }

  .wecpl-life-block:hover .wecpl-overlay {
    bottom: 0;
  }

  /* Modal */
  .wecpl-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: wecplFadeIn 0.4s ease;
  }

  @keyframes wecplFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .wecpl-modal img {
    max-width: 80%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
  }

  .wecpl-modal img:hover {
    transform: scale(1.02);
  }

  .wecpl-caption {
    color: #fff;
    margin-top: 15px;
    font-size: 1.1em;
    text-align: center;
  }

  .wecpl-close-btn,
  .wecpl-nav-btn {
    position: absolute;
    color: white;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  .wecpl-close-btn:hover,
  .wecpl-nav-btn:hover {
    color: #f39c12;
  }

  .wecpl-close-btn {
    top: 25px;
    right: 35px;
  }

  .wecpl-nav-btn {
    top: 50%;
    transform: translateY(-50%);
  }

  .wecpl-prev-btn { left: 40px; }
  .wecpl-next-btn { right: 40px; }

.car-container {
    position: relative;
    max-width: 1100px;
    margin: 50px auto;
  }

  .car-image {
    width: 100%;
    display: block;  
  }

  /* glowing points */
  .hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 12px #ff0000, 0 0 25px rgba(255, 0, 0, 0.7);
    cursor: pointer;
    transition: transform 0.2s;
  }

  .hotspot:hover {
    transform: scale(1.3);
  }

  /* tooltip block */
  .tooltip {
    position: absolute;
    display: none;
    width: 200px;
    background: red;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: fadeInUp 0.4s ease;
    z-index: 10;
  }

  .tooltip img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .tooltip p {
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: white;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .machine-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 20px 0px;
}

.machine-slider .slide-track {
  display: flex;
  will-change: transform;
 gap: 30px;
  animation: scroll 30s linear infinite;
}

.machine-slider img {
  width: 300px; /* change as needed */
  margin-right: 30px;
  object-fit: cover;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.machine-slider:hover .slide-track {
  animation-play-state: paused;
}

