* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Animation */
.slide-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.c-social-media {
    justify-items: left;
}

.c-social-media .example-2 {
    justify-content: center;
    margin-left: -12px;
}

.contact-text {
    font-size: 7rem;
    margin-bottom: 5vh;
    background: linear-gradient(#ffbd1f, #086498);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    justify-content: center;
}

#contact {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top: 15vh;
}

.contact-main-box {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0%;
    justify-content: center;
    margin-bottom: 4vh;
  }

.contact-info {
    width: 40%;
    height: 100%;
    /* background-color: rgb(255, 114, 114); */
}

.contact-form {
    width: 40%;
    /* background-color: rgb(176, 255, 167); */
    height: 100%;
    padding: 20px;  /* Add padding to the form container */
}

.touch {
    margin: 0px;
    font-weight: bold;
    font-size: 4rem;
}

.desc {
    word-wrap: break-word;
    font-weight: 100;
    line-height: 24px;
    background-color: #ffff;
}

.text-div {
    padding-top: 10px;
}

.c-number {
    margin-top: 50px;
}

.c-num {
    text-decoration: none;
    gap: 9px;
}

.num {
    margin-left: 10px;
}

/* Social Media Icons */
.c-social-media .example-2 {
    justify-content: flex-start;
    margin-top: 10px;
}

.c-social-media .icon-content {
    margin-right: 15px;
}

@media screen and (max-width: 768px) {
    .c-social-media .example-2 {
        justify-content: center;
    }
}

.form-name {
    text-align: center;
    font-size: 2rem;
    margin-top: 0px;
    margin-bottom: 40px;
}

/* Input Styles */
.input-group {
    position: relative;
    margin-bottom: 20px; /* Add space between fields */
}
.input-group input {
    padding: 10px 16px!important;
    border-radius: 2px!important;

    width: 100%;
}
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 20px; /* Added padding for input fields */
    margin: 8px 0; /* Adds margin between fields */
    border-radius: 2px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* Ensures padding is included in width calculation */
}

.input-group label {
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 1rem;
    background-color: white;
    padding: 0 5px;
}

.input-group textarea {
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #74C0FC; /* Highlight on focus */
    outline: none;
}

.input-group input:focus + label,
.input-group textarea:focus + label {
    color: #74C0FC; /* Change label color on focus */
}

input:focus,
textarea:focus {
    box-shadow: 0 0 5px rgba(116, 192, 252, 0.5);
}

/* Button Styles */
button {
    padding: 12px 20px;
    background-color: #74C0FC;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    background-color: #3381c8;
}
