:root{
  --orange:#f07f05;
  --teal:#0f8b84;
  --brown:#7a3b1a;
  --bg:#ffffff;
  --muted:#f5f5f5;
  --card-shadow:0 8px 30px rgba(15,0,0,0.12);
}

/* ===== RESET ===== */
*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:Montserrat, Roboto, sans-serif;
  background:#fff;
  color:#1b1b1b;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ===== TOP BAR ===== */
.top-bar{
  background:var(--teal);
  color:#fff;
  font-size:13px;
}
.top-bar-flex{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  flex-wrap:wrap;
  gap:10px;
}

/* ===== HEADER ===== */
.site-header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:999;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

.logo{
  height:46px;
}

.main-nav a{
  margin-left:22px;
  text-decoration:none;
  color:#222;
  font-weight:600;
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--orange);
  transition:.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after{
  width:100%;
}

/* ===== HERO WRAP ===== */
.hero-wrap{
  min-height:75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--muted) 0%, #ffffff 40%);
}

.hero-wrap::before,
.hero-wrap::after{
  content:"";
  position:absolute;
  z-index:0;
  transform:skewX(-20deg);
}

.hero-wrap::before{
  left:-20%;
  width:70%;
  height:120%;
  background:var(--orange);
}

.hero-wrap::after{
  right:-20%;
  width:45%;
  height:120%;
  background:var(--teal);
  transform:skewX(20deg);
}

/* ===== HERO SLIDER ===== */
.hero-slider{
  position:relative;
  width:100%;
  display:flex;
  justify-content:center;
  z-index:2;
}

.hero-slide{
  display:none;
  width:100%;
  opacity:0;
  transition:opacity 0.6s ease;
}

.hero-slide.active{
  display:block;
  opacity:1;
}

.hero-card{
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.95);
  border-radius:16px;
  padding:60px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  box-shadow:var(--card-shadow);
  max-width:1200px;
  margin:auto;
  backdrop-filter:blur(2px);
}

/* HERO CONTENT */
.hero-left{
  max-width:540px;
}

.hero-left h1{
  font-size:44px;
  color:var(--teal);
}

.hero-left h1 span{
  display:block;
  font-size:16px;
  font-weight:600;
}

.sub{
  color:var(--brown);
  font-weight:600;
  margin-top:6px;
}

.lead{
  margin:18px 0;
  font-family:Roboto;
}

.actions{
  display:flex;
  gap:14px;
}

/* BUTTONS */
.btn{
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

.btn-primary{
  background:var(--teal);
  color:#fff;
}

.btn-outline{
  border:2px solid #ddd;
  color:#222;
}

.btn-primary:hover{
  background:#0c6f69;
}

.btn-outline:hover{
  background:var(--orange);
  color:#fff;
  border-color:var(--orange);
}

/* HERO IMAGE */
.hero-right{
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-right img{
  max-width:420px;
  width:100%;
  border-radius:14px;
  box-shadow:var(--card-shadow);
}

/* ===== SLIDER ARROWS (SAFE ADDITION) ===== */
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.85);
  border:none;
  font-size:26px;
  padding:10px 14px;
  cursor:pointer;
  border-radius:50%;
  box-shadow:var(--card-shadow);
  z-index:5;
}

.hero-arrow.prev{left:15px}
.hero-arrow.next{right:15px}

/* ===== SLIDER DOTS (SAFE ADDITION) ===== */
.hero-dots{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}

.hero-dots .dot{
  width:10px;
  height:10px;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
}

.hero-dots .dot.active{
  background:var(--orange);
}

/* ===== SECTIONS ===== */
.section{
  padding:70px 0;
}

.section-title{
  text-align:center;
  font-size:30px;
  margin-bottom:25px;
  color:var(--teal);
}

.center-text{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.muted-bg{
  background:var(--muted);
}

/* ===== ABOUT PAGE ===== */
.about-layout{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:40px;
}

.about-text p{
  margin-bottom:16px;
}

.about-image img{
  width:100%;
  border-radius:12px;
  box-shadow:var(--card-shadow);
}

/* ===== SERVICES (CARDS) ===== */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.service-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,0.1);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 40px rgba(0,0,0,0.18);
}

.service-image{
  height:180px;
  overflow:hidden;
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}

.service-card:hover .service-image img{
  transform:scale(1.08);
}

.service-content{
  padding:20px;
  border-top:4px solid var(--orange);
  font-weight:600;
  color:var(--teal);
}

/* ===== ICON BOXES (Infra / Legal / Why Choose) ===== */
.infra-point{
  text-align:center;
  padding:30px 20px;
}

.infra-icon{
  width:44px;
  height:44px;
  fill:var(--orange);
  margin-bottom:15px;
}

.service-box{
  background:#fff;
  padding:30px 20px;
  text-align:center;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
  font-weight:600;
}

/* ===== CLIENTS ===== */
.clients-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.client-card{
  background:#fff;
  padding:30px 20px;
  text-align:center;
  font-weight:600;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
}

/* ===== CONTACT ===== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.contact-box{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
}

/* ===== FOOTER ===== */
.site-footer{
  background:var(--teal);
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  padding:40px 0;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .hero-card{
    grid-template-columns:1fr;
    padding:30px;
    text-align:center;
  }

  .hero-left{
    max-width:100%;
  }

  .hero-right{
    margin-top:20px;
  }

  .about-layout{
    grid-template-columns:1fr;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }
}

/* ===== VISION / MISSION / QUALITY ===== */
.vmq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.vmq-card{
  background:#fff;
  padding:35px 30px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 28px rgba(0,0,0,0.12);
}

.vmq-card h3{
  color:var(--teal);
  margin-bottom:12px;
  font-size:20px;
}

.vmq-card p{
  font-family:Roboto, sans-serif;
  font-size:15px;
  line-height:1.6;
}

/* Responsive */
@media(max-width:900px){
  .vmq-grid{
    grid-template-columns:1fr;
  }
}

/* ===== FOOTER LINK COLOR FIX ===== */
.site-footer a{
  color:#ffffff;
  text-decoration:none;
  opacity:0.9;
}

.site-footer a:hover{
  text-decoration:underline;
  opacity:1;
}

/* ===== MOBILE NAVIGATION ===== */
.menu-toggle{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
  color:#222;
}

/* Mobile styles */
@media (max-width: 900px){
  .menu-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-top:1px solid #eee;
    display:none;
    flex-direction:column;
    padding:15px 0;
  }

  .main-nav a{
    margin:10px 0;
    padding:10px 20px;
    display:block;
  }

  .main-nav.active{
    display:flex;
  }

  .header-flex{
    position:relative;
  }
}


/* plant section */
.plant-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.plant-title{
  text-align: center;
  color: var(--teal);
}
.prod-img-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.item {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: black;
}

.item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.item p {
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  margin: 0;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
  .prod-img-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .prod-img-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .prod-img-container {
    grid-template-columns: 1fr;
  }
}



/* Team */
/* Our Team Section */
.our-team-section {
  padding: 60px 15px;
  background-color: #f8f9fa;
  text-align: center;
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--teal);
}

/* Image Wrapper */
.team-image-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Team Image */
.team-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .team-image-wrapper {
    max-width: 100%;
  }
}