<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #1a9fd4;
    --blue-dark: #004683;
    --dark: #224a5a;
    --mid: #3a3f4b;
    --light-bg: #e8f3f9;
    --white: #ffffff;
    --slate-light:#282c2e;
    --slate-dark:#1e2124;
    --border: #e2e8f0;
    --font-display: 'Host Grotesk', sans-serif;
    --font-body: 'Host Grotesk', sans-serif;
    --border-radius:20px 20px 0px 0px;
    --border-radius-100:20px;
  }
  
.bg-blue        { background-color: #1a9fd4;color:#fff; }
.bg-blue-dark   { background-color: #004683;color:#fff; }
.bg-dark        { background-color: #224a5a;color:#fff; }
.bg-mid         { background-color: #3a3f4b;color:#fff; }
.bg-light-bg    { background-color: #e8f3f9; }
.bg-white       { background-color: #ffffff; }
.bg-slate-light { background-color: #282c2e;color:#fff; }
.bg-slate-dark  { background-color: #1e2124;color:#fff; }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text); line-height: 1.6; overflow-x: hidden; }
 
  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }

  /* ── NAV ── */

  .btn-primary,
  .btn-secondary {
    background: var(--blue);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 100;
    padding: 10px 22px;
    border-radius: 99px;
    border: 1px;
    border-color: var(--blue);
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
	display: flex;
  	flex-direction: row;
  	align-items: center;
  	align-self: start;
  }
  .btn-secondary {
  	background: var(--blue-dark);
  }
  .btn-primary:hover { background: var(--blue-dark);}
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 100;
    padding: 10px 22px;
    border-radius: 99px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s;
	display: flex;
  	flex-direction: row;
  	align-items: center;
  	align-self: start;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.15); }
  
  .btn-primary span, .btn-outline span, .btn-secondary span {
  	margin-left:10px;
  	margin-right:-10px;
  }
  
  .topbar {
  	 text-align:center;
  	 background-color:var(--dark);
  	 border-radius: var(--border-radius);
  	 margin-top:110px !important;
  	 padding:0px 0px 20px 0px;
  }
.topbarContact {
	color:#fff;
	padding:15px;
  }
  
	/* ── NAV ── */

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(
      105deg,
      rgba(10,14,22,0.82) 38%,
      rgba(10,14,22,0.4) 100%
    ),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
      	 border-radius: var(--border-radius);
  }
  .hero-content {
	width: 100%;
  	position: absolute;
  	animation: fadeUp 0.9s ease both;
  	height: 100%;
  	top: 0;
 	 display: flex;
  	justify-content: center;
  	align-content: center;
	align-items: center;
    animation: fadeUp 0.9s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 200;
    line-height: 1.02;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
  }
  .hero h1 em { color: var(--blue); font-style: normal; }
  .hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  
  
 .largeHeading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 200;
    line-height: 1.02;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
 }
  
.xlHeading {
	font-family: var(--font-display);
  	font-size: 5rem;
  	font-weight: 300;
  	line-height: 1;
  	margin-bottom: 30px;
  }
  
  section {
	position:relative;
  	padding: 150px 0px;
  	border-radius:var(--border-radius);
  }
  
  .darkBlueBack {	
 	background-color:var(--dark);
 	color:#fff;
  }
  
  .secondaryHeader {
  padding-top: 120px;
  padding-bottom: 120px;
  border-radius: var(--border-radius);
  background: var(--blue);
  }
  
  /* ── INTRO STRIP ── */
  
  .intro-section {
  	border-radius:var(--border-radius);
  	background:var(--light-bg);
  	z-index:1;
  	margin-top:-20px;
  	position:relative;
  }
  
  .intro {
    padding: 150px 0px;
    align-items: center;
    margin: 0 auto;
  }
  .intro-label {
    font-size: 1.2rem;
    font-weight: 100;
    margin-bottom: 10px;
  }
  .intro h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.12;
    color: var(--slate-dark);
    margin-bottom: 0;
    letter-spacing: -0.025em;
  }
  .intro h2 em { color: var(--blue); font-style: normal; }
  .intro-right p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.75;
  }

  /* ── SERVICES ── */
  .services-section { 
	  padding:0px;
  }
  .services-list { max-width: 1200px; margin: 0 auto; }
  .service-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
    cursor: pointer;
  }

  
  
  .accordion-button:focus {
	 	z-index: 3;
		outline: 0;
  		box-shadow: none;
	}

 /* ── BOOTSTRAP ACCORDIAN --*/
 
 
 .accordion-item {
 	color:#fff;
 }
 
.accordion-item img {
 	border-radius: var(--border-radius-100);
 }

.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
 }
 .accordion-button {
 	background-color:transparent;
 }
 
 .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
 }
 
