:root{
        --bg: #ffffff;
        --text: #0f172a;
        --muted: #475569;
        --line: #e2e8f0;
        --navy: #0b1220;
        --navy-2: #0f1b33;
        --card: #ffffff;
        --soft: #f1f5f9;
        --accent: #2563eb;
        --accent-2: #0ea5e9;
        --shadow: 0 18px 40px rgba(2,6,23,.10);
        --shadow-2: 0 12px 28px rgba(2,6,23,.16);
        --radius: 14px;
        --radius-2: 18px;
        --container: 1120px;
      }

      *{ box-sizing:border-box; }
      html,body{ height:100%; }
      body{
        margin:0;
        font-family: "Inter", sans-serif;
        color: var(--text);
        background: var(--bg);
        line-height: 1.45;
      }
      a{ color: inherit; text-decoration: none; }
      img{ max-width:100%; display:block; }
      .container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

      /* Header (match screenshot: simple black bar) */
      .topbar{
        background: #0a0a0a;
        color:#fff;
        border-bottom: 1px solid #fff;
      }
      .nav{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding: 14px 0;
        gap: 18px;
      }
      .brand{
        display:flex;
        align-items:center;
        gap:12px;
        font-weight:800;
        letter-spacing:.2px;
      }
      .brandMark{
        width: 78px;
        height: 28px;
        border-radius: 2px;
        background: #ffffff;
        color:#0a0a0a;
        display:flex;
        align-items:center;
        justify-content:center;
        font-weight: 950;
        letter-spacing: .18em;
        font-size: 18px;
      }
      .navLinks {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
    font-size: 16px;
    margin-right: 30px;
}
      .navLinks a{ opacity:.92; }
      .navLinks a:hover{ opacity:1; }
      .navRight{
        display:flex;
        align-items:center;
        gap: 10px;
      }
      .button_consultation{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding: 10px 16px;
        border-radius: 14px;
        border: 1px solid transparent;
        font-weight:500;
        font-size: 16px;
        cursor:pointer;
        transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
        user-select:none;
      }
      .btn:active{ transform: translateY(1px); }
      .btnPrimary{
        background:#fff;
        color:#0a0a0a;
        box-shadow: 0 10px 24px rgba(0,0,0,.22);
      }
      .btnPrimary:hover{ box-shadow: 0 14px 30px rgba(0,0,0,.22); }
      .btnGhost{
        background: transparent;
        border-color: rgba(255,255,255,.22);
        color: rgba(255,255,255,.92);
      }
      .btnGhost:hover{ border-color: rgba(255,255,255,.38); }
      .menuBtn{
        display:none;
        width:40px;height:40px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,.22);
        background: transparent;
        color:#fff;
      }

      /* Hero (match screenshot: full-width background + left content) */
      .hero{
        position:relative;
        color:#fff;
        background: #111;
      }
      .hero::before{
        content:"";
        position:absolute; inset:0;
        background:
          linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%),
          radial-gradient(900px 520px at 22% 52%, rgba(0,0,0,.78), transparent 62%),
          radial-gradient(1200px 520px at 70% 60%, rgba(0,0,0,.55), transparent 64%),
          url("assets/hero.jpg");
        background-size: cover;
        background-position: center;
        filter: saturate(1.02) contrast(1.02);
      }
      .heroInner{
        position:relative;
        padding: 64px 0 54px;
        min-height: 560px;
        display:flex;
        align-items:flex-start;
      }
      .heroContent{
        max-width: 81%;
      }
      .heroTitle{
        margin: 0 0 18px;
        font-size: 48px;
        line-height: 60px;
        letter-spacing: -0.6px;
        font-weight: 500;
      }
      .heroPara {
          margin: 0 0 25px;
          color: rgba(255, 255, 255, .88);
          font-weight: 400;
          font-size: 18px;
          line-height: 30px;
          max-width: 80ch;
      }
      .heroActions{
        display:flex;
        gap: 14px;
        align-items:center;
        margin-top: 22px;
      }
      .btnHeroPrimary{
        background:#fff;
        color:#0a0a0a;
        padding: 12px 18px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 12px 28px rgba(0,0,0,.28);
      }
      .btnHeroOutline{
        background: transparent;
        color:#fff;
        padding: 12px 18px;
        border-radius: 10px;
        border: 2px solid rgba(255,255,255,.90);
      }
      .btnHeroOutline:hover{ background: rgba(255,255,255,.06); }
      .btnArrow{
        display:inline-flex;
        align-items:center;
        gap: 10px;
      }
      .btnArrow .arr{
        width: 22px; height: 22px;
        border-radius: 999px;
        display:grid; place-items:center;
        border: 1px solid rgba(0,0,0,.14);
        background: rgba(0,0,0,.04);
        font-weight: 900;
      }
      .formTitle{
        font-weight: 900;
        font-size: 16px;
        margin:0;
      }
      .formHint{
        margin: 6px 0 0;
        color: var(--muted);
        font-weight: 600;
        font-size: 13px;
      }
      .field{
        display:flex;
        gap: 10px;
        align-items:center;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 10px 12px;
        background: #fff;
      }
      .field input{
        border:none;
        outline:none;
        flex:1;
        font-size: 13px;
        font-weight: 650;
      }
      .field input::placeholder{ color: #94a3b8; font-weight: 650; }
      .submit{
        width: 100%;
        background: var(--navy);
        color:#fff;
        border:none;
        border-radius: 14px;
        padding: 12px 14px;
        font-weight: 900;
        cursor:pointer;
        box-shadow: 0 12px 26px rgba(2,6,23,.22);
      }
      .submit:hover{ background: #0a152f; }
      .miniRow{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .mini{
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 12px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      }
      .mini b{ display:block; font-size: 13px; }
      .mini span{ display:block; margin-top:4px; color: var(--muted); font-weight: 650; font-size: 12px; }

      /* Section base */
      .section{ padding: 52px 0; }
      .sectionHeader{
        display:flex;
        align-items:flex-end;
        justify-content:space-between;
        gap: 16px;
        margin-bottom: 18px;
      }
      .eyebrow{
        font-weight: 900;
        font-size: 12px;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: #64748b;
      }
      .h2{
        margin: 8px 0 0;
        font-weight: 950;
        letter-spacing: -0.5px;
        font-size: 28px;
        line-height: 1.15;
      }
      .lead{
        margin: 0;
        max-width: 72ch;
        color: var(--muted);
        font-weight: 650;
        font-size: 14px;
      }

      /* Section 2 (match screenshot) */
      .s2{
        padding: 54px 0 40px;
        background:#fff;
      }
      .s2Top {
          margin: 0 auto 26px;
          color: #334155;
          font-size: 18px;
          line-height: 1.65;
          font-weight: 400;
      }
      .s2Top p{ margin:0 0 10px; }
      .s2Grid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 46px;
        align-items:start;
      }
      .s2Left h3 {
          margin: 0 0 16px;
          font-size: 24px;
          line-height: 1.6;
          font-weight: 500;
          color: #0f172a;
      }
      .s2Left h3 b{
        display:block;
        font-weight: 800;
      }
      .s2Img{
        width:100%;
        overflow:hidden;
        background: #e2e8f0;
        box-shadow: 0 18px 40px rgba(2,6,23,.10);
      }
      .s2Img img{
        width:100%;
        height:auto;
        display:block;
      }
      .image_left_secton{height: 735px !important;}
      .s2Right{
        color:#334155;
        font-size: 12px;
        line-height: 1.7;
      }
      .s2Right p {
          margin: 0 0 12px;
          font-size: 18px;
          font-weight: 400;
      }
      .s2Highlight{
        display:inline-block;
        margin: 10px 0 14px;
        padding: 6px 8px;
        border: 2px solid #1e40af;
        color:#0f172a;
        font-size: 12px;
        line-height: 1.5;
        background:#fff;
      }
      .s2Bottom{
        text-align:center;
        margin-top: 26px;
        color:#0f172a;
      }
      .s2Bottom b{
        display:block;
        font-weight: 400;
      }
      .s2Bottom small{
        display:block;
        margin-top: 10px;
        color:#64748b;
        font-weight: 650;
        font-size: 11px;
      }

      /* About / intro with images */
      .aboutGrid{
        display:grid;
        grid-template-columns: .75fr 1.25fr;
        gap: 26px;
        align-items:start;
      }
      .aboutLeft .h3{
        margin: 10px 0 0;
        font-size: 18px;
        font-weight: 950;
        letter-spacing: -0.2px;
      }
      .aboutLeft p{
        margin: 10px 0 0;
        color: var(--muted);
        font-weight: 650;
        font-size: 14px;
      }
      .aboutRight{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .imgCard{
        border-radius: var(--radius-2);
        overflow:hidden;
        background: #0b1220;
        box-shadow: var(--shadow);
        position:relative;
        min-height: 220px;
      }
      .imgCard .label{
        position:absolute;
        top:14px; left:14px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.16);
        color: rgba(255,255,255,.90);
        padding: 8px 10px;
        border-radius: 999px;
        font-weight: 900;
        font-size: 12px;
        backdrop-filter: blur(10px);
      }
      .imgCard .ph{
        position:absolute; inset:0;
        background:
          linear-gradient(0deg, rgba(11,18,32,.26), rgba(11,18,32,.08)),
          radial-gradient(800px 320px at 20% 20%, rgba(14,165,233,.35), transparent 55%),
          linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
      }
      .imgCard img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
      .imgCardTall{ grid-row: span 2; min-height: 454px; }

      .copyBox{
        border: 1px solid var(--line);
        border-radius: var(--radius-2);
        padding: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      }
      .copyBox b{ display:block; font-weight: 950; letter-spacing: -0.2px; }
      .copyBox p{ margin: 8px 0 0; color: var(--muted); font-weight: 650; font-size: 13px; }

      /* Services (section 3) */
      .services{
        background: #f1f5f9;
        padding-top: 54px;
        padding-bottom: 54px;
      }
      .servicesHead{
        text-align:center;
        margin-bottom: 28px;
      }
      .servicesTitle{
        margin:0 0 10px;
        font-size: 48px;
        font-weight: 700;
      }
      .servicesIntro {
          margin: 0;
          color: #64748b;
          font-size: 17px;
          line-height: 1.6;
          font-weight: 400;
      }
      .servicesIntro + .servicesIntro{ margin-top: 4px; }
      .cards3{
        display:grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 26px;
      }
      .card{
        background:#ffffff;
        padding: 26px 26px 24px;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(15,23,42,.10);
        border:none;
      }
      .cardPrimary{
        border: 2px solid #2563eb;
        box-shadow: 0 22px 44px rgba(37,99,235,.25);
      }
      .cardHeader{
        text-align:left;
        margin-bottom: 10px;
      }
      .icon{
        width: 32px;height:32px;border-radius: 999px;
        display:grid; place-items:center;
        border: none;
        background: #020617;
        color:#ffffff;
        margin-bottom: 14px;
      }
      .cardTitle {
          margin: 0;
          font-size: 22px;
          font-weight: 700;
      }
      .card ul{
        margin: 8px 0 0;
        padding-left: 18px;
        color:#4b5563;
        font-size: 15px;
    line-height: 26px;
    font-weight: 400;
      }
      .card ul li{ margin-bottom: 4px; }

      .servicesBand {
    margin-top: 34px;
    padding: 50px 0 50px 0;
    background: #020617;
    color: #e5e7eb;
    text-align: center;
    border-radius: 16px;
}
      .servicesBand b {
    display: block;
    font-weight: 700;
    font-size: 30px;
}
      .servicesBand p {
    margin: 8px auto 0;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5f5;
}

      /* Dark feature band */
      .band{
        background: var(--navy);
        color:#fff;
        padding: 44px 0;
      }
      .bandGrid{
        display:grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 14px;
        align-items:stretch;
      }
      .bandCard{
        border-radius: var(--radius-2);
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.06);
        padding: 18px;
      }
      .bandCard h3{
        margin: 0 0 10px;
        font-weight: 950;
        letter-spacing: -0.3px;
        font-size: 18px;
      }
      .bullets{
        display:grid;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style:none;
      }
      .bullets li{
        display:flex;
        gap: 10px;
        align-items:flex-start;
        color: rgba(255,255,255,.84);
        font-weight: 650;
        font-size: 13px;
      }
      .check{
        width: 20px; height: 20px;
        border-radius: 7px;
        background: rgba(34,197,94,.18);
        border: 1px solid rgba(34,197,94,.30);
        display:grid; place-items:center;
        margin-top:1px;
        flex: 0 0 auto;
      }
      .bandRight{
        border-radius: var(--radius-2);
        overflow:hidden;
        position:relative;
        min-height: 260px;
        box-shadow: 0 16px 36px rgba(0,0,0,.22);
      }
      .bandRight::before{
        content:"";
        position:absolute; inset:0;
        background:
          linear-gradient(0deg, rgba(11,18,32,.62), rgba(11,18,32,.12)),
          radial-gradient(900px 500px at 20% 25%, rgba(37,99,235,.35), transparent 55%),
          url("assets/feature-1.jpg");
        background-size: cover;
        background-position:center;
      }
      .bandRight .overlay{
        position:absolute; inset:auto 16px 16px 16px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 16px;
        padding: 12px 12px;
        backdrop-filter: blur(10px);
      }
      .overlay b{ display:block; font-weight: 950; }
      .overlay span{ display:block; margin-top:4px; color: rgba(255,255,255,.82); font-weight: 650; font-size: 12px; }

      /* Split feature */
      .split{
        /*background:#f1f5f9;*/
        padding: 46px 0 52px;
      }
      .splitGrid{
        display:grid;
        grid-template-columns: 1.1fr 1.2fr;
        gap: 32px;
        align-items:stretch;
      }
      .splitList{
        display:grid;
        gap: 10px;
      }
      .splitItem{
        display:flex;
        align-items:flex-start;
        gap: 12px;
        color:#0f172a;
        font-size: 13px;
        line-height: 1.6;
      }
      .splitItemIcon {
    width: 47px;
    height: 47px;
    border-radius: 12px;
    background: #020617;
    color: #fff;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 3px;
}
      .splitItem span {
    display: block;
    font-size: 16px;
    font-weight: 700;
}
      .photo{
        border-radius: 22px;
        overflow:hidden;
        position:relative;
        /*min-height: 300px;
        box-shadow: 0 26px 60px rgba(15,23,42,.35);
        background:#000;*/
      }
      .photo img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
        filter: grayscale(1);
      }

      /* Problems section */
      .problems{
        background:#f1f5f9;
        padding: 54px 0 54px 0;
        text-align:center;
      }
      .problemsTitle{
        margin:0 0 6px;
        font-size: 48px;
    font-weight: 700;
      }
      .problemsSub{
        margin:0;
        color:#6b7280;
        font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
      }
      .problemsSub + .problemsSub{ margin-top: 2px; }
      .mini3{
        display:grid;
        grid-template-columns: repeat(3,1fr);
        gap: 16px;
        margin: 28px auto 32px;
        max-width: 920px;
      }
      .miniCard{
        border-radius: 14px;
        padding: 20px 22px;
        background: #ffffff;
        text-align:left;
      }
      .miniIcon{
        width: 32px;
        height:32px;
        border-radius: 12px;
        /*background:#f1f5f9;*/
        display:grid;
        place-items:center;
        flex:0 0 auto;
        color:#020617;
      }
      .miniText{
        font-size: 16px;
    color: #111827;
    line-height: 1.55;
    font-weight: 700;
    padding-top: 12px;
      }

      /* CTA band (Get a Second Opinion) */
      .ctaBand{
        background: #020617;
        color: #ffffff;
        padding: 48px 0 48px;
        margin-top: 0;
        border-radius: 16px;
      }
      .ctaInner{
        text-align:center;
        max-width: 860px;
        margin: 0 auto;
      }
      .ctaInner h3{
        margin: 0 0 20px;
    font-weight: 700;
    font-size: 28px;
      }
      .ctaButton{
           display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 14px 22px;
          border-radius: 10px;
          background: #ffffff;
          color: #101828;
          font-weight: 500;
          font-size: 15px;
          border: none;
          box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
      }

      /* Process */
      .processGrid{
        display:grid;
        grid-template-columns: 1.05fr 1.25fr;
        gap: 40px;
        align-items:start;
        margin-top: 26px;
      }
      .processPhoto{
        border-radius: 22px;
        overflow:hidden;
        box-shadow: 0 26px 60px rgba(15,23,42,.28);
        background:#000;
      }
      .processPhoto img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
      }
      .steps{
        display:grid;
        gap: 24px;
      }
      .stepRow{
        display:grid;
        grid-template-columns: auto 1fr;
        gap: 14px;
        align-items:flex-start;
      }
      .stepIcon{
        width: 40px;
        height: 40px;
        border-radius: 14px;
        background:#020617;
        color:#fff;
        display:grid;
        place-items:center;
        flex:0 0 auto;
      }
      .stepBody small{
            display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 2px;
      }
      .stepBody h3{
        margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
      }
      .stepBody p{
            margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #4b5563;
    padding-bottom: 10px;
      }

      /* Projects */
      .projects{
        background:#ffffff;
        padding-top: 54px;
      }
      .projectsHead{
        text-align:center;
        margin-bottom: 26px;
      }
      .projectsHead h2{
        margin: 0 0 10px;
    font-size: 48px;
    font-weight: 700;
      }
      .projectsHead p{
        margin: 0;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    padding-bottom: 10px;
      }
      .projectsHead p + p{ margin-top: 4px; }
      .projectsGrid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .project{
        border-radius: 22px;
        overflow:hidden;
        
      }
      .project img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
      }

      /* Contact */
      .contact{
        background: #fff;
      }
      .contactGrid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items:stretch;
        margin-top: 18px;
      }
      .contactLeft{
        border-radius: var(--radius-2);
        background: var(--navy);
        color:#fff;
        padding: 18px;
        box-shadow: var(--shadow-2);
        position:relative;
        overflow:hidden;
      }
      .contactLeft::before{
        content:"";
        position:absolute; inset:-60px -80px auto auto;
        width: 220px; height: 220px;
        border-radius: 999px;
        background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.55), rgba(14,165,233,.10) 60%, transparent 65%);
      }
      .contactLeft h3{ margin:0 0 10px; font-weight: 950; letter-spacing:-0.3px; font-size: 18px; position:relative; }
      .contactLeft p{ margin:0 0 14px; color: rgba(255,255,255,.80); font-weight: 650; font-size: 13px; position:relative; }
      .contactInfo{
        display:grid;
        gap: 10px;
        position:relative;
      }
      .infoRow{
        display:flex;
        gap: 10px;
        align-items:flex-start;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.06);
        border-radius: 16px;
        padding: 12px;
      }
      .infoRow b{ display:block; font-weight: 950; }
      .infoRow span{ display:block; margin-top:4px; color: rgba(255,255,255,.78); font-weight: 650; font-size: 12px; }
      .contactForm{
        border-radius: var(--radius-2);
        border: 1px solid var(--line);
        background: #fff;
        padding: 18px;
        box-shadow: 0 10px 24px rgba(2,6,23,.06);
      }
      .grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
      label{ display:block; font-weight: 850; font-size: 12px; color: #334155; margin: 10px 0 6px; }
      input, textarea{
        width:100%;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 11px 12px;
        font-size: 13px;
        font-weight: 650;
        outline:none;
        background: #fff;
      }
      textarea{ resize: vertical; min-height: 120px; }
      input:focus, textarea:focus{ border-color: rgba(37,99,235,.55); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
      .formBtn{
        margin-top: 12px;
        width:100%;
        border:none;
        border-radius: 14px;
        padding: 12px 14px;
        background: var(--navy);
        color:#fff;
        font-weight: 950;
        cursor:pointer;
      }
      .formBtn:hover{ background: #0a152f; }

      /* Footer */
      footer{
        background: var(--navy);
        color:#fff;
        padding: 38px 0;
        margin-top: 30px;
      }
      .footerGrid{
        display:grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 14px;
      }
      .footCol h4{
        margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: -0.2px;
    font-size: 16px;
      }
      .footCol p{
        margin: 0;
        color: rgba(255,255,255,.78);
        font-weight: 400;
        font-size: 14px;
        max-width: 44ch;
      }
      .footLinks{
        display:grid;
        gap: 8px;
        margin-top: 10px;
      }
      .footLinks a{
        color: rgba(255,255,255,.82);
            font-weight: 400;
    font-size: 14px;
      }
      .footLinks a:hover{ color:#fff; }
      .subFooter{
        margin-top: 22px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,.10);
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap: 12px;
        color: rgba(255,255,255,.72);
        font-weight: 650;
        font-size: 12px;
      }
      .social{
        display:flex;
        gap: 10px;
      }
      .social a{
        width: 36px;height:36px;border-radius: 14px;
        border: 1px solid rgba(255,255,255,.14);
        background: rgba(255,255,255,.06);
        display:grid; place-items:center;
        color:#fff;
      }
      .social a:hover{ background: rgba(255,255,255,.10); }


      ul.contact_info {
          display: contents;
          list-style: none;
      }

      .contact_info li {
          padding-bottom: 10px;
          display: flex;
          gap: 10px;
          align-items: center;
          color: rgba(255, 255, 255, .82);
          font-weight: 400;
          font-size: 14px;
      }
      .contact_info li img {
          width: 18px;
          height: 18px;
          display: block;
      }

      .step_review {
          display: flex;
          gap: 20px;
          align-items: center;
      }

.consultation-section {
  padding: 60px 20px;
}

.left_right_section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Side */
.left-content {
  flex: 1;
}

.left-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.left-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Info Box */
.info-box {
  background: #0b1b33;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.info-box .icon {
  background: #fff;
  color: #0b1b33;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  line-height: 25px;
}

/* Contact */
.contact-info h4 {
  margin-bottom: 10px;
}

.contact-info p {
  margin: 5px 0;
}

/* Form Box */
.form-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-box h3 {
  margin-bottom: 10px;
}

.sub-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Inputs */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

form textarea {
  min-height: 100px;
  resize: none;
}

/* Button */
form button {
  width: 100%;
  padding: 14px;
  background: #0b1b33;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background: #142c55;
}

/* Note */
.note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* project page  */
.project_header_section{
	background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
	padding: 30px 0px;
}

.project_content_wrapper h2 {
    font-size: 48px;
    font-weight: 700;
	line-height: 38px;
}

.project_content_wrapper p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #364153;
}

section.project_content_part_first {
    padding: 30px 0px;
}

.content_part_first p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.service-journey h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.service-journey .subtitle {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    width: 56%;
    margin: 0px auto;
    line-height: 28px;
    padding-bottom: 30px;
    font-weight: 400;
}

/* Steps */
.service-journey .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.service-journey .step {
  background: #e5e7eb;
  color: #111;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  position: relative;
}

.service-journey .step span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.service-journey .step.active {
    background: #1C398E;
    color: #fff;
    text-align: center;
}

.service-journey .arrow {
  margin: 0 10px;
  color: #9ca3af;
}

/* Cards */
.service-journey .card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-journey .icon {
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-journey .tag {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 20px;
  margin-bottom: 5px;
}

.service-journey .card h3 {
  margin: 5px 0;
}

.service-journey .card p {
  font-size: 14px;
  color: #555;
}

.service-journey .card ul {
  margin-top: 10px;
  padding-left: 20px;
}

.service-journey .card ul li {
  font-size: 13px;
  margin-bottom: 5px;
}

/* Down Arrow */
.service-journey .down-arrow {
  text-align: center;
  font-size: 20px;
  color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
 .service-journey .card {
    flex-direction: column;
  }

 .service-journey .icon {
    margin-bottom: 10px;
  }
}

.residential-section{
	background: #f6f8fc;
	padding: 40px 20px;
}
.residential-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.residential-section .desc {
    color: #364153;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 400;
}

section.commitment_section {
    width: 75%;
    margin: auto;
    padding: 30px 0px;
}

.commitment_section h4 {
    color: #101828;
    font-size: 22px;
    line-height: 20px;
}

.commitment_content_part p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
/* Grid */
.residential-section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* Cards */
.residential-section .card {
  background: #fff;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.residential-section .card.full {
  margin-top: 20px;
}

/* Icon */
.residential-section .icon {
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Text */
.residential-section .card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #101828;
    font-weight: 700;
}

.residential-section .card p {
    font-size: 14px;
    color: #364153;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 26px;
}

.residential-section .card ul {
  padding-left: 18px;
}

.residential-section .card ul li {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 400;
    color: #364153;
}

.project-management {
  padding: 60px 20px;
}

.pm-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Heading */
.pm-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* Paragraphs */
.pm-container p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.intro {
  margin-bottom: 20px;
}

/* Grey Box */
.pm-box {
  background: #eef1f4;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 20px 0;
}

/* List */
.pm-box ul {
  margin: 0;
  padding-left: 18px;
}

.pm-box li {
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .pm-container {
    padding: 0 10px;
  }

  .pm-container h2 {
    font-size: 24px;
  }
}

.team-section {
  padding: 60px 20px;
}

.team-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #F8FAFC;
}

/* Left Side */
.team-left {
  flex: 1;
	padding-left:10px;
}

.team-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.team-left p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Right Card */
.team-card {
  flex: 1;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  border: 1px solid #e3e6ea;
}

.team-card h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

/* List */
.team-card ul {
  padding-left: 18px;
  margin: 0;
}

.team-card li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  position: relative;
}

/* Blue bullet style */
.team-card li::marker {
  color: #2a6df4;
}

/* Responsive */
@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
  }
}


