*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:linear-gradient(135deg,#0e4f69,#163347);
    color:white;
    min-height:100vh;
}

.up-position{
    position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 5%;
    background:rgba(22,51,71,0.95);
    backdrop-filter:blur(8px);
    box-shadow:0 4px 20px rgba(0,0,0,0.2);
}

.Port{
    color:chocolate;
    font-size:1.5rem;
    font-weight:bold;
    text-shadow:1px 1px 13px rgb(243, 105, 7);
}

.folio{
    font-size:1rem;
    font-weight:normal;
}

.button-div{
    display:flex;
    gap:12px;
}

.button,.menu-toggle,.Get-button-dev,.Get-in-Touch{
    transition:0.3s ease;
}

.button{
    background:transparent;
    color:chocolate;
    border:none;
    font-weight:bold;
    cursor:pointer;
    font-size:1rem;
}

.button:hover,.button.active{
    color:#ffb067;
    transform:translateY(-2px);
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:1.8rem;
    cursor:pointer;
}

.hero-section{
    padding:60px 5% 20px;
}

.Our-Projects{
    font-size:2.5rem;
    font-weight:bold;
    margin-bottom:10px;
}

.hero-description{
    max-width:700px;
    color:#d7e4ec;
    line-height:1.6;
}

.main-div-of-three-divs-dev{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    padding:20px 5% 60px;
}

.project-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    overflow:hidden;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.project-card:hover{
    box-shadow:0 10px 35px rgba(0,0,0,0.25);
}

.project-image{
    width:100%;
    height:220px;
    object-fit:cover;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:8px;
    padding:10px;
}

.small-img{
    height:106px;
    border-radius:12px;
}

.title-para{
    font-size:1.3rem;
    font-weight:bold;
    padding:18px 24px 8px;
}

.project-description{
    color:#d0d7dd;
    line-height:1.6;
    padding:0 24px 20px;
}

.Get-button-dev,.Get-in-Touch{
    margin:0 24px 24px;
    padding:12px 22px;
    border:none;
    border-radius:10px;
    background:#e17e37;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.Get-button-dev:hover,.Get-in-Touch:hover{
    box-shadow:0 0 20px rgba(243,105,7,0.6);
    transform:scale(1.04);
}

.two-para-and-button{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin:0 5% 60px;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
}

.Ready-to-para{
    font-size:1.6rem;
    font-weight:bold;
    margin-bottom:8px;
}

.down-para-of-Ready{
    color:#d0d7dd;
    max-width:700px;
    line-height:1.6;
}

@media (max-width:768px){
    .menu-toggle{
        display:block;
    }

    .button-div{
        display:none;
        position:absolute;
        top:80px;
        right:5%;
        flex-direction:column;
        background:#163347;
        padding:15px;
        border-radius:12px;
        width:180px;
    }

    .button-div.show-nav{
        display:flex;
    }

    .Our-Projects{
        font-size:2rem;
    }

    .two-para-and-button{
        flex-direction:column;
        text-align:center;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .small-img,.project-image{
        height:auto;
    }
}
