html, body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  color: #1f4568;
  background-color: #f2eded;
}

/*.sect {
  padding: 80px 20px;
}

.row--center {
  max-width: 1200px;
  margin: 0 auto;
}

.row__title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.row__sub {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 50px auto;
  color: #1e1534;
  max-width: 600px;
  line-height: 1.5;
}
To be removed*/

.hero {
  padding: 120px 20px; /* more space to stand out */
  background: linear-gradient(135deg, #3a9fff 0%, #6ec1ff 100%); /* eye-catching background */
  color: #ffffff; /* text stands out on gradient */
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.hero__title {
  font-size: 48px; /* much bigger than regular service boxes */
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 20px; /* slightly bigger for readability */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #f0f8ff; /* light text on gradient */
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #3a9fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}



/* Service Cards Container 
.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}*/

/*  GPT One*/
.services-row {
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 20px; /* spacing between boxes */
}


/* Service Box */
.service-box {
  flex: 1 1 calc(25% - 25px);
  min-width: 240px;
  padding: 30px 20px;
  background-color: #e6f0ff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*GPT One 
.service-box {
  width: 100%; /* take full width of parent */
  max-width: 600px; /* optional: control max width */
  margin: 0 auto; /* center align if max-width is set */
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}*/


.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Icon inside circle 
.service-box__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background-color: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #3a9fff;
}*/

.service-box__icon svg {
  width: 48px;
  height: 48px;
  color: #3a9fff; /* works if SVG uses fill="currentColor" */
}


/* Title */
.service-box__title {
  font-size: 20px;
  font-weight: 600;
  color: #1f4568;
  margin-bottom: 10px;
}

/* Description */
.service-box__desc {
  font-size: 15px;
  color: #8198ae;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .service-box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 600px) {
  .service-box {
    flex: 1 1 100%;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

form label {
  font-weight: 600;
  text-align: left;
}

form input,
form select,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.btn-form {
  padding: 12px 24px;
  background-color: #3a9fff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-form:hover {
  background-color: #2a7fd6;
}

.hidden {
  display: none;
}
