
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "gotham", sans-serif;
font-style: normal;	box-sizing: border-box;
}

body{
background:#ffffff;
color:#333;
line-height:1.4;
font-size: 18px;
}

:root {
  --darkblue: #2e5686;
}



img {height: auto}


.lazy-load {
    opacity: 0;
    transition: opacity 2s ease-in-out;
	animation-delay: 1s;
}


.lazy-load.loaded {opacity: 1;}
	
.delay1 {transition-delay: 1s !important;}
.delay2{transition-delay: 2s !important;}
.delay3{transition-delay: 3s !important;}
.delay4{transition-delay: 4s !important;}
.delay5{transition-delay: 5s !important;}

/* Base list styling */
.content ul,
.content ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.content ul li,
.content ol li {
  margin: 0.4rem 0;
  line-height: 1.5;
}

/* Bullet styles */
.content ul {
  list-style-type: disc;
}

.content ol {
  list-style-type: decimal;
}

/* Nested lists: remove big top margin */
.content li > ul,
.content li > ol {
  margin-top: 0.3rem;
}


.content p:has(> strong):has(+ ul),
.content p:has(> strong):has(+ ol) {
  margin-top: 2rem; 
}


.container{
width:90%;
margin:auto; max-width:1280px;
}
	
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}


/* =========================
   HEADER
========================= */

.site-header {
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  height: 120px;
}


/* =========================
   NAV (DESKTOP)
========================= */

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--darkblue);
  font-weight: 600;
}

.nav a.active,
.active-parent .dropdown-toggle .dropparent {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--darkblue);
}

.dropdown-menu a.active {
  color: var(--darkblue);
  text-decoration: none !important;
}


/* =========================
   HAMBURGER
========================= */

.hamburger {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--darkblue);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animated X */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* =========================
   DROPDOWN
========================= */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-size: inherit;
  font-weight: 600;
  color: var(--darkblue);
  cursor: pointer;
  margin-left: 30px;
  z-index: 9;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 15px;
  min-width: 230px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  margin: 0 !important;
  text-decoration: none;
  color: #333;
  background: #fff;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--darkblue);
}

.arrow {
  font-size: 12px;
  margin-left: 5px;
}


/* =========================
   DROPDOWN BEHAVIOUR
========================= */

/* Desktop hover */
@media (hover: hover) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* JS toggle */
.dropdown.open .dropdown-menu {
  display: block;
}


/* =========================
   MOBILE NAV
========================= */

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    padding: 80px 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav a,
  .dropdown-toggle {
    margin: 10px 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}


/* =========================
   UTILITIES
========================= */

.no-scroll {
  overflow: hidden;
}
/* HERO */

.hero{
    position:relative;
    height:30vh;
    min-height:500px;
    overflow:hidden;

   background: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.1)), url("images/water.jpg") left top / cover no-repeat;
	background-position: center top;
background-size: cover;
	}

@media (max-width: 1200px){
.hero{
    position:relative;
    height:30vh;
    min-height:400px;	
	}}

@media (max-width: 700px){
.hero{
    position:relative;
    height:30vh;
    min-height:300px;	
	}}


.home .hero {height: 70vh}
/* Overlay wrapper */
.hero-overlay{
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
}

/* SVG curve */
.hero-curve{
    position:absolute;
    bottom: 0;        /* tweak this to move curve up/down */
    left:0;
    width:120%;          /* slight overscale looks better */
    height:auto;
    z-index:1;
    pointer-events:none;
}

/* Content */
.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

/* Headline */
.hero span.h1{
    font-size: 400%;
    font-weight:700;
    margin-bottom:30px; line-height: 1;
}

@media (max-width: 700px){
	.hero span.h1{font-size: 200%;}	
}



/* Services list */
.hero-services{
    list-style:none;
    font-size:20px;
}

.hero-services li{
    margin-bottom:10px;
}
/* CONTENT */

.breadcrumbs {
  margin-bottom: 2rem;
  font-size: 80%;
}

.breadcrumbs a {color: var(--darkblue);}

.content{
background:white;
padding:60px 0;
}

.content h1 {
  position: relative;
  margin-bottom: 2rem;
}

.content h1::after {
  content: "";
  display: block;
  width: 80px;          /* length of the line */
  height: 4px;          /* thickness */
  background: #1f4f7b;  /* your brand blue */
  margin-top: 10px;     /* space below text */
}

