:root{
  --ink:#0b1f3a;
  --muted:rgba(11,31,58,.72);
  --line:rgba(11,31,58,.12);
  --bg:#f6f9ff;
  --card: rgba(255,255,255,.92);
  --shadow: 0 14px 40px rgba(11,31,58,.12);
  --shadow2: 0 18px 60px rgba(11,31,58,.14);
  --radius: 20px;
  --brand: #0ea5e9;
  --brand2:#22c55e;
  --max: 1180px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 550px at 10% 0%, rgba(14,165,233,.14), transparent 55%),
    radial-gradient(850px 520px at 95% 8%, rgba(34,197,94,.14), transparent 55%),
    var(--bg);
  line-height: 1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 32px)); margin:0 auto}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding: 11px 14px;border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  font-weight: 850; cursor:pointer;
  box-shadow: 0 8px 18px rgba(11,31,58,.08);
}
.btn.primary{
  border-color: rgba(14,165,233,.55);
  background: linear-gradient(90deg, rgba(14,165,233,.98), rgba(34,197,94,.95));
  color:#fff;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow)}
.btn:active{transform: translateY(0)}
svg.i{width:18px;height:18px;opacity:.85}

/* Row 1: logo + helpline */
.topline{
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topline .inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px; padding: 10px 0;
}
.brand{display:flex; align-items:center; gap: 12px}
.brand img{width: 200px}
.helpline{
  display:flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; align-items:center;
  font-weight: 800;
}
.helpline .chip{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 10px 12px; border-radius: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(11,31,58,.07);
}
.helpline small{display:block; font-weight: 800; color: var(--muted); margin-top: -2px}
.helpline strong{font-size: 14px}

/* Row 2: tabs nav */
.navrow{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246,249,255,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navrow .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 0; gap: 10px;
}
.nav{
  display:flex; gap: 8px; flex-wrap: wrap;
}
.nav a{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  color: rgba(11,31,58,.86);
}
.nav a:hover{background: rgba(255,255,255,.86); border-color: var(--line)}
.nav a.active{
  background: linear-gradient(90deg, rgba(14,165,233,.16), rgba(34,197,94,.10));
  border-color: rgba(14,165,233,.30);
}
.hamburger{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 18px rgba(11,31,58,.08);
  cursor:pointer;
  align-items:center; justify-content:center;
}
.hamburger span{width:20px;height:2px;background: rgba(11,31,58,.70);position:relative;display:block}
.hamburger span::before,.hamburger span::after{content:"";position:absolute;left:0;width:20px;height:2px;background: rgba(11,31,58,.70)}
.hamburger span::before{top:-6px}
.hamburger span::after{top:6px}

/* Row 3: slider */
.slider{
  width:100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  height: 420px;
}
.slides{
  display:flex;
  height: 100%;
  transition: transform .55s ease;
  will-change: transform;
}
.slide{
  flex: 0 0 100%;
  height: 100%;
}
.slide img{
  width:100%;
  height: 100%;
  object-fit: cover;           /* full-bleed */
  object-position: center;     /* center portion */
}
.slider .dots{
  position:absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display:flex; gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(11,31,58,.22);
  cursor:pointer;
}
.dot.active{background: linear-gradient(90deg, var(--brand), var(--brand2))}

/* Mobile banner tuning (prevents large blank area above/below) */
@media (max-width: 768px){
  .slider{ height: 260px; }
}

/* Sections */
.section{padding: 34px 0}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 12px;
  margin-bottom: 14px;
}
.section-title h2{
  margin:0;
  font-size: 28px;
  letter-spacing:-0.02em;
}
.section-title p{margin:0; color: var(--muted); font-weight: 700}

/* Row 4-5: services */
.services-wrap{
  background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(34,197,94,.12));
  border-top: 1px solid rgba(11,31,58,.08);
  border-bottom: 1px solid rgba(11,31,58,.08);
}
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(11,31,58,.10);
  padding: 16px;
  overflow:hidden;
  position:relative;
}
.service-card::before{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.22), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(34,197,94,.18), transparent 60%);
  border-radius: 50%;
}
.service-card .thumb{
  width: 90px; height: 90px;
  border-radius: 999px;
  border: 8px solid rgba(255,255,255,.85);
  box-shadow: 0 14px 30px rgba(11,31,58,.12);
  background: linear-gradient(135deg, rgba(14,165,233,.22), rgba(34,197,94,.18));
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 12px;
}
.service-card h3{margin: 0 0 6px; font-size: 16px; font-weight: 950}
.service-card p{margin:0; color: var(--muted); font-weight: 650; font-size: 14px}
.service-card a{display:inline-flex; margin-top: 12px; font-weight: 900; color: rgba(14,165,233,.95)}
.service-card a:hover{text-decoration: underline; text-underline-offset: 3px}

