
  :root{
    --navy:#0d2a4a;
    --navy-deep:#081b32;
    --blue:#1c8fc7;
    --blue-light:#eaf6fc;
    --blue-pale:#dcf1fb;
    --amber:#f6a81c;
    --amber-dark:#e59200;
    --ink:#0d2a4a;
    --muted:#5d7692;
    --white:#ffffff;
    --line:#e3edf5;
    --radius-lg:22px;
    --radius-md:16px;
    --radius-sm:10px;
    --shadow:0 20px 45px -20px rgba(13,42,74,0.25);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Nunito Sans', sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Baloo 2', sans-serif;
    color:var(--navy);
    margin:0;
    line-height:1.15;
  }
  p{margin:0;color:var(--muted);}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;margin:0;padding:0;}
  img{max-width:100%;display:block;}
  button{font-family:inherit;cursor:pointer;border:none;}

  .wrap{
    max-width:1240px;
    margin:0 auto;
    padding:0 32px;
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:15px 30px;
    border-radius:999px;
    font-weight:700;
    font-size:15px;
    font-family:'Nunito Sans',sans-serif;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:linear-gradient(180deg,#ffc247,var(--amber));
    color:var(--navy);
    box-shadow:0 14px 28px -10px rgba(230,150,10,0.55);
  }
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 32px -10px rgba(230,150,10,0.65);}
  .btn-outline{
    background:var(--white);
    color:var(--navy);
    border:1.5px solid var(--line);
  }
  .btn-outline:hover{border-color:var(--blue);color:var(--blue);transform:translateY(-2px);}
  .btn-ghost-dark{
    background:rgba(255,255,255,0.08);
    color:var(--white);
    border:1.5px solid rgba(255,255,255,0.35);
  }
  .btn-ghost-dark:hover{background:rgba(255,255,255,0.18);}

  /* ---------- Header ---------- */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 32px;
    max-width:1240px;
    margin:0 auto;
  }
  .logo{
    font-family:'Baloo 2',sans-serif;
    font-size:26px;
    font-weight:800;
    color:var(--navy);
    display:flex;
    align-items:center;
    gap:2px;
  }
  .logo span{color:var(--amber);}
  .nav-links{
    display:flex;
    gap:34px;
    align-items:center;
  }
  .nav-links a{
    font-size:15px;
    font-weight:600;
    color:var(--navy);
    opacity:0.8;
    transition:opacity .2s ease, color .2s ease;
    position:relative;
  }
  .nav-links a:hover{opacity:1;color:var(--blue);}
  .nav-links a.active{opacity:1;color:var(--blue);}
  .nav-right{
    display:flex;
    align-items:center;
    gap:22px;
  }
  .nav-phone{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    font-size:14.5px;
    color:var(--navy);
  }
  .nav-phone .icon-circle{
    width:38px;height:38px;border-radius:50%;
    background:var(--blue-light);
    display:flex;align-items:center;justify-content:center;
    color:var(--blue);
  }
  .burger{display:none;background:none;padding:6px;}
  .burger span{display:block;width:24px;height:2.5px;background:var(--navy);margin:5px 0;border-radius:2px;}

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    background:linear-gradient(180deg,#eef8fd 0%, #dcf1fb 55%, #eef8fd 100%);
    overflow:hidden;
    padding-top:20px;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:20px;
    align-items:center;
    position:relative;
    padding-top:56px;
    padding-bottom:0;
  }
  .hero-eyebrow{
    display:inline-block;
    font-size:12.5px;
    font-weight:800;
    letter-spacing:.06em;
    color:var(--blue);
    background:rgba(28,143,199,0.1);
    padding:7px 16px;
    border-radius:999px;
    margin-bottom:18px;
  }
  .hero h1{
    font-size:52px;
    font-weight:800;
    letter-spacing:-0.5px;
  }
  .hero h1 .line2{color:var(--blue);}
  .hero p.lead{
    margin-top:20px;
    font-size:16.5px;
    line-height:1.65;
    max-width:460px;
    color:var(--muted);
  }
  .hero-ctas{
    display:flex;
    gap:16px;
    margin-top:30px;
    flex-wrap:wrap;
  }
  .hero-features{
    display:flex;
    gap:26px;
    margin-top:42px;
    flex-wrap:wrap;
  }
  .hero-feature{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:700;
    color:var(--navy);
  }
  .hero-feature .dot{
    width:34px;height:34px;border-radius:50%;
    background:var(--white);
    box-shadow:0 6px 14px -4px rgba(13,42,74,0.18);
    display:flex;align-items:center;justify-content:center;
    color:var(--blue);
    flex-shrink:0;
  }
  .hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
  }
  .hero-visual img{
    width:100%;
    max-width:480px;
    border-radius:26px;
  }
  .hero-bubble-note{
    position:absolute;
    top:-6px;
    left:-10px;
    width:130px;
    height:130px;
    border-radius:50%;
    background:var(--white);
    box-shadow:0 16px 30px -10px rgba(13,42,74,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    color:var(--blue);
    font-size:15px;
    line-height:1.25;
    transform:rotate(-6deg);
    z-index:3;
  }
  .hero-wave{
    display:block;
    width:100%;
    margin-top:26px;
  }

  /* trust strip */
  .trust-strip{
    background:var(--navy);
    margin-top:-2px;
  }
  .trust-strip .wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    padding-top:0;
    padding-bottom:0;
  }
  .trust-card{
    display:flex;
    align-items:center;
    gap:16px;
    padding:30px 26px;
    border-right:1px solid rgba(255,255,255,0.09);
  }
  .trust-card:last-child{border-right:none;}
  .trust-card .ic{
    width:52px;height:52px;border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;align-items:center;justify-content:center;
    color:var(--amber);
    flex-shrink:0;
  }
  .trust-card h4{color:var(--white);font-size:16px;font-weight:700;font-family:'Nunito Sans',sans-serif;}
  .trust-card p{color:rgba(255,255,255,0.55);font-size:13px;margin-top:4px;line-height:1.5;}

  /* ---------- Section shared ---------- */
  section{padding:96px 0;}
  .eyebrow-pill{
    display:inline-block;
    font-size:12px;
    font-weight:800;
    letter-spacing:.05em;
    color:var(--amber-dark);
    background:#fff2da;
    padding:6px 16px;
    border-radius:999px;
    margin-bottom:16px;
  }
  .section-head{
    max-width:560px;
  }
  .section-head h2{
    font-size:36px;
    font-weight:800;
  }
  .section-head p{
    margin-top:12px;
    font-size:15.5px;
    line-height:1.6;
  }

  /* ---------- About ---------- */
  .about{
    background:var(--white);
  }
  .about .wrap{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:70px;
    align-items:center;
  }
  .about-visual{position:relative;}
  .about-visual img{border-radius:20px;}
  .about-copy p.lead{
    margin-top:16px;
    font-size:15.5px;
    line-height:1.7;
    max-width:480px;
  }
  .about-points{
    margin-top:28px;
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  .about-point{
    display:flex;
    gap:16px;
    align-items:flex-start;
  }
  .about-point .num{
    width:36px;height:36px;border-radius:10px;
    background:var(--blue-light);
    color:var(--blue);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
    font-weight:800;
    font-family:'Baloo 2',sans-serif;
  }
  .about-point h4{font-size:15.5px;font-weight:700;font-family:'Nunito Sans',sans-serif;color:var(--navy);}
  .about-point p{font-size:14px;margin-top:3px;line-height:1.55;}
  .about-copy .btn-outline{margin-top:30px;}

  .logo-strip{
    margin-top:90px;
    text-align:center;
  }
  .logo-strip p{
    font-size:12px;
    letter-spacing:.14em;
    font-weight:700;
    color:#a9bccf;
    text-transform:uppercase;
    margin-bottom:26px;
  }
  .logo-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:24px;
    opacity:0.55;
  }
  .logo-row span{
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    font-size:19px;
    color:#5d7692;
  }

  /* ---------- Booking ---------- */
  .booking{
    background:linear-gradient(160deg,var(--navy-deep),var(--navy) 60%);
    position:relative;
    overflow:hidden;
    color:var(--white);
  }
  .booking .wrap{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
  }
  .booking h2{
    color:var(--white);
    font-size:32px;
    font-weight:800;
    max-width:480px;
  }
  .booking h2 .accent{color:#7fd4ff;}
  .booking p.lead{
    color:rgba(255,255,255,0.65);
    margin-top:14px;
    font-size:15px;
    max-width:440px;
  }
  .booking-form{
    margin-top:32px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:var(--radius-lg);
    padding:26px;
    backdrop-filter:blur(6px);
  }
  .form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .form-grid input, .form-grid select{
    width:100%;
    padding:14px 16px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.14);
    background:rgba(255,255,255,0.95);
    font-family:'Nunito Sans',sans-serif;
    font-size:14px;
    color:var(--navy);
    outline:none;
  }
  .form-grid input::placeholder{color:#8ba0b7;}
  .form-grid input:focus, .form-grid select:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(28,143,199,0.25);
  }
  .booking-form .btn-primary{
    width:100%;
    margin-top:16px;
    padding:16px;
  }
  .booking-visual{position:relative;}
  .booking-visual img{
    border-radius:24px;
    box-shadow:0 30px 60px -20px rgba(0,0,0,0.45);
  }

  /* ---------- Services ---------- */
  .services-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:24px;
  }
  .view-all{
    font-weight:700;
    font-size:14px;
    color:var(--blue);
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
  }
  .services-grid{
    margin-top:44px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
  }
  .service-card{
    position:relative;
    border-radius:var(--radius-md);
    overflow:hidden;
    aspect-ratio:3/3.6;
    box-shadow:0 14px 30px -14px rgba(13,42,74,0.22);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .service-card:hover{transform:translateY(-6px);box-shadow:0 22px 40px -14px rgba(13,42,74,0.3);}
  .service-card img{
    width:100%;height:100%;object-fit:cover;
  }
  .service-card .label{
    position:absolute;
    left:0;right:0;bottom:0;
    padding:16px 14px 14px;
    background:linear-gradient(0deg,rgba(8,27,50,0.85),rgba(8,27,50,0));
    color:var(--white);
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    font-size:14.5px;
  }

  /* ---------- How it works ---------- */
  .how{background:var(--blue-light);}
  .how-steps{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
    position:relative;
  }
  .how-steps::before{
    content:"";
    position:absolute;
    top:34px;
    left:60px;
    right:60px;
    height:2px;
    background:repeating-linear-gradient(90deg,#c3ddec 0 10px, transparent 10px 20px);
    z-index:0;
  }
  .how-step{
    text-align:center;
    position:relative;
    z-index:1;
  }
  .how-step .circle{
    width:68px;height:68px;border-radius:50%;
    background:var(--white);
    box-shadow:0 10px 22px -8px rgba(13,42,74,0.18);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 16px;
    color:var(--blue);
    border:2px solid var(--white);
  }
  .how-step .tag{
    font-size:11.5px;
    font-weight:800;
    color:var(--amber-dark);
    letter-spacing:.05em;
    margin-bottom:6px;
  }
  .how-step h4{font-size:15.5px;font-weight:700;font-family:'Nunito Sans',sans-serif;color:var(--navy);}
  .how-step p{font-size:13px;margin-top:5px;line-height:1.5;}

  /* ---------- Labs row ---------- */
  .labs{background:var(--white);}
  .labs .wrap{
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr;
    gap:24px;
  }
  .lab-card{
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:26px;
    display:flex;
    flex-direction:column;
  }
  .lab-card h3{font-size:21px;font-weight:800;}
  .lab-card p.sub{font-size:13.5px;margin-top:6px;}
  .lab-card .eyebrow-pill{margin-bottom:14px;}
  .ba-photo{
    margin-top:20px;
    border-radius:16px;
    overflow:hidden;
    position:relative;
  }
  .ba-photo img{width:100%;display:block;}
  .ba-tags{
    position:absolute;
    bottom:14px;
    left:14px;
    right:14px;
    display:flex;
    justify-content:space-between;
  }
  .ba-tags span{
    background:rgba(8,27,50,0.55);
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:.04em;
    padding:5px 12px;
    border-radius:999px;
    backdrop-filter:blur(4px);
  }
  .chip-row{
    margin-top:22px;
    display:flex;
    gap:14px;
    flex:1;
    align-items:flex-start;
  }
  .chip{
    text-align:center;
    flex:1;
  }
  .chip .circle{
    width:64px;height:64px;border-radius:50%;
    background:var(--blue-light);
    display:flex;align-items:center;justify-content:center;
    font-size:26px;
    margin:0 auto 10px;
  }
  .chip span{font-size:12.5px;font-weight:700;color:var(--navy);}
  .lab-card .link-btn{
    margin-top:auto;
    padding-top:22px;
    font-weight:700;
    font-size:13.5px;
    color:var(--blue);
    display:inline-flex;
    align-items:center;
    gap:6px;
  }

  /* ---------- Testimonials ---------- */
  .testimonials{background:linear-gradient(180deg,#f3fafd,#ffffff);}
  .t-grid{
    margin-top:44px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }
  .t-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:24px;
    box-shadow:0 16px 34px -20px rgba(13,42,74,0.2);
  }
  .t-top{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .t-top img{
    width:52px;height:52px;border-radius:50%;
    object-fit:cover;
  }
  .t-name{font-weight:800;font-family:'Baloo 2',sans-serif;font-size:15.5px;color:var(--navy);}
  .stars{color:var(--amber);font-size:13px;margin-top:3px;letter-spacing:1px;}
  .t-card p.quote{
    margin-top:16px;
    font-size:14.5px;
    line-height:1.6;
    color:var(--muted);
  }

  /* ---------- CTA ---------- */
  .cta{
    position:relative;
    background:linear-gradient(180deg,#f3fafd,#eaf6fc);
    overflow:hidden;
    padding:0;
  }
  .cta-inner{
    max-width:1240px;
    margin:0 auto;
    padding:100px 32px 0;
    position:relative;
    z-index:2;
  }
  .cta-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:40px;
  }
  .cta-text h2{
    font-size:40px;
    font-weight:800;
  }
  .cta-text h2 .accent{color:var(--blue);}
  .cta-text p{margin-top:14px;font-size:15.5px;max-width:420px;}
  .cta-text .btn-primary{margin-top:28px;}
  .cta-badges{
    display:flex;
    gap:28px;
    margin-top:34px;
    flex-wrap:wrap;
  }
  .cta-badges .hero-feature .dot{background:var(--white);}
  .cta-visual{
    display:flex;
    justify-content:center;
  }
  .cta-visual img{max-width:340px;}
  .wave-strip{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:left bottom;
    display:block;
    margin-top:60px;
  }
  @media(max-width:680px){
    .wave-strip{height:170px;}
  }

  /* ---------- Footer ---------- */
  footer{
    background:var(--navy-deep);
    color:rgba(255,255,255,0.7);
    padding-top:56px;
  }
  .footer-top{
    display:grid;
    grid-template-columns:1.3fr 0.8fr 0.9fr 1.1fr 1fr;
    gap:36px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .logo{color:var(--white);}
  .footer-brand p{
    margin-top:14px;
    font-size:13.5px;
    line-height:1.6;
    max-width:230px;
    color:rgba(255,255,255,0.5);
  }
  .social-row{
    display:flex;
    gap:10px;
    margin-top:20px;
  }
  .social-row a{
    width:36px;height:36px;border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;align-items:center;justify-content:center;
    color:var(--white);
    transition:background .2s ease;
  }
  .social-row a:hover{background:var(--blue);}
  .footer-col h5{
    color:var(--white);
    font-family:'Baloo 2',sans-serif;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
  }
  .footer-col li{margin-bottom:11px;}
  .footer-col a{
    font-size:13.5px;
    color:rgba(255,255,255,0.55);
    transition:color .2s ease;
  }
  .footer-col a:hover{color:var(--white);}
  .footer-contact li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:13px;
    color:rgba(255,255,255,0.6);
    line-height:1.5;
    margin-bottom:14px;
  }
  .footer-contact .ic{color:#7fd4ff;flex-shrink:0;margin-top:1px;}
  .footer-map{
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.1);
    aspect-ratio:4/3;
  }
  .footer-map iframe, .footer-map .map-fallback{
    width:100%;height:100%;border:0;
  }
  .map-fallback{
    background:linear-gradient(135deg,#123456,#0d2a4a);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#7fd4ff;
    font-size:13px;
    font-weight:700;
    flex-direction:column;
    gap:8px;
  }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    font-size:12.5px;
    color:rgba(255,255,255,0.4);
    flex-wrap:wrap;
    gap:10px;
  }
  .footer-bottom a{margin-left:18px;color:rgba(255,255,255,0.4);}
  .footer-bottom a:hover{color:var(--white);}

  .back-top{
    position:fixed;
    bottom:26px;
    right:26px;
    width:46px;height:46px;
    border-radius:50%;
    background:var(--amber);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 24px -6px rgba(0,0,0,0.35);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
    z-index:200;
  }
  .back-top.show{opacity:1;pointer-events:auto;}
  .back-top:hover{transform:translateY(-3px);}

  .whatsapp-float{
    position:fixed;
    bottom:26px;
    left:26px;
    width:56px;height:56px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    box-shadow:0 12px 26px -8px rgba(37,211,102,0.55);
    z-index:200;
    transition:transform .2s ease;
  }
  .whatsapp-float:hover{transform:scale(1.08);}

  /* ---------- Responsive ---------- */
  @media(max-width:1080px){
    .services-grid{grid-template-columns:repeat(3,1fr);}
    .footer-top{grid-template-columns:1fr 1fr;}
    .labs .wrap{grid-template-columns:1fr;}
  }
  @media(max-width:920px){
    .nav-links{display:none;}
    .burger{display:block;}
    .hero .wrap{grid-template-columns:1fr;padding-top:30px;}
    .hero-visual{order:-1;max-width:420px;margin:0 auto;}
    .hero h1{font-size:38px;}
    .about .wrap{grid-template-columns:1fr;gap:40px;}
    .booking .wrap{grid-template-columns:1fr;}
    .booking-visual{order:-1;max-width:420px;margin:0 auto;}
    .cta-grid{grid-template-columns:1fr;text-align:center;}
    .cta-text p{margin-left:auto;margin-right:auto;}
    .cta-badges{justify-content:center;}
    .cta-visual{order:-1;}
    .trust-strip .wrap{grid-template-columns:1fr;}
    .trust-card{border-right:none;border-bottom:1px solid rgba(255,255,255,0.09);}
    .how-steps{grid-template-columns:repeat(3,1fr);row-gap:34px;}
    .how-steps::before{display:none;}
  }
  @media(max-width:680px){
    .wrap{padding:0 20px;}
    section{padding:64px 0;}
    .services-grid{grid-template-columns:repeat(2,1fr);}
    .t-grid{grid-template-columns:1fr;}
    .labs .wrap{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;}
    .form-grid{grid-template-columns:1fr;}
    .how-steps{grid-template-columns:repeat(2,1fr);}
    .hero h1{font-size:32px;}
    .section-head h2{font-size:28px;}
    .cta-text h2{font-size:30px;}
    .nav{padding:14px 20px;}
    .nav-phone{display:none;}
    .nav-right{gap:10px;}
    .nav-right .btn-primary{padding:9px 13px !important;font-size:0 !important;gap:0;}
    .nav-right .btn-primary svg{width:18px;height:18px;}
    .burger{flex-shrink:0;}
  }

/* ================= ADDITIONS: MULTI-PAGE MKDC SITE ================= */

/* Header brand lockup with real logo mark + text (accessible, crisp at any size) */
.brand{
  display:flex;
  align-items:center;
  gap:11px;
}
.brand img.brand-mark{
  width:46px;height:46px;object-fit:contain;flex-shrink:0;
}
.brand .brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .brand-text .brand-name{
  font-family:'Baloo 2',sans-serif;
  font-weight:800;
  font-size:19px;
  color:var(--navy);
  white-space:nowrap;
}
.brand .brand-text .brand-sub{
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--blue);
  text-transform:uppercase;
  white-space:nowrap;
}
footer .brand .brand-text .brand-name{color:var(--white);}
footer .brand .brand-text .brand-sub{color:#7fd4ff;}

@media(max-width:400px){
  .brand .brand-text .brand-sub{display:none;}
}

/* Page hero (inner pages) */
.page-hero{
  background:linear-gradient(180deg,#eef8fd 0%, #dcf1fb 100%);
  padding:52px 0 46px;
  position:relative;
  overflow:hidden;
}
.breadcrumbs{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
  margin-bottom:16px;
  flex-wrap:wrap;
}
.breadcrumbs a{color:var(--blue);}
.breadcrumbs .sep{color:#b7c9da;}
.breadcrumbs .current{color:var(--navy);}
.page-hero h1{
  font-size:40px;
  font-weight:800;
  max-width:720px;
}
.page-hero p.lead{
  margin-top:14px;
  font-size:16px;
  max-width:600px;
  line-height:1.6;
}
@media(max-width:680px){
  .page-hero h1{font-size:29px;}
}

/* Icon-tile service cards (for services without a matching photo) */
.service-card.icon-tile{
  background:linear-gradient(150deg,var(--navy),var(--blue) 130%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:#fff;
  text-align:center;
  padding:20px;
}
.service-card.icon-tile .tile-icon{
  width:56px;height:56px;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  display:flex;align-items:center;justify-content:center;
}
.service-card.icon-tile .label{
  position:static;
  background:none;
  padding:0;
  font-size:15px;
}
.service-card.icon-tile p{
  color:rgba(255,255,255,0.75);
  font-size:12px;
  line-height:1.4;
}

/* Service detail rows (services.html) */
.service-detail{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:56px;
  align-items:center;
  padding:64px 0;
  border-bottom:1px solid var(--line);
}
.service-detail:last-child{border-bottom:none;}
.service-detail.reverse{grid-template-columns:1.15fr 0.85fr;}
.service-detail.reverse .service-detail-visual{order:2;}
.service-detail-visual img{
  border-radius:var(--radius-lg);
  width:100%;
  box-shadow:var(--shadow);
}
.service-detail-visual.icon-visual{
  border-radius:var(--radius-lg);
  background:linear-gradient(150deg,var(--navy),var(--blue) 130%);
  aspect-ratio:4/3.1;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
}
.service-detail-visual.icon-visual svg{width:96px;height:96px;color:#fff;opacity:.92;}
.service-detail-copy .eyebrow-pill{margin-bottom:14px;}
.service-detail-copy h2{font-size:28px;font-weight:800;}
.service-detail-copy p.desc{margin-top:14px;font-size:15px;line-height:1.7;}
.service-detail-copy ul.feature-list{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:11px;
}
.service-detail-copy ul.feature-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:14px;
  color:var(--navy);
  font-weight:600;
}
.service-detail-copy ul.feature-list li svg{color:var(--blue);flex-shrink:0;margin-top:2px;}
.service-detail-copy .btn{margin-top:24px;}

/* FAQ accordion */
.faq-list{max-width:820px;margin:0 auto;}
.faq-item{
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  margin-bottom:14px;
  overflow:hidden;
  background:var(--white);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  background:none;
  text-align:left;
  font-family:'Nunito Sans',sans-serif;
  font-weight:700;
  font-size:15.5px;
  color:var(--navy);
}
.faq-q .chevron{
  flex-shrink:0;
  width:26px;height:26px;
  border-radius:50%;
  background:var(--blue-light);
  color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  transition:transform .25s ease;
}
.faq-item.open .faq-q .chevron{transform:rotate(180deg);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq-a-inner{
  padding:0 22px 20px;
  font-size:14.5px;
  line-height:1.7;
  color:var(--muted);
}
.faq-item.open .faq-a{max-height:600px;}

/* Locations hub grid */
.locations-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.location-card{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:26px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display:flex;
  flex-direction:column;
}
.location-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:transparent;}
.location-card .loc-icon{
  width:48px;height:48px;border-radius:50%;
  background:var(--blue-light);
  color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.location-card h3{font-size:18.5px;font-weight:800;}
.location-card p{font-size:13.5px;margin-top:8px;line-height:1.6;flex:1;}
.location-card .loc-link{
  margin-top:16px;
  font-weight:700;
  font-size:13.5px;
  color:var(--blue);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* Location detail page */
.locality-highlights{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.locality-highlights .hl{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
}
.locality-highlights .hl svg{color:var(--blue);flex-shrink:0;margin-top:2px;}
.locality-highlights .hl h4{font-size:14.5px;font-weight:700;font-family:'Nunito Sans',sans-serif;color:var(--navy);}
.locality-highlights .hl p{font-size:13.5px;margin-top:3px;line-height:1.55;}

.area-services{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.area-services span{
  background:var(--blue-light);
  color:var(--blue);
  font-weight:700;
  font-size:12.5px;
  padding:8px 16px;
  border-radius:999px;
}

/* Blog */
.blog-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.blog-card{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);}
.blog-card .blog-thumb{
  aspect-ratio:16/10;
  background:linear-gradient(150deg,var(--navy),var(--blue) 130%);
  display:flex;
  align-items:center;
  justify-content:center;
}
.blog-card .blog-thumb svg{width:44px;height:44px;color:rgba(255,255,255,0.85);}
.blog-card .blog-body{padding:22px;display:flex;flex-direction:column;flex:1;}
.blog-card .blog-cat{
  font-size:11.5px;
  font-weight:800;
  letter-spacing:.05em;
  color:var(--amber-dark);
  margin-bottom:10px;
}
.blog-card h3{font-size:17px;font-weight:800;line-height:1.35;}
.blog-card p{font-size:13.5px;margin-top:10px;line-height:1.6;flex:1;}
.blog-card .read-more{
  margin-top:16px;
  font-weight:700;
  font-size:13.5px;
  color:var(--blue);
}
.blog-article{
  max-width:760px;
  margin:0 auto;
}
.blog-article h2{font-size:24px;font-weight:800;margin-top:36px;margin-bottom:14px;}
.blog-article h3{font-size:19px;font-weight:800;margin-top:26px;margin-bottom:10px;color:var(--navy);}
.blog-article p{font-size:15.5px;line-height:1.8;margin-bottom:16px;color:var(--muted);}
.blog-article ul{margin:0 0 16px 0;padding-left:0;}
.blog-article ul li{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  padding-left:26px;
  position:relative;
  margin-bottom:10px;
}
.blog-article ul li::before{
  content:"";
  position:absolute;
  left:0;top:8px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--blue);
}
.blog-article .callout{
  background:var(--blue-light);
  border-left:4px solid var(--blue);
  border-radius:12px;
  padding:18px 22px;
  margin:24px 0;
  font-size:14.5px;
  line-height:1.7;
  color:var(--navy);
}
.article-meta{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:18px;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}
.article-meta span{display:flex;align-items:center;gap:6px;}

/* Pricing table */
.pricing-table-wrap{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  margin-top:16px;
}
table.pricing-table{
  width:100%;
  border-collapse:collapse;
}
table.pricing-table th{
  background:var(--navy);
  color:#fff;
  text-align:left;
  padding:16px 22px;
  font-size:13.5px;
  font-weight:700;
  letter-spacing:.02em;
}
table.pricing-table td{
  padding:15px 22px;
  font-size:14.5px;
  color:var(--navy);
  border-bottom:1px solid var(--line);
}
table.pricing-table tr:last-child td{border-bottom:none;}
table.pricing-table tr:nth-child(even) td{background:#f8fbfd;}
table.pricing-table td.price{font-weight:800;color:var(--blue);white-space:nowrap;}
.pricing-note{
  margin-top:16px;
  font-size:13px;
  color:var(--muted);
  display:flex;
  gap:8px;
}

/* Hours table */
.hours-table{width:100%;border-collapse:collapse;margin-top:16px;}
.hours-table td{
  padding:11px 0;
  border-bottom:1px solid var(--line);
  font-size:14.5px;
}
.hours-table td:first-child{font-weight:700;color:var(--navy);width:140px;}
.hours-table td:last-child{color:var(--muted);}
.hours-table tr.closed td:last-child{color:#d1495b;font-weight:700;}
.hours-table tr.today td{background:#fff9ec;}

/* Contact page */
.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:50px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  margin-bottom:18px;
}
.contact-card h3{font-size:16px;font-weight:800;margin-bottom:14px;display:flex;align-items:center;gap:10px;}
.contact-card h3 svg{color:var(--blue);}
.contact-card address{font-style:normal;font-size:14.5px;line-height:1.7;color:var(--muted);}
.map-embed{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  aspect-ratio:4/3.2;
}
.map-embed iframe{width:100%;height:100%;border:0;}

/* Owner card (about page) */
.owner-card{
  margin-top:40px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px;
  display:flex;
  gap:24px;
  align-items:center;
}
.owner-card .avatar{
  width:78px;height:78px;border-radius:50%;
  background:linear-gradient(150deg,var(--navy),var(--blue));
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:'Baloo 2',sans-serif;
  font-size:28px;font-weight:800;
  flex-shrink:0;
}
.owner-card h4{font-size:17px;font-weight:800;}
.owner-card .role{font-size:12.5px;font-weight:700;color:var(--blue);text-transform:uppercase;letter-spacing:.04em;margin-top:2px;}
.owner-card p{font-size:14px;margin-top:8px;line-height:1.6;}

/* Values grid (about) */
.values-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.value-card{
  padding:26px 22px;
  border-radius:var(--radius-md);
  background:var(--blue-light);
}
.value-card .ic{
  width:46px;height:46px;border-radius:12px;
  background:var(--white);
  color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.value-card h4{font-size:15px;font-weight:800;}
.value-card p{font-size:13px;margin-top:6px;line-height:1.55;}

/* Process steps (about / services) */
.process-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

/* ============== CHATBOT ============== */
.chatbot-toggle{
  position:fixed;
  bottom:26px;
  right:26px;
  width:60px;height:60px;
  border-radius:50%;
  background:linear-gradient(150deg,var(--navy),var(--blue));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px -8px rgba(13,42,74,0.5);
  z-index:210;
  transition:transform .2s ease;
}
.chatbot-toggle:hover{transform:scale(1.07);}
.chatbot-toggle .badge-dot{
  position:absolute;
  top:2px;right:2px;
  width:14px;height:14px;
  border-radius:50%;
  background:#ff5a5f;
  border:2px solid #fff;
}
.back-top{right:96px;}
@media(max-width:680px){
  .chatbot-toggle{width:52px;height:52px;bottom:18px;right:18px;}
  .whatsapp-float{width:50px;height:50px;bottom:18px;left:18px;}
  .back-top{right:80px;bottom:18px;width:40px;height:40px;}
}

.chat-window{
  position:fixed;
  bottom:98px;
  right:26px;
  width:360px;
  max-width:calc(100vw - 32px);
  height:520px;
  max-height:calc(100vh - 140px);
  background:var(--white);
  border-radius:20px;
  box-shadow:0 30px 60px -16px rgba(13,42,74,0.45);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  z-index:210;
  opacity:0;
  transform:translateY(16px) scale(0.97);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  border:1px solid var(--line);
}
.chat-window.open{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}
.chat-head{
  background:linear-gradient(150deg,var(--navy),var(--blue));
  color:#fff;
  padding:16px 18px;
  display:flex;
  align-items:center;
  gap:12px;
}
.chat-head .mark{
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,0.16);
  display:flex;align-items:center;justify-content:center;
}
.chat-head .info h4{color:#fff;font-size:14.5px;font-weight:800;font-family:'Nunito Sans',sans-serif;}
.chat-head .info p{color:rgba(255,255,255,0.75);font-size:11.5px;margin-top:2px;display:flex;align-items:center;gap:5px;}
.chat-head .info p .dot{width:7px;height:7px;border-radius:50%;background:#4ade80;display:inline-block;}
.chat-head .close-chat{
  margin-left:auto;
  background:rgba(255,255,255,0.14);
  width:28px;height:28px;
  border-radius:50%;
  color:#fff;
  display:flex;align-items:center;justify-content:center;
}
.chat-body{
  flex:1;
  overflow-y:auto;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  background:#f6fafc;
}
.chat-msg{
  max-width:82%;
  padding:11px 14px;
  border-radius:14px;
  font-size:13.5px;
  line-height:1.55;
}
.chat-msg.bot{
  background:#fff;
  border:1px solid var(--line);
  align-self:flex-start;
  border-bottom-left-radius:4px;
  color:var(--navy);
}
.chat-msg.user{
  background:linear-gradient(150deg,var(--navy),var(--blue));
  color:#fff;
  align-self:flex-end;
  border-bottom-right-radius:4px;
}
.chat-msg a{color:var(--blue);font-weight:700;text-decoration:underline;}
.chat-msg.bot a{color:var(--blue);}
.chat-msg ul{margin:6px 0 0 18px;padding:0;}
.chat-msg li{margin-bottom:3px;}
.chat-quick{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  padding:0 16px 12px;
  background:#f6fafc;
}
.chat-quick button{
  background:#fff;
  border:1px solid var(--line);
  color:var(--navy);
  font-size:12px;
  font-weight:700;
  padding:8px 13px;
  border-radius:999px;
  transition:background .15s ease, color .15s ease, border-color .15s ease;
}
.chat-quick button:hover{background:var(--blue);color:#fff;border-color:var(--blue);}
.chat-input-row{
  display:flex;
  gap:8px;
  padding:12px;
  border-top:1px solid var(--line);
  background:#fff;
}
.chat-input-row input{
  flex:1;
  border:1px solid var(--line);
  border-radius:999px;
  padding:11px 16px;
  font-size:13.5px;
  font-family:'Nunito Sans',sans-serif;
  outline:none;
}
.chat-input-row input:focus{border-color:var(--blue);}
.chat-input-row button{
  width:40px;height:40px;
  border-radius:50%;
  background:var(--amber);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.chat-wa-footer{
  padding:10px 14px;
  background:#eafaf0;
  border-top:1px solid #d5f0de;
  text-align:center;
}
.chat-wa-footer a{
  color:#1a8a4a;
  font-weight:800;
  font-size:12.5px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.typing-dots{display:inline-flex;gap:3px;align-items:center;padding:4px 2px;}
.typing-dots span{width:6px;height:6px;border-radius:50%;background:#9fb4c6;animation:blink 1.2s infinite ease-in-out;}
.typing-dots span:nth-child(2){animation-delay:.2s;}
.typing-dots span:nth-child(3){animation-delay:.4s;}
@keyframes blink{0%,80%,100%{opacity:.3;}40%{opacity:1;}}

@media(max-width:920px){
  .service-detail, .service-detail.reverse{grid-template-columns:1fr;gap:28px;}
  .service-detail.reverse .service-detail-visual{order:0;}
  .locations-grid{grid-template-columns:repeat(2,1fr);}
  .blog-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .process-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:680px){
  .locations-grid, .blog-grid, .values-grid, .process-grid{grid-template-columns:1fr;}
  .chat-window{right:16px;bottom:82px;width:calc(100vw - 32px);}
}

/* ---- Mobile nav dropdown ---- */
@media(max-width:920px){
  .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;right:0;
    background:var(--white);
    flex-direction:column;
    gap:0;
    padding:8px 20px 18px;
    border-bottom:1px solid var(--line);
    box-shadow:0 18px 30px -14px rgba(13,42,74,0.2);
  }
  .nav-links.mobile-open{display:flex;}
  .nav-links a{
    padding:13px 4px;
    border-bottom:1px solid var(--line);
    width:100%;
  }
  .nav-links a:last-child{border-bottom:none;}
  header{position:sticky;}
  .nav{position:relative;}
  .burger.active span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
  .burger.active span:nth-child(2){opacity:0;}
  .burger.active span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}
}

/* ================= CURSOR WATER FX ================= */
#mkdc-fx-layer{
  position:fixed;
  top:0;left:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  overflow:hidden;
  z-index:9999;
}
.mkdc-bubble{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  background:radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), rgba(158,216,255,0.55) 55%, rgba(48,143,214,0.25) 100%);
  border:1px solid rgba(255,255,255,0.7);
  box-shadow:0 0 6px rgba(93,180,230,0.35) inset, 0 2px 6px rgba(13,42,74,0.12);
  animation:mkdc-bubble-float ease-out forwards;
  will-change:transform,opacity;
}
@keyframes mkdc-bubble-float{
  0%{transform:translate(0,0) scale(0.4);opacity:0;}
  10%{opacity:0.9;}
  100%{transform:translate(var(--drift), -90px) scale(1);opacity:0;}
}
.mkdc-splash-ring{
  position:absolute;
  width:10px;height:10px;
  margin-left:-5px;margin-top:-5px;
  border-radius:50%;
  border:2px solid rgba(64,163,222,0.65);
  pointer-events:none;
  animation:mkdc-splash-ring-grow 600ms ease-out forwards;
}
@keyframes mkdc-splash-ring-grow{
  0%{width:6px;height:6px;margin-left:-3px;margin-top:-3px;opacity:0.85;border-width:3px;}
  100%{width:70px;height:70px;margin-left:-35px;margin-top:-35px;opacity:0;border-width:1px;}
}
.mkdc-splash-drop{
  position:absolute;
  width:6px;height:6px;
  margin-left:-3px;margin-top:-3px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, #fff, #6cc0ee 60%, #2d84c9 100%);
  pointer-events:none;
  animation:mkdc-splash-drop-fly 650ms cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes mkdc-splash-drop-fly{
  0%{transform:translate(0,0) scale(1);opacity:1;}
  100%{transform:translate(var(--dx), calc(var(--dy) + 18px)) scale(0.3);opacity:0;}
}
@media(prefers-reduced-motion: reduce){
  .mkdc-bubble,.mkdc-splash-ring,.mkdc-splash-drop{animation:none;display:none;}
}

/* ================= AREA BANNER (location pages) ================= */
.area-banner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 26px;
  border-radius:var(--radius-lg);
  margin-bottom:36px;
  box-shadow:0 14px 30px -14px rgba(13,42,74,0.35);
}
.area-banner-icon{
  width:56px;height:56px;
  border-radius:50%;
  background:rgba(255,255,255,0.18);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.area-banner-text .area-banner-eyebrow{
  color:rgba(255,255,255,0.75);
  font-size:11.5px;
  font-weight:800;
  letter-spacing:.08em;
}
.area-banner-text h3{
  color:#fff;
  font-size:21px;
  font-weight:800;
  margin-top:2px;
}
@media(max-width:680px){
  .area-banner{padding:18px 20px;gap:14px;}
  .area-banner-text h3{font-size:17px;}
}

/* ================= BRANDED SERVICE CARDS (photo-only, caption baked in) ================= */
.service-card.branded{
  padding:0;
}
.service-card.branded img{
  width:100%;height:100%;object-fit:cover;object-position:top center;
}

/* ================= FULL-WIDTH BANNER IMAGES ================= */
.full-banner{
  width:100%;
  display:block;
}
.full-banner img{
  width:100%;
  height:auto;
  display:block;
}
.hero-banner-section{
  line-height:0;
  padding:0 !important;
}
.hero-banner-section img{
  width:100%;
  height:auto;
  display:block;
}
.trust-footer-banner{
  width:100%;
  overflow:hidden;
  background:var(--navy);
}
.trust-footer-banner img{
  width:100%;
  height:auto;
  display:block;
}
.door-to-door-banner{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-top:40px;
}
.door-to-door-banner img{width:100%;height:auto;display:block;}

.blog-hero-img{
  width:100%;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin:28px 0 8px;
}
.blog-hero-img img{width:100%;height:auto;display:block;}

.services-intro-banner{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-top:30px;
  max-width:600px;
}
.services-intro-banner img{width:100%;height:auto;display:block;}
