:root {
    --green: #4CB332FF;
}
/* Mohamed Navbar */
/* Start Navbar  */
.navbar {
    background-color: var(--green);
    font-size: 20px;
    width: 100%;
}
.navbar-brand {
    transition: 0.3s;
    transition-timing-function: linear;
}
.navbar-brand:hover {
    letter-spacing: 1px;
    transform: scale(1.02);
}
.navbar-nav .nav-link {
    transition: 0.5s;
}
.navbar-nav .nav-link:hover {
    transform: translateY(4px);
    color: white;
}
/* End Navbar  */

/* Start Main */
h1 {
    width: fit-content;
    margin: auto;
    font-size: 60px;
    font-weight: 800;
    margin-top: 100px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #4CB332FF 0%, #00A8A0FF 100%);
    background-clip: text;
    color: transparent;
}
.fa-envelope {
    position: relative; 
    left: -7px; 
    color: var(--green);
}
h1 + p {
    font-size: 18px;
    font-weight: 400;
    color: #565D6DFF;
    width: 768px;
    margin: auto;
    text-align: center;
}
.contact-form {
    max-width: 672px;
    height: 672px;
    padding: 60px;
    margin: 50px auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #171a1f12, 0px 0px 2px #171a1f1F;
}
h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}
label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px
}
input {
    width: 560px;
    height: 53px;
    border-radius: 10px;
    border: 1px solid #DEE1E6FF;
    padding: 14px;
    margin-bottom: 40px;
    outline: none;
}
textarea {
    width: 560px;
    height: 118px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #DEE1E6FF;
    outline: none;
}
/* End Main */

/* component */
.contact-btn {
    background: linear-gradient(90deg, #4CB332FF 0%, #00A8A0FF 100%);
    color: white ;
    font-size: 18px;
    width: 560px;
    height: 40px;
    border-radius: 16px;
    margin-top: 30px;
    transition: 0.3s;
}
.contact-btn:hover {
    background: linear-gradient(90deg, #4CB332FF 70%, #00A8A0FF 100%);
    color: white;
    transform: scale(1.02);
}
.contact-btn:active {
    background: linear-gradient(90deg, #4CB332FF);
    color: white;
}


 /* Start Footer */
footer {
    color: white ;
    padding: 15px 20px;  
    text-align: center;
    background: linear-gradient(128.64deg, #4CB332FF 0%, rgb(27, 183, 105) 100%);
   
}

footer .footer-col {
    margin: 10px 0;   
}

footer h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #222;
}

.footer-bottom {
    margin-top: 10px; 
    padding-top: 5px;
}
/* End Footer */
