
/* ================= GLOBAL ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111827;
}

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

.section-space{
  padding:90px 0;
}

img{
  width:100%;
  display:block;
}

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

.navbar{
  padding:24px 0;
  background:#fff;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-box{
  width:38px;
  height:38px;
  border-radius:10px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-size:18px;
}

.logo h2{
  font-size:28px;
  font-weight:700;
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  color:#374151;
  font-weight:500;
  font-size:15px;
}

.quote-btn{
  padding:14px 28px;
  background:#16a34a;
  border:none;
  border-radius:12px;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* ================= HERO ================= */

.hero{
  padding:40px 0 70px;
}

.hero-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.tagline{
  color:#16a34a;
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;
}

.hero-content h1{
  font-size:64px;
  line-height:1.1;
  margin:20px 0;
  font-weight:800;
}

.hero-content p{
  color:#6b7280;
  font-size:18px;
  line-height:1.8;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:45px;
}

.primary-btn{
  background:#16a34a;
  color:#fff;
  border:none;
  padding:16px 28px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
}

.secondary-btn{
  background:#fff;
  border:1px solid #d1d5db;
  padding:16px 28px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
}

.certifications{
  display:flex;
  align-items:center;
  gap:35px;
  flex-wrap:wrap;
  margin-top:10px;
}

.cert-item{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  padding:10px 18px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  min-height:60px;
}

.cert-item img{
  width:38px;
  height:38px;
  object-fit:contain;
}

.cert-item span{
  font-size:15px;
  font-weight:700;
  color:#111827;
}

.hero-image img{
  border-top-left-radius:250px;
  border-bottom-left-radius:250px;
  height:680px;
  object-fit:cover;
}

/* ================= TITLES ================= */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#16a34a;
  font-size:14px;
  font-weight:700;
}

.section-title h2{
  margin-top:12px;
  font-size:42px;
  font-weight:800;
}

/* ================= SOLUTIONS ================= */

.solution-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}

.card{
  background:#f9fafb;
  padding:35px 25px;
  border-radius:24px;
  transition:0.3s;
  border:2px solid transparent;
}

.card:hover{
  transform:translateY(-5px);
  border-color:#16a34a;
  box-shadow:0 10px 30px rgba(22,163,74,0.15);
}

.icon{
  margin-bottom:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  width:64px;
  height:64px;
  background:#e8f5e9;
  border-radius:16px;
  transition:0.3s;
}

.icon svg{
  color:#16a34a;
  stroke-width:2;
  transition:0.3s;
}

.card:hover .icon{
  background:#16a34a;
  transform:scale(1.1);
}

.card:hover .icon svg{
  color:#fff;
}

.card h3{
  margin-bottom:15px;
  font-size:22px;
}

.card p{
  color:#6b7280;
  line-height:1.7;
  margin-bottom:25px;
}

.card a{
  color:#16a34a;
  text-decoration:none;
  font-weight:600;
}

/* ================= PROCESS ================= */

.process-section{
  background:#f5f7f6;
  padding:90px 0;
}

.process-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.process-item{
  text-align:center;
}

.circle{
  width:100px;
  height:100px;
  border-radius:50%;
  background:#e8f5e9;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto auto 20px;
  border:3px solid #16a34a;
  transition:0.3s;
}

.circle svg{
  color:#16a34a;
  stroke-width:2;
  transition:0.3s;
}

.process-item:hover .circle{
  background:#16a34a;
  box-shadow:0 8px 20px rgba(22,163,74,0.3);
  transform:scale(1.1);
}

.process-item:hover .circle svg{
  color:#fff;
}

.line{
  width:70px;
  height:2px;
  background:#16a34a;
}

/* ================= INDUSTRIES ================= */

.industry-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.industry-card{
  padding:40px 20px;
  border:2px solid #e5e7eb;
  border-radius:20px;
  text-align:center;
  font-weight:600;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  transition:0.3s;
}

.industry-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(22,163,74,0.15);
  border-color:#16a34a;
  background:#f0fdf4;
}

.industry-card svg{
  color:#16a34a;
  stroke-width:1.5;
  transition:0.3s;
  padding:16px;
  background:#e8f5e9;
  border-radius:16px;
  width:80px;
  height:80px;
}

.industry-card:hover svg{
  background:#16a34a;
  color:#fff;
  transform:scale(1.1);
}

.industry-card h3{
  font-size:18px;
  font-weight:600;
  color:#111827;
  margin:0;
}

/* ================= CTA ================= */

.cta-section{
  padding:0;
  background:linear-gradient(to right,#0c7a2d,#043c1f);
  color:#fff;
}

.cta-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}

.cta-content{
  padding:80px 0;
}

.cta-content h2{
  font-size:54px;
  line-height:1.2;
  margin-bottom:20px;
}

.cta-content p{
  color:#d1d5db;
  margin-bottom:35px;
  font-size:18px;
}

.white-btn{
  background:#fff;
  color:#111827;
  border:none;
  padding:18px 30px;
  border-radius:14px;
  font-weight:700;
}

.cta-image img{
  width:100%;
  height:420px;
  object-fit:cover;
}

/* ================= FOOTER ================= */

.footer{
  background:#0f172a;
  color:#fff;
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1.5fr;
  gap:40px;
  padding-bottom:60px;
}

.footer-col h4{
  margin-bottom:20px;
  font-size:18px;
}

.footer-col a{
  display:block;
  text-decoration:none;
  color:#d1d5db;
  margin-bottom:12px;
}

.footer-col p{
  color:#d1d5db;
  line-height:1.8;
  margin-top:20px;
}

.newsletter{
  display:flex;
  overflow:hidden;
  border-radius:12px;
  margin-top:20px;
}

.newsletter input{
  flex:1;
  padding:15px;
  border:none;
  outline:none;
}

.newsletter button{
  width:60px;
  border:none;
  background:#16a34a;
  color:#fff;
  font-size:20px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:25px 0;
  color:#9ca3af;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .solution-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .industry-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-wrapper,
  .cta-wrapper{
    grid-template-columns:1fr;
  }

  .hero-image{
    order:2;
  }

  .hero-content{
    order:1;
  }

  .hero-image img{
    height:400px;
    border-radius:30px;
  }

  .cta-image img{
    height:350px;
  }
}

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .hero-content h1{
    font-size:42px;
  }

  .section-title h2{
    font-size:32px;
  }

  .cta-content h2{
    font-size:38px;
  }

  .solution-grid,
  .industry-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-image{
    display:block;
    order:2;
  }

  .hero-content{
    order:1;
  }

  .hero-image img{
    border-radius:24px;
    height:280px;
    width:100%;
    object-fit:cover;
  }

  .cta-image img{
    height:300px;
  }

  .process-wrapper{
    flex-direction:column;
  }

  .line{
    width:2px;
    height:50px;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
  }
}