.content h1, .content h2 {color: var(--darkblue); margin-bottom: 1.5rem}

.content h3 {color: var(--darkblue); margin-bottom: 1rem}
p:has(+ h3){
  margin-bottom: 2rem !important;
}

.content p {margin-bottom: 1rem}

.content a {color:var(--darkblue);}

.content h2{
margin-bottom: 2rem;
}

/* FOOTER */

.footer{
background:var(--darkblue);
color:white;
text-align:center;
padding:30px 0;
}

.footer-pre {width: 100%;
  height: 10rem;
  line-height: 1;
  margin: 0;
  padding: 0;
  display: block;
}

.footer p a {color: #fff; text-decoration: none}
.footer p a:hover {color: #fff; text-decoration: underline}
.icon-wrapper {margin-top: 1rem;  display: inline-flex; /* keeps it inline with text if needed */
  gap: 12px;
  align-items: center;}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border-radius: 6px; /* slightly rounded, not harsh square */
  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  transition: all 0.25s ease;
}

.icon-link svg {
  width: 20px;
  height: 20px;
}

.icon-link.email svg {
  transform: scale(0.9);
}
/* Hover state */
.icon-link:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.credits {margin-top: 2rem;
  font-size: 80%;
  opacity: 0.5;
}

/* home buttons */

.services-buttons{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:20px;
  list-style:none;
  padding:0 !important;
}

.services-buttons li{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:6px;
  cursor:pointer;

  display:flex;
  align-items:flex-end;
  padding:20px;

  color:#fff;
  font-weight:600;

 
}

/* Hover effect */
.services-buttons li:hover{
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Image zoom effect */
.services-buttons li::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("images/water.jpg") center/cover no-repeat;
  z-index:0;
  transition: transform 0.5s ease;
}

.services-buttons li.sb1::before
{background:url("images/services-01.jpg") center/cover no-repeat;}
.services-buttons li.sb2::before
{background:url("images/services-02.jpg") center/cover no-repeat;}
.services-buttons li.sb3::before
{background:url("images/services-03.jpg") center/cover no-repeat;}
.services-buttons li.sb4::before
{background:url("images/services-04.jpg") center/cover no-repeat;}
.services-buttons li.sb5::before
{background:url("images/services-05.jpg") center/cover no-repeat;}
.services-buttons li.sb6::before
{background:url("images/services-06.jpg") center/cover no-repeat;}

.services-buttons li.sb1::before {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
    url("images/services-01.jpg") center/cover no-repeat;
}

.services-buttons li.sb1:has(a.active)::before {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
    url("images/services-01.jpg") center/cover no-repeat;
}

.services-buttons li.sb2::before {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
    url("images/services-02.jpg") center/cover no-repeat;
}

.services-buttons li.sb2:has(a.active)::before {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
    url("images/services-02.jpg") center/cover no-repeat;
}

.services-buttons li.sb3::before {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
    url("images/services-03.jpg") center/cover no-repeat;
}

.services-buttons li.sb3:has(a.active)::before {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
    url("images/services-03.jpg") center/cover no-repeat;
}

.services-buttons li.sb4::before {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
    url("images/services-04.jpg") center/cover no-repeat;
}

.services-buttons li.sb5::before {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
    url("images/services-05.jpg") center/cover no-repeat;
}

.services-buttons li.sb6::before {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
    url("images/services-06.jpg") center/cover no-repeat;
}

.services-buttons li.sb1
{background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url("images/services-01.jpg") center/cover no-repeat;}

.services-buttons li.sb2
{background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url("images/services-02.jpg") center/cover no-repeat;}

.services-buttons li.sb3
{background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url("images/services-03.jpg") center/cover no-repeat;}

.services-buttons li.sb4
{background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url("images/services-04.jpg") center/cover no-repeat;}

.services-buttons li.sb5
{background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url("images/services-05.jpg") center/cover no-repeat;}

.services-buttons li.sb6
{background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url("images/services-06.jpg") center/cover no-repeat;}


.services-buttons li:hover::before{
  transform: scale(1.1);
}

/* Overlay (keeps text readable) */
.services-buttons li::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index:1;
}

.services-buttons li{
  position:relative;
  overflow:hidden;
  border-radius:6px;
  aspect-ratio:1/1;
}

