@charset "UTF-8";
/*-----------------------------------------------------------
  BASE
-----------------------------------------------------------*/
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* HEADER / NAV */
header {
  background-color: #ffffff;
  color: #3498db;
  padding: 1rem 2rem;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
header .logo img {
  height: auto;
  max-height: 600px;
  max-width: 100%;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-right {
  text-align: left;
}
header .header-right h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.75rem;
  color: #3498db;
}
header .header-right .nav-menu {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
header .header-right .nav-menu li a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.2s;
}
header .header-right .nav-menu li a:hover {
  background-color: rgb(36.7380753138, 138.7882845188, 207.1619246862);
  color: white;
}
header .header-right .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3498db;
  cursor: pointer;
}

/*-----------------------------------------------------------
  FORM / CAPTCHA STYLES
-----------------------------------------------------------*/
form {
  color: #222;
  max-width: 500px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* CAPTCHA */
  /* SUBMIT BUTTON */
}
form label {
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}
form input,
form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
form textarea {
  resize: vertical;
}
form img {
  display: block;
  margin: 0.75rem 0 0.25rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
}
form .captcha-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
form .captcha-row img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
}
form .captcha-row input {
  flex: 1;
  margin-top: 0;
}
form button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
form button:hover {
  background-color: rgb(34.6744769874, 130.9924686192, 195.5255230126);
}
form button:active {
  transform: translateY(1px);
}

/*-----------------------------------------------------------
  HERO (MAIN COMPANY MESSAGE)
-----------------------------------------------------------*/
.hero {
  background-color: #3498db;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}
.hero .grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  grid-template-areas: "picture title title" "picture text  text";
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.hero .picture {
  grid-area: picture;
}
.hero .picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  grid-area: title;
}
.hero p {
  font-size: 1.25rem;
  margin: 0 auto 2rem;
  max-width: 70ch;
  grid-area: text;
}
.hero .cta-button {
  background-color: white;
  color: #3498db;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.hero .cta-button:hover {
  background-color: rgb(72.3, 162.3, 222.6);
  color: white;
}
.hero .hero-image {
  margin-top: 3rem;
  max-width: 600px;
  width: 100%;
}
.hero .hero-image-small {
  margin-top: 3rem;
  max-width: 200px;
  width: 100%;
  margin: 2rem auto;
}

