@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    background-color:#CDD7D9;
    color:black;
    width: 100%;
    min-height: 100vh;
    font-family: "acumin-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

nav div {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;}



nav {
	position: absolute; 
	z-index: 10;
    background-color:#2A4D59;
    height: 50px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;  
	border-radius: 50px;
    padding: 40px 20px;
    margin: 30px; 
}

nav h4 img {
    height: 30px;
    padding-top: 5px;}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
	justify-content:flex-end;
	margin-left: auto;}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    font-family: "acumin-pro", sans-serif;
    display: block;
    padding: 10px;}


nav ul li a:hover {
    background-color:#DFE783;
    border-radius: 50px;
    color: black;}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  max-width: 700px;
  color: white;
  left: 60px;
  top: 55%;
  transform: translateY(-50%);
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 30%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(0, 0, 0, 0) 75%);
    z-index: 1;
	border-radius: 0 0 50px 50px;
}

.button {
  background: #2A4D59;
  color: white;
  padding: 12px 30px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 35px;
  width: 150px;
}

.button:hover {
  background: #6677AC;
  color: black;
}

.section {
  padding: 80px 20px;
}

.section.light {
  background-color:#CDD7D9;
}

.section.dark {
  background: #2A4D59;
  color: white;
}

.section.center {
  text-align: center;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* HOW IT WORKS */
.steps {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25)
}

.step p {margin-top: 10px;
	line-height: 1.6;}
.container1, .container2 {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;}


.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    width: 25%;
    background-color: #2A4D59;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}

.quote-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.quote-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 1;
}

.quote-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 40px;

    max-width: 900px;
    width: 100%;
    padding: 50px;

    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


.quote-card img {
    width: 50%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}


.quote-card p {
    width: 50%;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left;
}




.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    justify-items: center;
	padding: 30px; 
	background-color: #2a4d59;

}
.image-grid img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.site-footer {
  background-color: #2A4D59;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: "acumin-pro", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f4f4f4;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaaaaa;
}
.footer-bottom img {
	width: 200px;
	margin-top: 15px;
	margin-bottom: 15px; 
}

@media (max-width: 1000px) {

    nav {
        height: auto;
        padding: 20px;
    }

    nav div {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    nav ul {
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 0px;
    }


  /* HERO */
  .hero {
    height: 70vh;
  }

  .hero-text {
    left: 40px;
    max-width: 600px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  /* STEPS */
  .steps {
    flex-direction: column;
    gap: 25px;
  }

  /* PRODUCT GRID */
  .column {
    width: 50%;
  }

  /* QUOTE */
  .quote-card {
    gap: 30px;
    padding: 40px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {

    nav {
        width: 90%;
        height: auto;
        padding: 15px;
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
    }


  /* HERO */
  .hero {
    height: 450px;
  }

  .hero-text {
    left: 20px;
    padding-right: 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* SECTIONS */
  .section {
    padding: 60px 20px;
  }

  /* PRODUCT GRID */
  .column {
    width: 50%;
  }

  /* QUOTE */
  .quote-card {
    flex-direction: column;
    text-align: center;
  }

  .quote-card img,
  .quote-card p {
    width: 100%;
  }

  .quote-card p {
    font-size: 1rem;
  }

  /* IMAGE GRID */
  .image-grid img {
    width: 120px;
    height: 120px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 400px) {

    nav {
        width: 80%;
        height: auto;
        padding: 0px;
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        align-items: center;
        margin: 10px 0;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
        align-items: center;
    }


  .hero {
    height: 500px;
  }

  .hero-text {
	margin-top: 90px;
    left: 15px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .button {
    width: 50%;
    text-align: left;
  }

  /* SECTIONS */
  .section h2 {
    font-size: 1.5rem;
  }

  /* PRODUCT GRID */
  .column {
    width: 25%;
  }

  /* QUOTE */
  .quote-card {
    padding: 25px;
  }

  .quote-card img {
    max-height: 250px;
  }

  .quote-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* FOOTER */
  .footer-bottom img {
    width: 160px;
  }
}