.financial-section {
  padding: 30px 20px;
}

.financial-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.financial-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

/* Text */
.financial-container p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.intro {
  margin-bottom: 15px;
}

/* Grid */
.financial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* Card */
.financial-card {
  background: #fff;
  padding: 20px 22px;
  border-radius: 10px;
  border: 1px solid #e3e6ea;
}

/* Icon */
.financial-card .icon {
  width: 28px;
  height: 28px;
  border: 2px solid #2a6df4;
  color: #2a6df4;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Card Text */
.financial-card h4 {
  font-size: 15px;
  margin-bottom: 5px;
  color: #222;
}

.financial-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.support-section {
  padding: 60px 20px;
}

.support-container {
  max-width: 900px;
  margin: auto;
}

/* Headings */
.support-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.support-container h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 15px;
  color: #1a1a1a;
}

/* Paragraphs */
.support-container p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Highlight Box */
.highlight-box {
  background: #e9edf3;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 25px 0;
}

/* Highlight Title */
.highlight-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* List */
.highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-box li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
}

/* Custom Check Icon */
.highlight-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #2a6df4;
  color: #2a6df4;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
}

/* Final text */
.final-text {
  margin-top: 15px;
}

/* Section */
.cta-section {
  background: linear-gradient(135deg, #1C398E, #193CB8);
  padding: 80px 20px;
  text-align: center;
}

/* Container */
.cta-container {
  max-width: 800px;
  margin: auto;
}

/* Heading */
.cta-container h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Text */
.cta-container p {
  color: #dbe2f3;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Highlight Line */
.highlight-text {
  font-weight: 600;
  color: #ffffff;
  margin: 25px 0;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: #fff;
  color: #2f49a3;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
}

.cta-btn:hover {
  background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 26px;
  }

  .cta-container p {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .support-container h2 {
    font-size: 24px;
  }

  .support-container h3 {
    font-size: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .financial-grid {
    grid-template-columns: 1fr;
  }

  .financial-container h2 {
    font-size: 24px;
  }
}



/* Responsive */
@media (max-width: 768px) {
 .residential-section .grid {
    grid-template-columns: 1fr;
  }
}




/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}



/* Responsive */
      @media (max-width: 980px){
        .aboutGrid, .bandGrid, .splitGrid, .processGrid, .contactGrid{
          grid-template-columns: 1fr 1fr;
        }
        .s2Grid{ grid-template-columns: 1fr; gap: 18px; }
        .imgCardTall{ grid-row: auto; min-height: 260px; }
        .cards3, .projectsGrid, .mini3{ grid-template-columns: 1fr 1fr; }
        .footerGrid{ grid-template-columns: 1fr 1fr; }
      }
      @media (max-width: 767px){
        .navLinks{ display:none; }
        .menuBtn{ display:inline-flex; align-items:center; justify-content:center; }
        .navRight .btnGhost{ display:none; }
        .heroInner{ padding: 44px 0 40px; min-height: 520px; }
        .heroTitle{ font-size: 25px; line-height: 35px; }
        .ctaInner{ flex-direction: column; align-items:flex-start; }
		  
		  .heroActions{
			  display: block;
		  }
		  .btnHeroPrimary{
			 margin-bottom: 30px;
		  }
		  
		  .left_right_section{display:block;}
		  
      }
      .mobileMenu{
        display:none;
        padding: 0 0 14px;
      }
      .mobileMenu a{
        display:block;
        padding: 10px 0;
        color: rgba(255,255,255,.88);
        font-weight: 750;
        font-size: 13px;
        border-top: 1px solid rgba(255,255,255,.10);
      }
      .mobileMenu.show{ display:block; }