:root{
  --navy:#005090;
  --blue:#0060a0;
  --teal:#1090c0;
  --sky:#70c0e0;
  --bg:#f0f3f6;
  --white:#ffffff;
  --text:#0b1b2b;
  --muted:#4a657a;
  --shadow: 0 18px 40px rgba(0,0,0,.12);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

.container{width:min(1100px, 92%); margin-inline:auto}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 16px;
  height: 110px;
  background:rgba(16, 16, 16, 0.800);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.brand{display:flex; gap:14px; align-items:center; text-decoration:none; color:inherit}
.brand__logo{filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); width:200px; height:200px; object-fit:contain}
.brand__name{font-size: 1.5rem;font-weight:800; letter-spacing:.2px; color:#ffffff}

.nav{display:flex; gap:48px; align-items:center}
.nav a{
  letter-spacing: 0.3px;
  font-size: 1.5rem;
  text-decoration:none; color:#ffffff;
  font-weight:600; opacity:.88;
}
.nav a:hover{opacity:1}

.hamburger{display:none; background:none; border:0; padding:8px; cursor:pointer}
.hamburger span{display:block; width:24px; height:2px; background:var(--text); margin:5px 0}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--blue), var(--teal));
  color:var(--white);
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.2);
  box-shadow: 0 10px 28px rgba(0,96,160,.25);
}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(0,0,0,.18);
  box-shadow:none;
}
.btn--small{padding:10px 14px; font-size:.95rem}
.btn--block{width:100%}

.hero{
  position:relative;
  min-height:78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  background: #001b2e;
}
.hero__bg{
  position:absolute; inset:0;
  background-image:url("assets/hero-beach2.jpg");
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 500px at 20% 30%, rgba(112,192,224,.35), transparent 55%),
    linear-gradient(90deg, rgba(0,80,144,.92) 0%, rgba(0,96,160,.78) 44%, rgba(0,0,0,.20) 100%);
}
.hero__content{position:relative; padding:70px 0 54px 0; color:var(--white)}
.kicker{opacity:.9; font-weight:700; letter-spacing:.6px; text-transform:uppercase; font-size:.85rem}
.hero h1{margin:.35rem 0 0; font-size: clamp(2.1rem, 4vw, 3.5rem); line-height:1.05}
.lead{max-width:56ch; opacity:.92; font-size:1.08rem; margin:14px 0 22px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px}
.hero__badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  padding:8px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:.92rem;
}

.section{padding:70px 0}
.section--alt{background:linear-gradient(180deg, rgba(112,192,224,.18), transparent 70%)}
.section__title{margin:0 0 10px; font-size: clamp(1.6rem, 2.3vw, 2.2rem)}
.section__subtitle{margin:0 0 26px; color:var(--muted); max-width:70ch}

.experience-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}

.experience-row--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.experience-row--reverse .experience-media {
  order: -1;
}
.experience-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  object-fit: cover;
}

.experience-row--reverse img {
  transform: translateY(6px);
}

.experience-text {
  max-width: 52ch;
}

.productlines{
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.productcard{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
}

.productcard--reverse{
  grid-template-columns: 1.05fr 0.95fr;
}

.productcard--reverse .productcard__media{
  order: -1;
}

.productcard__media img{
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.productcard__body{
  padding: 18px 18px 18px 6px;
}

.productcard__body h3{
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.productcard__body p{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 70ch;
}

.productcard__tags{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.productcard__tags li{
  font-weight: 800;
  font-size: .92rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,96,160,.10);
  color: var(--navy);
  border: 1px solid rgba(0,96,160,.16);
}

.productcard__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/*added the Products section */
.note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(112,192,224,.14);
  border: 1px solid rgba(0,96,160,.14);
  color: var(--muted);
}

/*added styling for the services cards */
.service-card {
  overflow: hidden; /* keeps rounded corners clean */
}

.service-card__media {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.service-card__body {
  padding: 18px;
}


.grid{display:grid; gap:18px}
.services{grid-template-columns:repeat(3, minmax(0, 1fr))}
.card{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px; color:var(--muted)}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card li{margin:6px 0}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:center;
}
.media img{
  width:100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.08);
}

.stats{display:flex; gap:12px; margin-top:16px; flex-wrap:wrap}
.stat{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:12px 14px;
  min-width:120px;
}
.stat__num{font-weight:900; font-size:1.2rem; color:var(--navy)}
.stat__label{color:var(--muted); font-weight:700; font-size:.95rem}

.timeline{display:grid; gap:14px; margin-top:18px}
.step{
  display:grid; grid-template-columns: 44px 1fr;
  gap:12px; align-items:flex-start;
  padding:16px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
}
.step__num{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg, var(--blue), var(--teal));
  color:var(--white);
  font-weight:900;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted)}

.section--cta{
  background: linear-gradient(135deg, rgba(0,96,160,.12), rgba(112,192,224,.20));
}
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.contact__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.form{
  background: rgba(255,255,255,.80);
  border:1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
label{display:block; font-weight:800; margin:10px 0 4px}
input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.9);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(0,96,160,.55); box-shadow: 0 0 0 4px rgba(0,96,160,.12)}
.fineprint{font-size:.9rem; color:var(--muted); margin-top:10px}

/* Styling for the form selectors */
select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.9);
  outline:none;
}
select:focus{
  border-color: rgba(0,96,160,.55);
  box-shadow: 0 0 0 4px rgba(0,96,160,.12);
}


.footer{
  padding:24px 0;
  border-top:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.65);
}

.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 920px){
  .productcard,
  .productcard--reverse{
    grid-template-columns: 1fr;
  }

  .productcard--reverse .productcard__media{
    order: 0;
  }

  .productcard__body{
    padding: 16px;
  }

  .productcard__media img{
    min-height: 220px;
  }
  .experience-row,
  .experience-row--reverse {
    grid-template-columns: 1fr;
  }
  .experience-row--reverse .experience-media {
    order: 0;
  }
  .experience-media img {
    margin-top: 16px;
  }
  .brand__logo {
    height: 44px;
  }
  .nav a {
    font-size: 1rem;
  }
  .services{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .nav{display:none}
  .hamburger{display:block}
}
