/* Simple modern CSS, responsive, neutral palette */

:root{
    --bg:#f7f8fb; --card:#ffffff; --accent:#0f52fe; --muted:#6b7280; --accent-2:#06b6d4;
    --maxw:1100px; --radius:12px; --shadow: 0 6px 24px rgba(16,24,40,0.08);
    font-family: 'Tahoma', 'Verdana', 'Segoe UI', sans-serif;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:#0b1220;line-height:1.5}
a{color:var(--accent);text-decoration:none}
.container{max-width:var(--maxw);margin:0 auto;padding:24px}

header{background:#14B8A6;padding:18px 0; position:fixed; width: 100%; z-index: 9999;}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:60px;height:60px;border-radius:10px;background:linear-gradient(135deg,var(--accent),var(--accent-2));display:flex;align-items:center;justify-content:center;color:white;font-weight:700}
nav ul{display:flex;gap:16px;list-style:none;padding:0;margin:0}
.cta{background:var(--accent);color:#fff;padding:10px 14px;border-radius:10px;box-shadow:var(--shadow);}

/* Slider */
.slider{margin-top:140px}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.slidesfade {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #0b1220;
    font-weight: bold;
    font-size: 30px;
    background-color: #f2f2f2;

    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: left;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Hero */
.hero{display:grid;grid-template-columns:1fr 420px;gap:40px;align-items:center;margin-top: 60px}
.hero-card{background:var(--card);padding:26px;border-radius:var(--radius);box-shadow:var(--shadow)}
.h1{font-size:28px;margin:0 0 10px}
.lead{color:var(--muted);margin:0 0 18px}
.features{display:flex;gap:12px;flex-wrap:wrap}
.feature{background:rgba(15,98,254,0.06);color:var(--accent);padding:8px 12px;border-radius:999px;font-weight:600;font-size:13px}

/* Services */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:30px}
.service{background:var(--card);padding:22px;border-radius:12px;box-shadow:0 6px 18px rgba(11,18,32,0.04)}
.service h4{margin:0 0 8px}
.muted{color:var(--muted);font-size:14px}

/* Process */
.process{display:flex;gap:14px;align-items:center;margin-top:22px}
.step{background:linear-gradient(180deg,#fff, #fbfdff);border-radius:10px;padding:18px;flex:1;box-shadow:0 4px 20px rgba(11,18,32,0.04)}
.step .num{background:var(--accent);color:#fff;width:34px;height:34px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;margin-right:8px}

/* Pricing */
.pricing{display:grid;grid-template-columns: repeat(3, 1fr);gap:12px;margin-top:24px}
.discount{grid-column:1 / -1; background: #f8fafc;padding:28px;border-left: 4px solid #2563eb;border-radius: 10px;flex:1;box-shadow:var(--shadow)}
.plan{background:var(--card);padding:18px;border-radius:12px;flex:1;box-shadow:var(--shadow)}

/* About & Contact */
.two-col{display:grid;grid-template-columns:1fr 380px;gap:18px;margin-top:24px}
.contact-card{background:var(--card);padding:18px;border-radius:12px}
form .row{display:flex;gap:8px;margin-bottom:8px}
input,textarea,select{width:100%;padding:10px;border-radius:8px;border:1px solid #e6e9ee;font-size:14px}
button{background:#cccccc;border:none;color:#666666;padding:10px 14px;border-radius:8px;cursor:not-allowed}
.btn-disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}
.btn-enabled {
    background-color: var(--accent);
    color: white;
    cursor: pointer;
}
footer{margin-top:28px;padding:18px 0;color:var(--muted);font-size:14px}

/* Responsive */
@media (max-width:980px){
    .hero{grid-template-columns:1fr}
    .grid{grid-template-columns:1fr}
    .two-col{grid-template-columns:1fr}
    .pricing{flex-direction:column}
}