body{
    background-color: rgb(250, 254, 255);
    color: rgb(70, 70, 70);
    margin: 60px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.hero{
    text-align: center;
    justify-content: center;
}
h1, h2, h4{
    color: rgb(8, 22, 48);
}
.navbar{
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.navbar ul{
    display: flex;
    list-style-type: none;
    background-color: rgb(255, 255, 255);
    padding: 0px 5px;
    margin: 0px;
    gap: 10px;
    overflow: hidden;
}
.navbar a{
    color: #3a8fd3;
    text-decoration: none;
    padding: 10px 15px;
    text-align: end;
    display: inline-block;
    transition: transform 0.3s ease;
}
.navbar a:hover{
    transform: scale(1.1);
    background-color: rgb(255, 255, 255);
    color: #3cb2e0;
}
.navbar li{
    float: left;
}
header{
    display: flex;
    height: 100vh;
    align-items: center;
    padding: 0 20px;
}
.card{
    height: 60vh;
    width: 80%;
    margin-bottom: 200px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}   
.card a{
    color: #3cb2e0;
    text-decoration: none;
    font-weight: 400;
}
.start-a-project{
    text-align: center;
    margin-bottom: 400px;
}
h4{
    text-align: center;
}
.contact-page {
    min-height: 100vh;
    padding-top: px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f9fbff 0%, #eef6ff 100%);
}
.contact-content {
    text-align: center;
    width: min(35%, 800px);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin: 120px auto 40px;
}

.contact-summary h3 {
    margin-top: 0;
    color: #233755;
}

.GetinTouchform {
    margin: 0;
}
.GetinTouchform form {
    display: grid;
    gap: 12px;
    justify-items: center;
}
.input-group {
    display: grid;
    gap: 4px;
    width: 100%;
    justify-items: center;
}
.input-group label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2b3a59;
    width: 100%;
    max-width: 400px;
}
.input-group input,
.input-group textarea {
    text-align: center;
    width: min(90%, 420px);
    border-radius: 10px;
    border: 1px solid #c8d5e8;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fcfdff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #5a94d6;
    box-shadow: 0 0 0 3px rgba(90, 148, 214, 0.15);
}
.button-row {
    text-align: center;
}
.button-row a{
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 400px;
}
.button-row button {
    border: none;
    border-radius: 10px;
    background: #3a8fd3;
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}
.button-row button:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
}
.contact-summary {
    border-top: 1px solid #e8eef8;
    padding-top: 10px;
    color: #233755;
    font-size: 0.95rem;
}
.contact-summary a {
    color: #3a8fd3;
    text-decoration: none;
    font-weight: 600;
}
.contact-summary a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    .contact-summary {
        border-top: none;
        padding-top: 0;
        border-left: 1px solid #e8eef8;
        margin-left: 18px;
        padding-left: 18px;
    }
}
footer{
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.08);
    width: 100%;
}