/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Winky Sans", sans-serif;
    background-color: #b4cff8;
    color: #333;
    line-height: 1.6;
}

.container {
    text-align: center;
    padding: 1rem;
}

header {
    background: linear-gradient(to right, #0a324b, #0b598a);
    color: #fff;
    padding: .5rem;
    border-bottom: 1px solid #02a3fa;
}

header h1 {
    font-size: 2.5rem;
    margin-top: 10px;
}

header p {
    color: #02a3fa;
    font-size: 1.2rem;
    margin-top: -10px;
}
.fa-brands {
    margin-right: 5px;
}

a {
    text-decoration: none;
}

.social-icons {
    margin-top: 1rem;
}

.icon {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.icon.fb {
    background: #3b5998;
}

.icon.tw {
    background: #1da1f2;
}

.icon.li {
    background: #0077b5;
}

.icon.gh {
    background: #333;
}

.icon:hover {
    transform: scale(1.1) rotate(2deg);
}

/* Project Section */
#projects, 
#business {
    padding: 3rem 1rem;
    background: #1d1d25;
}

#projects h2,  
#business h2 {
    color: #02a3fa;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.h2icon {
    margin-right: 10px;
}

.project-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.project-card {
    display: block;
    background: linear-gradient(to right, #0a324b, #0b598a);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #02a3fa;
    box-shadow: 0 0 10px rgba(1, 193, 252, 0.493);
    width: 300px;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: auto;
}

.project-card span {
    display: block;
    padding: 0.8rem;
    font-weight: 600;
}

img.cardImage {
    height: 100px;
    width: auto;
    margin-top: 20px;
}

span.cardDescription {
    color: #b4cff8;
}

/* Contact Section */
#contact {
    padding: 3rem 1rem;
    background: #49789e;
    text-align: center;
}

#contact h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    background: linear-gradient(to right, #0a324b, #0b598a);
    color: #fff;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #023e8a;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to right, #0a324b, #0b598a);
    color: #fff;
    font-size: 0.9rem;
}

#thankYouBox {
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #b4cff8;
}

#thank-you{
    text-align: center;
    font-size: 1.5rem;
    color: #023e8a;
    margin-top: 20%;
}
.back-button {
    display: inline-block;
    margin-top: 25px;
    margin-bottom: 20%;
    padding: 10px 20px;
    background: linear-gradient(to right, #0a324b, #0b598a);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .project-gallery {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        font-size: 2rem;
    }

    #projects h2,
    #business h2,
    #contact h2 {
        font-size: 1.5rem;
    }
}
