.title
{
    border-radius: 10px;
    border-color: rgb(0, 255, 234);
    background-image: linear-gradient(to right, rgb(76, 0, 255) , rgb(30, 255, 0));
    text-align: center;
    padding: 1% 0;
}

.title img {
    display: block;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    height: auto;
}

.top-navigation
{
    padding: 3px;
    border-radius: 5px;
    background-color: #00869e;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    width: 75px;
    height: 20px;
    line-height: 20px;
}
a
{
    color : #ffffff;
    text-decoration: none;
}
.navigation
{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
body 
{
    font-family: Arial, sans-serif;
}
.imageLink
{
    text-align: center;
    margin-top: 20px;
}
.service1
{
    background-color: #15ff00;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    flex: 1 1 45%;
    max-width: 380px;
    min-width: 240px;
}
.service2
{
    background-color: #2f00ff;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    flex: 1 1 45%;
    max-width: 380px;
    min-width: 240px;
}

.service1, .service2 {
    display: block;
    border-radius: 5px;
}

img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.fourm {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #00ffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    text-align: center;
}

/* spacing for each row */
.fourm p {
    margin-bottom: 15px;
}

/* label styling */
.fourm label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* inputs + textarea */
.fourm .text-input,
.fourm textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #0f9b00d5;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    background: #ffffff;
}

/* focus effect */
.fourm .text-input:focus,
.fourm textarea:focus {
    border-color: #004400;
    outline: none;
}

/* submit button */
.fourm button {
    background: #009797;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}