.services-buttons li a{
  display:flex;
  align-items:flex-end;   /* 👈 pushes text down */
  height:100%;
  width:100%;
  padding:20px;

  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:1.1rem;

  position:relative;
  z-index:2;
}

.services-buttons li a.active::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: #fff;
	position: absolute;
	bottom: 4px;
}
	
@media (max-width: 900px){
  .services-buttons{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px){
  .services-buttons{
    grid-template-columns: 1fr;
  }
}

.services-buttons a{
  color:#fff;
  text-decoration:none;
  display:block;
  height:100%; z-index: 9;
}

.services-buttons .lazy-load:nth-child(1) { transition-delay: 0.25s; }
.services-buttons .lazy-load:nth-child(2) { transition-delay: 0.5s; }
.services-buttons .lazy-load:nth-child(3) { transition-delay: 0.75s; }
.services-buttons .lazy-load:nth-child(4) { transition-delay: 1s; }
.services-buttons .lazy-load:nth-child(5) { transition-delay: 1.25s; }
.services-buttons .lazy-load:nth-child(6) { transition-delay: 1.5s; }
	
.home-services {margin-top: 4rem}
	
/* Contact*/

.contact .container .contact-holder {
    display: flex;
    gap: 8rem;
}

@media (max-width: 700px){
	.contact .container .contact-holder {flex-direction: column; gap: 4rem;}	
}

.contact .left, .contact .right {
    background: #fff;
    border-radius: 8px;
}

@media (max-width: 700px){
.contact .left, .contact .right {padding: 0;}
.contact-info {font-size: 80%}
	.contact .right.lazy-load.delay2.loaded {transition-delay: 0s !important}
}

.contact .left {
    flex: 1.5;
}

.contact .right {
    flex: 1.5;
}



.contact .right a {color: var(--darkblue);}

.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact textarea {
    min-height: 120px;
    resize: vertical;
}

.contact .contact-holder button {
    background: var(--darkblue);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.contact .contact-holder button:hover {
    background: #005f8d;
}

.contact .contact-info p {
    margin: 10px 0;
}

/* About us*/

.profile-box{
  background:var(--darkblue);
  color:#fff;
  position:relative; margin-top: 4rem; overflow:hidden;
  border-radius:6px;
}

.profile-inner{
  position:relative; padding: 2rem;
}



/* Two-column text */
.profile-text{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px; max-width:90%;
}


@media (max-width: 768px){
  .profile-text{
    grid-template-columns: 1fr;
  }
}

.profile-text-one {max-width: 90%}

.profile-text-one h2 {color: #fff}

.profile-text p{
  margin-bottom:1.25rem;
  line-height:1.7;
}

.about-les {margin-top: 2rem}

.about-les img, .about-sig img{
  width:200px;
}
.about-les img {border-radius: 6px;}
.about-sig {margin-top: 1rem}



.profile-right{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.profile-right img{
  width:200px;
  margin-bottom:10px;
}

/* Image */
.profile-image img{
  width:220px;
  border-radius:4px;
}

/* Signature block */
.profile-signature{
  text-align:left;
}

.profile-signature img{
  width:200px;
  margin-bottom:10px;
  opacity:0.9;
}

.profile-signature p{
  font-size:0.9rem;
  opacity:0.85;
}

/* Vertical label */
.profile-label{
  position:absolute;
  right:1rem;
  top:0px;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

/* Line */
.profile-label .line{
  width:1px;
  height:30px;
  background:rgba(255,255,255,0.6);
}

/* Text */
.profile-label .text{
  writing-mode: vertical-rl;
  text-orientation: mixed;
font-weight: bold;
  font-size: 80%;
  letter-spacing:4px;
}

.profile-text div p:last-of-type {margin-bottom: 0}


/* Subtle CTA block */
.cta-wrap {
  margin: 3rem 0 2rem;
  padding: 1.2rem 1.6rem;
  background: #f7f7f7; /* soft neutral */
  border-left: 3px solid var(--darkblue); /* gentle accent */
  border-radius: 6px;
}

.cta-wrap p {
  margin: 0;
  color: #333;
}

.cta-wrap a {
  color: var(--darkblue); /* calm, trustworthy blue */
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 59, 92, 0.3);
  transition: border-color 0.2s ease;
}

.cta-wrap a:hover {
  border-color: rgba(0, 59, 92, 0.6);
}