/*-----------------------------------------------------------
  MAIN PARAGRAPH
-----------------------------------------------------------*/
.mainparagraph {
  background: linear-gradient(to left, #5de0e6, #004aad);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}
.mainparagraph h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.mainparagraph h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
.mainparagraph p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
}
.mainparagraph .checked-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.mainparagraph .checked-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}
.mainparagraph .checked-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1rem;
  height: 1rem;
  background-color: #4caf50;
  border-radius: 3px;
}
.mainparagraph .checked-list li::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.35rem;
  width: 0.35rem;
  height: 0.6rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/*-----------------------------------------------------------
  SERVICES / CAPABILITIES
-----------------------------------------------------------*/
.services {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.services .service-card {
  background-color: #ffffff;
  color: #333;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s;
}
.services .service-card:hover {
  transform: translateY(-5px);
}
.services .service-card h3 {
  margin-bottom: 1rem;
}
.services .service-card p {
  font-size: 0.95rem;
}

/*-----------------------------------------------------------
  SUPPORTING INFO (Testimonials / Clients / Numbers)
-----------------------------------------------------------*/
.supporting-info {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.supporting-info .info-block {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.supporting-info .info-block:hover {
  transform: translateY(-5px);
}
.supporting-info .info-block h4 {
  margin-bottom: 0.5rem;
}
.supporting-info .info-block p {
  font-size: 0.95rem;
}

/*-----------------------------------------------------------
  CTA SECTION (Bottom Engagement)
-----------------------------------------------------------*/
.cta {
  background-color: #5de0e6;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.cta .cta-button {
  background-color: white;
  color: #3498db;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.cta .cta-button:hover {
  background-color: rgb(65.0181818182, 218.6454545455, 225.6818181818);
  color: white;
}

/*-----------------------------------------------------------
  PORTFOLIO
-----------------------------------------------------------*/
.portfolio {
  position: relative;
  background-image: var(--portfolio-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 6rem 2rem;
  /*---------------------------------
    BASE ROW
  ---------------------------------*/
  /*---------------------------------
    t23 — 2 columns title | 3 columns text
  ---------------------------------*/
  /*---------------------------------
    t32 — 3 columns text | 2 columns title
  ---------------------------------*/
  /*---------------------------------
    t5 — full-width separator
  ---------------------------------*/
}
.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.portfolio h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.portfolio h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
.portfolio p {
  font-size: 1.35rem;
  margin: 0 0 2rem;
  max-width: 1200px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.portfolio a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.portfolio a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}
.portfolio a:visited {
  color: white;
}
.portfolio h3 a {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 2px solid white;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s, color 0.2s;
}
.portfolio h3 a:hover {
  background-color: white;
  color: #000;
}
.portfolio .portfolio-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio .portfolio-grid {
  display: grid;
  row-gap: 3rem;
}
.portfolio .portfolio-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.portfolio .portfolio-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.portfolio .portfolio-content p {
  margin: 0 0 0.75rem;
  max-width: 60ch;
}
.portfolio .portfolio-content a {
  font-weight: bold;
  text-decoration: none;
}
.portfolio .portfolio-row.t23 .portfolio-title {
  grid-column: 1/span 2;
}
.portfolio .portfolio-row.t23 .portfolio-content {
  grid-column: 3/span 3;
}
.portfolio .portfolio-row.t32 .portfolio-content {
  grid-column: 1/span 3;
}
.portfolio .portfolio-row.t32 .portfolio-title {
  grid-column: 4/span 2;
}
.portfolio .portfolio-row.t5 {
  grid-template-columns: 1fr;
  height: 4px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(160, 160, 160, 0.9));
  border-radius: 5px;
}

/*-----------------------------------------------------------
  FOOTER
-----------------------------------------------------------*/
footer {
  background-color: #f4f4f4;
  color: black;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}
footer a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
footer a:hover {
  color: blue;
  text-decoration: underline;
}
footer a:visited {
  color: black;
}

/*-----------------------------------------------------------
  RESPONSIVE GRID ADJUSTMENTS
-----------------------------------------------------------*/
@media (max-width: 768px) {
  .services,
  .supporting-info {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .mainparagraph p {
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    max-width: 90ch;
  }
  .hero {
    padding: 4rem 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    max-width: 90ch;
  }
  header .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  header .header-inner .header-right h1 {
    font-size: 1.5rem;
  }
  header .header-inner .header-right .nav-menu {
    justify-content: center;
    flex-wrap: nowrap;
  }
  header .logo img {
    margin-bottom: 1rem;
    max-height: 300px;
    height: auto;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 480px) {
  .services,
  .supporting-info {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 3rem 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
    margin: 0 auto 1rem;
    max-width: 95ch;
  }
  .mainparagraph p {
    font-size: 1rem;
    margin: 0 auto 1rem;
    max-width: 95ch;
    padding: 0.5rem;
  }
  form input,
  form textarea,
  form button {
    font-size: 0.95rem;
  }
  header .header-inner {
    padding: 1rem;
  }
  header .header-inner .header-right .nav-menu {
    display: none !important;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }
  header .header-inner .header-right .nav-menu.open {
    display: flex !important;
  }
  header .header-inner .header-right .nav-toggle {
    display: block;
    margin-top: 0.5rem;
  }
  header .header-inner .header-right h1 {
    font-size: 1.25rem;
  }
  header .logo img {
    max-height: 150px;
    height: auto;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .portfolio {
    padding: 3rem 1rem;
    /* t23 and t32 behave identically on mobile */
  }
  .portfolio .portfolio-row {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .portfolio .portfolio-row.t23 .portfolio-title,
  .portfolio .portfolio-row.t23 .portfolio-content,
  .portfolio .portfolio-row.t32 .portfolio-title,
  .portfolio .portfolio-row.t32 .portfolio-content {
    grid-column: auto;
  }
  .portfolio .portfolio-row.t23 .portfolio-title,
  .portfolio .portfolio-row.t32 .portfolio-title {
    font-size: 1.5rem;
  }
  .portfolio .portfolio-row.t5 {
    grid-column: auto;
    height: 3px;
  }
}/*# sourceMappingURL=main.css.map */