:root{
  --grad-start:#0B63B3;
  --grad-2:#1AA05A;
  --grad-3:#F3C022;
  --grad-4:#F48B1F;
  --grad-end:#E94B3C;
  --brand-dark:#0b3f6f;
  --text:#222;
  --muted:#66676a;
  --max-width:1200px;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{font-family:Inter, "Segoe UI", Roboto, Arial, sans-serif;color:var(--text);background:#fff}
.container{max-width:var(--max-width);margin:0 auto;padding:20px}
.header{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{display:flex;align-items:center;gap:14px}
.brand img{height:56px}
.nav a{margin-left:18px;color:var(--text);text-decoration:none;font-weight:600}
.hero{display:flex;align-items:;gap:10px;padding:0px 0}
.hero .left{flex:1}
.hero h1{font-size:40px;line-height:1.05;margin-bottom:12px}
.cta{display:inline-block;background:linear-gradient(90deg,var(--grad-start),var(--grad-2));color:#fff;padding:12px 20px;border-radius:8px;text-decoration:none;font-weight:700}
.feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;margin:28px 0}
.card{border-radius:11px;padding:18px;border:1px solid #f0f0f0;background:#fff;box-shadow:0 6px 18px rgba(11,63,111,0.03)}
.h2{font-size:22px;margin-bottom:8px}
.lead{color:var(--muted);margin-bottom:14px;width:400px;}
.footer{border-top:1px solid #eee;padding:26px 0;margin-top:36px;color:var(--muted);display:flex;justify-content:space-between;align-items:center}
.small{font-size:14px}
.tagline{color:var(--muted);font-weight:600}
.grid-two{display:grid;grid-template-columns:1fr 380px;gap:24px}
.form input,.form textarea{width:100%;padding:12px;border:1px solid #ddd;border-radius:8px;margin-bottom:10px}
.btn-primary{background:linear-gradient(90deg,var(--grad-start),var(--grad-2));color:#fff;padding:12px 18px;border-radius:8px;border:none}
.kipl-gradient{background:linear-gradient(90deg,var(--grad-start),var(--grad-2),var(--grad-3),var(--grad-4),var(--grad-end));-webkit-background-clip:text;background-clip:text;color:transparent}
.meta{color:var(--muted);font-size:14px;margin-bottom:12px}
@media(max-width:800px){.hero{flex-direction:column}.grid-two{grid-template-columns:1fr}}
/* === Fiber Image Styling === */
.fiber-image {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
}

.fiber-image:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 18px rgba(11, 63, 111, 0.2);
}


.why-kipl {
  background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 100%);
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-title {
  font-size: 30px;
  font-weight: 800;
  color: #0B63B3;
  margin-bottom: 10px;
}

.why-title span {
  background: linear-gradient(90deg, #0B63B3, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(11, 63, 111, 0.08);
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  border-top: 4px solid #7C3AED;
  box-shadow: 0 10px 25px rgba(11, 63, 111, 0.12);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #7C3AED;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0B63B3;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .why-title {
    font-size: 24px;
  }
  .why-subtitle {
    font-size: 14px;
  }
}

.kipl-services {
  background: linear-gradient(135deg, #f9faff 0%, #ffffff 100%);
  padding: 30px 20px;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-size: 30px;
  font-weight: 800;
  color: #0B63B3;
  margin-bottom: 10px;
}

.services-title span {
  background: linear-gradient(90deg, #0B63B3, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(11, 63, 111, 0.08);
  padding: 5px;
  width: 31%;
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  border-top: 3px solid #7C3AED;
  box-shadow: 0 6px 18px rgba(11, 63, 111, 0.12);
}

.service-icon {
  font-size: 28px;
  color: #7C3AED;
  margin-bottom: 8px;
}

.service-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0B63B3;
  margin-bottom: 6px;
}

.service-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .service-item {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .service-item {
    width: 100%;
  }
  .services-title {
    font-size: 24px;
  }
}

}