*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* border: 1px dashed red; */
}

body {
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 60px;
}

p {
  font-size: 20px;
  line-height: 1.6;
}

/* Typography */
.fs-10 { font-size: 10px; }
.fs-12 { font-size: 12px; }
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }
.fs-32 { font-size: 32px; }
.fs-40 { font-size: 40px; }

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

.ta-l { text-align: left; }
.ta-c { text-align: center; }
.ta-r { text-align: right; }

.lh-1 { line-height: 1; }
.lh-1-2 { line-height: 1.2; }
.lh-1-5 { line-height: 1.5; }

/* Text & Background Colors */
.c-white { color: #fff; }
.c-black { color: #000; }
.c-333 { color: #333; }
.c-666 { color: #666; }
.c-555 { color: #555; }
.c-red { color: red; }
.c-blue { color: blue; }
.c-darkblue { color: #2C3E50; }
.c-teal { color: #38A89D; }
.c-cream { color: #FDFBF5; }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-light { background-color: #f0f0f0; }
.bg-dark { background-color: #222; }
.bg-red { background-color: red; }
.bg-blue { background-color: blue; }
.bg-cream { background-color: #FDFBF5; }
.bg-teal { background-color: #38A89D; }

.bg-teal-mint { background: linear-gradient(135deg, #38A89D 0%, #A0E7E5 100%);}

/* Spacing - Margin */
.m-0-auto {margin: 0 auto;}

.m-0 { margin: 0; }
.m-5 { margin: 5px; }
.m-10 { margin: 10px; }
.m-20 { margin: 20px; }

.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-150 { margin-top: 150px; }

.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }

.ml-5 { margin-left: 5px; }
.ml-10 { margin-left: 10px; }
.ml-20 { margin-left: 20px; }

.mr-5 { margin-right: 5px; }
.mr-10 { margin-right: 10px; }
.mr-20 { margin-right: 20px; }

/* Spacing - Padding */
.p-0 { padding: 0; }
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-20 { padding: 20px; }

.pt-5 { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pt-50 { padding-top: 50px; }
.pt-100 { padding-top: 100px; }
.pt-150 { padding-top: 150px; }
.pt-300 { padding-top: 300px; }
.pt-350 { padding-top: 350px; }
.pt-400 { padding-top: 400px; }

.pb-5 { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pb-50 { padding-bottom: 50px; }
.pb-100 { padding-bottom: 100px; }
.pb-150 { padding-bottom: 150px; }
.pb-200 { padding-bottom: 200px; }
.pb-250 { padding-bottom: 250px; }

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pl-5 { padding-left: 5px; }
.pl-10 { padding-left: 10px; }

.pr-5 { padding-right: 5px; }
.pr-10 { padding-right: 10px; }

.plr-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.plr-30 {
  padding-left: 30px;
  padding-right: 30px;
}

/* Display */
.d-n { display: none; }
.d-b { display: block; }
.d-i { display: inline; }
.d-ib { display: inline-block; }
.d-f { display: flex; }
.d-g { display: grid; }

/* Flexbox */
.fd-r { flex-direction: row; }
.fd-c { flex-direction: column; }

.jc-sb { justify-content: space-between; }
.jc-sa { justify-content: space-around; }
.jc-c { justify-content: center; }
.jc-fe { justify-content: flex-end; }
.jc-fs { justify-content: flex-start; }

.ai-c { align-items: center; }
.ai-fe { align-items: flex-end; }
.ai-fs { align-items: flex-start; }

.fw-w { flex-wrap: wrap; }
.fw-nw { flex-wrap: nowrap; }

/* Grid */
.gtc-2 { grid-template-columns: repeat(2, 1fr); }
.gtc-3 { grid-template-columns: repeat(3, 1fr); }
.gtc-4 { grid-template-columns: repeat(4, 1fr); }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-40 { gap: 40px; }

/* Width & Height */
.w-100 { width: 100%; }
.w-50 { width: 50%; }
.w-auto { width: auto; }
.h-100 { height: 100%; }
.h-auto { height: auto; }

/* Positioning */
.pos-rel { position: relative; }
.pos-abs { position: absolute; }
.pos-fix { position: fixed; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-10 { right: 10px; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 10px; }

/* Borders & Radius */
.bd { border: 1px solid #ccc; }
.bd-n { border: none; }

.br-0 { border-radius: 0; }
.br-4 { border-radius: 4px; }
.br-8 { border-radius: 8px; }
.br-full { border-radius: 9999px; }

/* Misc */
.cur-p { cursor: pointer; }
.ttu { text-transform: uppercase; }
.ttc { text-transform: capitalize; }

.ov-h { overflow: hidden; }
.ov-s { overflow: scroll; }
.ov-a { overflow: auto; }

/* Text Decoration & Transform */
.td-u { text-decoration: underline; }
.td-n { text-decoration: none; }
.td-lt { text-decoration: line-through; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* Box Shadow */
.bs-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.bs-md { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.bs-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.2); }
.bs-n { box-shadow: none; }

/* Text Shadow */
.ts-lg { text-shadow: 3px 3px 6px rgba(0,0,0,0.4); }
.ts-md { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.ts-none { text-shadow: none; }
.ts-sm { text-shadow: 1px 1px 2px rgba(0,0,0,0.2); }

/* Opacity */
.op-0 { opacity: 0; }
.op-25 { opacity: 0.25; }
.op-50 { opacity: 0.5; }
.op-75 { opacity: 0.75; }
.op-100 { opacity: 1; }

/* Visibility */
.v-v { visibility: visible; }
.v-h { visibility: hidden; }

/* Overflow (Extended) */
.ov-v { overflow: visible; }
.ox-h { overflow-x: hidden; }
.oy-h { overflow-y: hidden; }

/* Object Fit */
.of-c { object-fit: cover; }
.of-contain { object-fit: contain; }
.of-f { object-fit: fill; }
.of-none { object-fit: none; }

/* Aspect Ratio */
.ar-1-1 { aspect-ratio: 1 / 1; }
.ar-16-9 { aspect-ratio: 16 / 9; }
.ar-4-3 { aspect-ratio: 4 / 3; }

/* Transitions */
.tr-all { transition: all 0.3s ease; }
.tr-bg { transition: background-color 0.3s ease; }
.tr-c { transition: color 0.3s ease; }

/* Pointer Events */
.pe-n { pointer-events: none; }
.pe-a { pointer-events: auto; }

/* White Space */
.ws-n { white-space: normal; }
.ws-nw { white-space: nowrap; }
.ws-p { white-space: pre; }

/* List Style */
.ls-n { list-style: none; }
.ls-d { list-style: disc; }
.ls-c { list-style: circle; }
.ls-s { list-style: square; }

/* Resize */
.rs-n { resize: none; }
.rs-b { resize: both; }
.rs-v { resize: vertical; }
.rs-h { resize: horizontal; }

/* Scroll Behavior */
.sb-s { scroll-behavior: smooth; }
.sb-a { scroll-behavior: auto; }

/* Max Width & Height */
.mw-100 { max-width: 100%; }
.mh-100 { max-height: 100%; }
.mw-240px {max-width: 240px;}
.mw-300px {max-width: 300px;}
.mw-400px {max-width: 400px;}
.mw-560px {max-width: 560px;}
.mw-740px {max-width: 740px;}
.mw-800px {max-width: 800px;}
.mw-1100px {max-width: 1100px;}
.mw-1300px {max-width: 1300px;}

/* Custom */
#navbar {
  position: fixed;
  top: 0;
  height: 150px;
  transition: height 0.3s ease;
  z-index: 1000;
  background-color: white;
  width: 100%;
}

#navbar.shrink {
  height: 50px;
}

#h2shrink {
  transition: font-size 0.3s ease;
}

#h2shrink.shrink2 {
  font-size: 24px;
}

.btn-hover-1{
  border: solid white 2px;
  transition: all 0.3s ease;
}
.btn-hover-1:hover{
  margin-top: -3px;
  margin-bottom: 3px;
  background-color: teal;
  color: white;
}
.btn-hover-2{
  border: solid #38A89D 2px;
  transition: all 0.3s ease;
}
.btn-hover-2:hover{
  margin-top: -3px;
  margin-bottom: 3px;
  background-color: white;
  color: #38A89D;
}
.bdl-1 {
  border-left: 4px solid #A0E7E5;
}

.approach-step > div {
  background-color: #FFFFFF;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #A0E7E5;
  max-width: 30%;
}

.contact-form {
  margin: 0 auto;
  max-width: 640px;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-form input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #DDE2E7;
  border-radius: 6px;
  margin-top: 5px;
}

footer {
  font-size: 20px;
  background: #11274c;
  padding: 50px 0;
  color: white;
}

footer > div {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

footer > div > ul {
  padding: 25px 0 0 0;
  text-align: center;
  width: 100%;
  display: table;
  box-sizing: border-box;
  list-style-type: none;
}

footer > div > ul > li {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  text-align: center;
  margin: 4px 0 0 0;
  border-right: 1px solid #fff;
  padding: 0 15px;
}

footer > div > p {
  text-align: center;
}

footer > div > p:first-of-type {
  font-size: 15px;
}

footer > div > p:nth-of-type(2) {
  border: 2px solid #fff;
  padding: 10px 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  margin: 20px 40px 0 40px;
}

footer > div > p:nth-of-type(3) {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  margin: 20px 40px 0 40px;
}

footer > div > p:nth-of-type(4) {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  margin: 20px 40px 0 40px;
}

.footmodal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  color: black;
}

.footmodal-content {
  position: relative;
  background-color: #fefefe;
  margin: 100px auto;
  padding: min(50px, 5vw);
  border: 1px solid #888;
  width: 95%;
  max-width: 1200px;
}

.footmodal-content > h1{
  margin-bottom:3vw;
  font-size: 32px;
}

.footmodal-content > h2{
  margin-bottom:2vw;
  margin-top:2vw;
  font-size: 24px;
  text-align:left;
}

.footmodal-content > p{
  margin-bottom:1vw;
  text-align:left;
}

.footmodalclose {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.footmodalclose:hover,
.footmodalclose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.hide-768 {
  display: block;
}
.show-768 {
  display: none;
}


@media (max-width: 768px) {
  .hide-768 {
    display: none;
  }
  .show-768 {
    display: block;
  }
  #navbar > div {
    align-items: baseline;
  }
  .fd-c-m {
    flex-direction: column;
  }
  .pt-200-m {
    padding-top: 200px;
  }
  .pb-50-m {
    padding-bottom: 50px;
  }
  .plr-20-m {
    padding-left: 20px;
    padding-right: 20px;
  }
  .fs-40-m{
    font-size: 40px;
  }
  .bg-teal-mint {
    background: linear-gradient(135deg, #38A89D 70%, #A0E7E5 100%);
  }
  .approach-step {
    flex-direction: column;
  }
  .approach-step > div {
    max-width: none;
    gap: 20px;
  }
  footer > div > p:nth-of-type(2) {
    margin: 20px 10px 0;
  }
  footer > div > p:nth-of-type(3) {
    margin: 20px 10px 0;
  }
}