@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}

a {
    text-decoration: none;
    color: white;
    font-size: 15px;
}

ul {
    list-style: none;
}

header {
    background-color: black;
    width: 100%;
    position: fixed;
    z-index: 5;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.logo {
    font-size: 24px;
    color: rgb(177, 165, 142);
    font-weight: 900;
}

.logo span{
    color: green;
}

.nav_links {
    display: flex;
    gap: 50px;
}

.nav_links a {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.nav_links a:hover {
    color: rgb(25, 122, 41);
    transform: translateY(-5px);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}



.login {
    padding: 10px 22px;      
    border-radius: 8px;       
    background-color: rgb(29, 77, 33);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.login:hover {
    background-color: rgb(39, 88, 43);
    transform: translateY(-1px);
}

.login_container {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-right: 30px;
}

.sign_up {
    font-size: 12px;
    color: rgb(160, 160, 160);
    margin-top: 4px;
    transition: color 0.3s ease;
}

.sign_up:hover {
    color: rgb(25, 122, 41);
}

.notification{
    position: fixed;
    z-index: 10;
    border-radius: 8px;
    background-color: #ffffff;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    width: 320px;
    display: none;
    flex-direction: column;
}

.notification h1{
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.cancel{
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.cancel:hover{
    color: green;
}

.project{
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    border: 2px solid black;
    cursor:pointer;
}

.project:hover{
    background-color: #bbbaba;
}


.menu {
    display: none;
    cursor: pointer;
}

.menu span {
    font-size: 32px;
    color: white;
}

.hero_section {
    background-color: black;
    min-height: 100vh;
    padding-top: 100px;
}

.hero_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height:70vh;
    padding: 0 40px;
}

.hero_content {
    max-width: 600px;
}

.hero_content h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.hero_content p {
    color: rgb(200, 200, 200);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn_primary {
    padding: 14px 10px;
    background-color: rgb(29, 77, 33);
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn_primary:hover {
    background-color: rgb(39, 88, 43);
}

.hero_image img {
    width: 350px;
    max-width: 100%;
}

.mobile_menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: black;
    border-top: 1px solid rgb(50, 50, 50);
}

.mobile_menu a {
    font-size: 17px;
}

.mobile_menu a:hover{
    color: rgb(25, 122, 41);
}


.mobile_menu.show {
    display: flex;
}

.learn {
    min-height: 100vh;
    background-color: black;
}

.section_title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-size: 20px;
}

.content_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    color: white;
    flex-wrap: wrap;
}

.div_content {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.image_container img {
    width: 120px;     
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.div_content h1 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 10px;
}


.contact{
    min-height: 100vh;
    background-color: black;
    color: white;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
}

.form_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border: 2px solid rgb(48, 48, 48);
    padding: 40px;
    border-radius: 15px;
}

.left{
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
    
}

.left h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: rgb(25, 122, 41);
    margin-top: 20px;
    text-align: center;
}

.contact_text {
    font-size: 15px;
    color: rgb(200, 200, 200);
    line-height: 1.5;
    text-align:justify;
}

.right {
    flex: 1;
    min-width: 280px;
}

.input_container {
    position: relative;
    margin-bottom: 25px;
}

.input_container input,
.input_container textarea {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 2px solid rgb(60, 60, 60);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: border-color .3s;
}

.input_container textarea {
    min-height: 130px;
    resize: none;
}

.input_container label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgb(140, 140, 140);
    pointer-events: none;
    transition: .3s ease;
}

.input_container input:focus + label,
.input_container input:not(:placeholder-shown) + label,
.input_container textarea:focus + label,
.input_container textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: rgb(25, 122, 41);
    background-color: black;
    padding: 0 4px;
}

.input_container input:focus,
.input_container textarea:focus {
    border-color: rgb(25, 122, 41);
}

.btn {
    width: 100%;
    padding: 14px 0;
    background-color: rgb(29, 77, 33);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease;
}

.btn:hover {
    background-color: rgb(39, 88, 43);
}



.form_container{
    margin: 0 40px;
}



.footer {
    background-color: rgb(20, 20, 20);
    color: rgb(200, 200, 200);
    padding: 60px 40px 20px;
    width: 100%;
}


.footer_inner_container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}



.footer_container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    flex-direction: column;
    
}

.footer_top h2 {
    font-size: 24px;
    color: rgb(177, 165, 142);
    margin-bottom: 10px;
}

.footer_top span {
    color: rgb(25, 122, 41);
}

.footer_top p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}


.footer_links h3,
.footer_contact h3 {
    font-size: 16px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    text-align: left;
    margin-top: 20px;
}

.footer_links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_links a {
    font-size: 14px;
    color: rgb(180, 180, 180);
    transition: color .3s ease, transform .3s ease;
}

.footer_links a:hover {
    color: rgb(25, 122, 41);
    transform: translateX(4px);
}

.footer_contact a {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgb(180, 180, 180);
}

.footer_social h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 20px;
}

.footer_social a {
    margin-right: 10px;
    font-size: 22px;
    color: rgb(180, 180, 180);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer_social a:hover {
    color: rgb(25, 122, 41);
    transform: translateY(-3px);
}


.footer_bottom {
    border-top: 1px solid rgb(50, 50, 50);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer_bottom p {
    font-size: 13px;
    color: rgb(140, 140, 140);
}


.div_content p{
    text-align: justify;
    margin: 10px 60px;
    border: 1px solid rgb(75, 70, 70);
    border-radius: 15px;
    padding: 10px;
    line-height: 2;
}

.div_content p:hover{
    cursor: pointer;
    background-color: rgb(29, 29, 29);
}



@media (max-width: 900px) {
    .navigation{
        justify-content: center;
    }

    .menu {
        display: block;
        position: absolute;
        right: 24px;
    }

    .nav_links,
    .login_container {
        display: none;
    }

    .hero_section {
        padding-top: 140px;
    }

    .hero_container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    .hero_image {
        display: none;
    }

    .footer{
        display: flex;
        flex-direction: column;
    }

    .contact{
        padding-bottom: 20px;
    }

    .form_container{
        margin: 0;
    }
    
    .footer_container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer_top p {
        max-width: 100%;
    }

    .footer_links ul {
        align-items: center;
    }
    .footer_inner_container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    }
    .footer_links h3,
    .footer_contact h3 {
    font-size: 16px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    text-align: center;
    margin-top: 20px;
}
}