/* Row 6: why */
.why-wrap{background: rgba(255,255,255,.55); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.why-grid{display:grid; grid-template-columns: 1fr 1fr; gap: 14px}
.why-card{
  background: rgba(16,24,40,.92);
  color: #fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255,255,255,.12);
}
.why-card .media{height: 220px; display:flex; align-items:center; justify-content:center}
.why-card .media img{width:100%;height:100%;object-fit:cover; opacity:.92}
.why-card .content{padding: 16px}
.why-card h3{margin:0 0 8px; font-size: 18px; font-weight: 950}
.why-card p{margin:0; color: rgba(255,255,255,.78); font-weight: 650; font-size: 14px}
.why-card .cta{margin-top: 12px}
.why-card .cta a{
  display:inline-flex; padding: 10px 12px; border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 900;
}
.why-card .cta a:hover{background: rgba(255,255,255,.16)}

/* Row 7: contact */
.contact-wrap{
  background: linear-gradient(135deg, rgba(14,165,233,.92), rgba(34,197,94,.82));
  color: #fff;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  align-items: start;
}
.panel{
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 50px rgba(11,31,58,.18);
  padding: 18px;
}
.panel h3{margin:0 0 10px; font-size: 18px; font-weight: 950}
.hr{height: 1px; background: rgba(255,255,255,.30); border: 0; margin: 10px 0 14px}
.info{display:flex; flex-direction:column; gap: 12px}
.info .row{display:flex; gap: 12px; align-items:flex-start}
.info .row .ico{
  width: 36px; height: 36px; border-radius: 14px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  display:flex; align-items:center; justify-content:center;
  flex: 0 0 auto;
}
.info .row strong{display:block; font-weight: 950}
.info .row span{display:block; opacity:.92; font-weight: 650}

form{display:grid; gap: 12px}
.field{display:grid; gap: 6px}
label{font-weight: 900; font-size: 13px; opacity: .96}
input,textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  outline:none;
  font: inherit;
}
textarea{min-height: 140px; resize: vertical}
input:focus, textarea:focus{box-shadow: 0 0 0 4px rgba(255,255,255,.20); border-color: rgba(255,255,255,.55)}

/* Row 8: footer */
.footerline{
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.footerline .inner{
  display:flex; gap: 12px;
  align-items:center; justify-content:space-between;
  flex-wrap: wrap;
}
.footerline .links{
  display:flex; gap: 10px; flex-wrap: wrap;
  font-weight: 850;
  color: rgba(11,31,58,.86);
}
.footerline .links a{color: rgba(14,165,233,.95)}
.footerline .links a:hover{text-decoration: underline; text-underline-offset: 3px}
.footerline .social{display:flex; gap: 10px; align-items:center}
.social a{
  width: 38px; height: 38px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px rgba(11,31,58,.08);
}
.social a:hover{transform: translateY(-1px); box-shadow: var(--shadow)}
.small{color: var(--muted); font-weight: 750}

/* responsive */
@media (max-width: 980px){
  .services-grid{grid-template-columns: 1fr 1fr}
  .why-grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .hamburger{display:flex}
  .nav{display:none; width:100%}
  .nav.open{display:flex}
  .navrow .inner{flex-wrap: wrap}
  .slider{height: 360px}
}
@media (max-width: 520px){
  .services-grid{grid-template-columns: 1fr}
}

/* ===== MOBILE: show full banner image (no crop) ===== */
@media (max-width: 768px){

  .slide img{
    object-fit: contain !important;   /* shows full image */
    object-position: center center !important;
    background: #ffffff;              /* fills empty area */
  }

  /* slightly taller so image looks nicer */
  .slider{
    height: 300px !important;   /* you can try 280 / 300 / 320 */
  }
}
/* ===== Mobile logo size increase only ===== */
@media (max-width: 768px){

  .brand img{
    height: 65px;       width: 180px;
  }

}