body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
/*
Background pattern license:

The MIT License (MIT)

Copyright (c) 2023 Olex (https://codepen.io/tholex/pen/LYyOOPO)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
  background-size: 170;
  /*transform: rotate(90deg);*/
  background-image: conic-gradient(from 160deg at 70px 168.5px, #FDC12D 0deg 90deg, transparent 90deg), conic-gradient(from 21deg at 168px 71px, #FDC12D 0deg 90deg, transparent 90deg), conic-gradient(from 21deg at 141px 141px, #FEEBAE 0deg 114deg, transparent 114deg), conic-gradient(from -21deg at 96.5px 44px, #1483CA 0deg 131.5deg, transparent 131.5deg), conic-gradient(from -70deg at 43.5px 97px, #FDC12D 0deg 115.5deg, transparent 115.5deg), conic-gradient(from 134.5deg at 141px 141px, #1483CA 0deg 114.5deg, transparent 114deg), conic-gradient(from 160deg at 43.5px 97px, #FEEBAE 0deg 130.5deg, transparent 120deg 360deg);
  background-color: skyblue;
  background-size: 195px 195px;
  background-position: -30px -30px;
  background-repeat: repeat, repeat;


  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.logo {
  display: inline;
  height: 100px;
  width: 100px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 25px;
}

header h1 {
  display: inline;
  color: #ff6600;
  text-shadow: 4px 4px 4px #000;
  font-size: 48px;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: space-around;
  background-color: #333;
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

nav a.current {
  background-color: #ff6600;
}

.home-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 50px;
  row-gap: 50px;
}

footer {
  background-color: #333;
  padding: 20px;
  text-align: center;
  color: white;
  font-size: 12px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 330px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

.title {
  color: #444; /*grey;*/
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.card button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover {
  background-color: #555;
}

.card a {
  color: white;
  text-decoration: none;
}

.about-section, .solutions-section, .work-section {
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
}

.about-section h2, .solutions-section h2, .work-section h2 {
  color: #444;
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
  margin-top: 30px;
}

.about-section p {
  margin: 10px 0;
}

.about-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-section li {
  margin-bottom: 10px;
}

.about-section a {
  color: #007bff;
  text-decoration: none;
}

.about-section a:hover {
  text-decoration: underline;
}

.work-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.work-section p {
  font-size: 16px;
  margin: 0 0 20px;
}