.accordion .accordion-item:nth-child(odd) {
  background-color: var(--slate-dark);
  border-color:var(--slate-dark);
}
.accordion .accordion-item:nth-child(even) {
  background-color: var(--slate-light);
  border-color:var(--slate-light);
}

 .accordion-item:first-of-type {
  	border-top-left-radius: 0px;
  	border-top-right-radius: 0px;
  	border-radius: var(--border-radius);
}

 .accordion-item {
  	border-top-left-radius: 0px;
  	border-top-right-radius: 0px;
  	border-bottom-left-radius: 0px;
  	border-bottom-right-radius: 0px;
}

 .accordion-item:last-of-type {
  	border-bottom-left-radius: 0px;
  	border-bottom-right-radius: 0px;
  	padding-bottom:60px;
} 

.accordion-button:not(.collapsed) {
	background-color: transparent;
}

.accordion-header > .container {
	padding-top:2rem;
	padding-bottom:2rem;
}

.accordion-header .col-1 {
	opacity:0.5;
}

.accordion-header .col-1,
.accordion-header .col-10 {
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.accordion-body {
	padding:0px;
	padding-bottom: 4rem;
}
 

  /* ── PROJECTS BANNER ── */
  .projects-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    background: var(--dark);
    overflow: hidden;
  }
  .projects-banner-bg {
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      rgba(10,14,22,0.85) 45%,
      rgba(10,14,22,0.4) 100%
    ),
    url('/img/projectsAcrossUK.webp') center/cover no-repeat;
  }
  .projects-content {
  	position:absolute;
  	top:0;
  	width:100%;
  	height:100%;
  }
  .projects-content p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .projects-content h2 {
    font-family: var(--font-display);
    font-size:5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
  }

  /* ── REVIEWS ── */
  .reviews-section {
    background: #fff;
    padding: 80px 60px;
  }
  .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .reviews-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
  }
  .rating-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    padding: 12px 20px;
  }
  .rating-score {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
  }
  .stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
  .rating-source { font-size: 0.75rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .review-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
  }
  .review-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .review-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
  }
  .review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 10px; }
  .review-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .review-platform {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a73e8;
    margin-top: 14px;
  }

  /* ── CTA ── */
  .formSection {
    background: var(--dark);
    border-radius: var(--border-radius);
  }
  .formSectionInner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
  .formSectionLabel {
	font-size: 1.2rem;
  	font-weight: 100;
  	margin-bottom: 10px;
  	color :var(--white);
  }
  .formSection h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom:2rem;
    font-weight: 100;
    color: #fff;
    line-height: 1.25;
  }
  .formSection h2 em { 
  	color: var(--blue); font-style: normal; 
  }
  
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .contact-form input,
  .contact-form textarea {
    background: rgba(255,255,255);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    color: var(--blue);
    font-family: var(--font-body);
    padding: 14px 16px;
    transition: border-color 0.2s;
    width: 100%;
  }
  
.contact-form input {
	margin-bottom:0.75rem;
}

.contact-form input:last-of-type {
	margin-bottom:0rem;
}

.contact-form textarea {
	height:100%;
}

  .contact-form input:focus {
  	background-color:#fff;
    outline: none;
    border-color: var(--blue);
  }
  .contact-form textarea { resize: vertical; min-height: 130px; }
  
	.contact-form input::placeholder {
    	font-size:1rem;
    }

  /* ── FOOTER ── */
  footer {
  	position:relative;
	z-index:50;
	margin-top:-20px;
  }
  .footer-inner {
	padding-top:120px;
    padding-bottom: 180px;
    border-radius: var(--border-radius);
    background: var(--blue);
  }
  
  .footer-contact {
  	margin-bottom:3rem;
  }
  
  .footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
  }
  .footer-contact a { 
  	color: #fff; 
  	font-weight: 300; 
  	font-size: 1.6rem; 
  }
  .footer-cert {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
  }
  .cert-badge {
  	max-height:50px;
  }
  .cert-badge img {
  	height:50px;
  }
  .footer-details {
    display: flex;
    flex-direction:column;
    margin-bottom:3rem;
  }
  .footer-details p { 
  	color: rgba(255,255,255);
  	font-size: 0.8rem; 
  	margin-bottom:0px;
  }
  .footer-links { 
  	margin-top:20px;
  	display: flex;
  	flex-direction:column;
   }
  .footer-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color 0.2s; }
  .footer-links a:hover { color: #fff; }

  /* ── DIVIDER ── */
  .section-divider { height: 4px; background: var(--blue); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .intro { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
    .service-header { padding: 20px 24px; }
    .service-body { grid-template-columns: 1fr; padding: 0 24px 24px; }
    .service-img { display: none; }
    .reviews-section { padding: 60px 24px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section { padding: 60px 24px; }
    .cta-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-cert { justify-content: flex-start; }
  }
  @media (max-width: 560px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
</style>