
p {
  font-size: 16px;        /* size of text */
  line-height: 1.6;       /* spacing between lines */
  color: #020202;            /* text color */
  margin: 10px 0;         /* spacing outside */
  padding: 5px;  
  text-align: left;         /* spacing inside */
}

.nav-links li a {
  text-transform: uppercase;
  letter-spacing: 1px;
  size: 30px;
  gap: 40px;
  margin-right: 40px;
  line-height: 2.5;
}

.services {
  background-color: #fafcf9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 22px;
  text-indent: 1%;
  line-height: 2.5;
  
}
/*
.contact {
  background-color: #dce0d9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 22px;
}
.contact input[type="text"],
.contact textarea {
  width: 100%;        /* makes it full width */
/*  max-width: 600px;   controls maximum size
  padding: 15px;      /* bigger inside spacing */
/*  margin: 10px 0;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: none;       /* prevents awkward resizing */
/*}


/* Buttons */
.contact button {
  padding: 12px 25px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  margin: 10px;
  cursor: pointer;
  transition: 0.3s;
} */


.info {
  background-color: #edf6f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 22px;
}
body{
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5FFFA;}

.contact {
  text-align: center;
  margin: 20px auto;
  max-width: 500px;
}

.contact fieldset {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  background: #f8f8f8;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.contact textarea {
  resize: vertical;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.form-buttons button {
  flex: 1;
  margin: 5px;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background-color: #14213d;
  color: #fff;
  cursor: pointer;
}

.form-buttons button:hover {
  background-color: #000;
}
table {
  width: 75%;
  border-collapse: collapse; /* makes borders clean */

}

table, th, td {
  border: 1px solid #333; /* black border */
}

th, td {
  padding: 5px;
  text-align: center;
}
thead {
  background: #cbced4;
  color: #0a0a0a;
}
tfoot {
  background: #f3f3f3;
  font-style: italic;
}

        /* ✅ Base design (Desktop First) */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Example layout */
.container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 20px;
  padding: 20px;
}

/* ✅ Tablet view (up to 1024px) */
@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr; /* Stack items */
    gap: 15px;
  }

  h1 {
    font-size: 24px;
  }
}

/* ✅ Mobile view (up to 600px) */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  h1 {
    font-size: 20px;
    text-align: center;
  }

  p {
    font-size: 14px;
    text-align: center;
  }

  /* Example: make buttons full width */
  .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
footer {
  background-color: #F5F5F5;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
button[type="submit"] {
  background-color: #4CAF50; /* green background */
  color: white;              /* white text */
  padding: 12px 25px;        /* bigger size */
  border: none;              /* remove border */
  border-radius: 8px;        /* rounded corners */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;           /* hand pointer on hover */
  transition: 0.3s ease;     /* smooth hover effect */
}

/* Hover effect */
button[type="submit"]:hover {
  background-color: #45a049; /* slightly darker green */
  transform: scale(1.05);    /* little zoom effect */
}
button[type="reset"] {
  background-color: #f44336; /* red background */
  color: white;              /* white text */
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover effect */
button[type="reset"]:hover {
  background-color: #d32f2f; /* darker red */
  transform: scale(1.05);
}


