
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

@font-face {
    font-family: Prompt;
    src: url(converted-fonts/Prompt-SemiBold.woff);
}


body {
    font-family: Prompt;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4)),
    url(IMG/Green\ Minimalist\ Background\ Business\ Presentation\ \(1\).png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
html,body{
    height: 100vh;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    background: linear-gradient(to right,#d2f3c2, #ffffff);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.Heromenu{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}
.Heromenu p{
    margin-left: 1rem;
    color: rgba(142, 142, 142, 0.9);
}
.logo{
    display: flex;
}
.logo h2{
    display: flex;
    align-items: center;
    margin-left: 1rem;
}
.logo img {
    margin-left: 1rem;
    display: flex;
    width: 80px;
    height: auto;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    z-index: 999;
}

.nav-links li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: ease-out color 0.3s;
}

.nav-links li a:hover {
    color: #00ff37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #03ce21;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.toggle div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle div:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1200px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: -220px; 
        background: #a5fcc0;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 8px 0 0 8px;
        box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        display: flex;
    }

    .nav-links.active {
        right: 0; 
    }

    .hamburger {
        display: flex;
    }
    .logo img {
        width: 120px;
    }
}

.item {
    display: flex;
    justify-content: center;
    margin-top: 10%;
}

.t {
    display: flex;
    flex-direction: column;
    border: 2px solid  rgba(255,255,255);
    border-radius: 30px;
    backdrop-filter: blur(50px);
    padding: 50px;
    gap: 20px;
    align-items: center;
}

.t a {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem;
    border: 2px solid #14ab00;
    border-radius: 8px;
    transition: all 0.5s ease;
    display: inline-block;
}

.t a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background-color: #14ab00;
    color: #ececec;
}   

footer{
      padding:16px;
      background:#edfbf3;
      text-align:center;
      font-size:14px;
      color:#6b7280;
    }
main{
    flex: 1;
}
@media screen and (max-width:1200px) {
    .t{
        margin-top: 25%;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (max-width: 1200px){
    .Heromenu h2{
    font-size: 20px;
    align-items: center;
    line-height: 1.5rem;
    }
    .Heromenu p{
    font-size: 10px;
    align-items: center;
    }
    
}