*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    line-height:1.6;
    font-size:14px;
    position:relative;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("../assets/images/background.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    filter:blur(2px);
    transform:scale(1.1);
    z-index:-2;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

section{
    padding:90px 20px;
}

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(25,25,25,.35);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.3);
}

.navbar{
    max-width:1200px;
    margin:auto;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding:0 18px;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:1.5rem;
    width:auto;
    height:auto;
    padding:0;
    cursor:pointer;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    font-size:16px;
    font-weight:600;
    position:relative;
    padding:4px 0;
    color:#fff;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:1.5px;
    background:#fff;
    transition:.25s;
}

.nav-links a:hover::after{
    width:100%;
}

.section-header{
    text-align:center;
    margin-bottom:20px;
}

.section-header h2{
    font-size:1.6rem;
    font-weight:600;
    margin-bottom:8px;
    color:#fff;
}

.section-header p{
    font-size:.9rem;
    max-width:600px;
    margin:auto;
    color:#fff;
}

.projects-grid{
    max-width:650px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.project-card{
    background:transparent;
    backdrop-filter:blur(15px);
    border-radius:0;
    overflow:hidden;
    cursor:pointer;
    transition:.3s ease;
    transform:rotate(-1.5deg);
}

.project-card:nth-child(even){
    transform:rotate(1.5deg);
}

.project-card:hover{
    transform:rotate(0deg) translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}

.project-icon img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.project-text{
    padding:12px;
    text-align:center;
    color:#ffffff;
}

.project-text h3{
    font-size:1rem;
    margin:0;
    font-weight: 200;
}

.recommendations{
    padding:25px 20px;
}

.story-container{
    max-width:700px;
    margin:auto;
    padding:20px;
    position:relative;
}

.story-images{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:20px;
}

.story-btn{
    width:70px;
    height:70px;
    padding:3px;
    border-radius:50%;
    border:0;
    background:transparent;
    cursor:pointer;
    transition:.3s;
}

.story-btn img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.story-btn.active{
    background:#facc15;
    transform:scale(1.15);
    padding: 2px;
}

.story-content{
    position:relative;
    text-align:center;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    padding:20px;
    border-radius:0;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    max-width:700px;
    margin:auto;
}

.story-content::before{
    content:"";
    position:absolute;
    top:-16px;
    left:var(--speaker-position,50%);
    transform:translateX(-50%);
    border-left:16px solid transparent;
    border-right:16px solid transparent;
    border-bottom:18px solid rgba(255,255,255,.88);
    transition:.3s;
}

.story-content h3{
    font-size:16px;
    margin:0 0 3px;
}

.story-content h3 a{
    color:#111;
    text-decoration:none;
}

.story-content span{
    color:#666;
    font-size:11px;
}

.story-content p{
    margin-top:10px;
    color:#444;
    font-size:13px;
    line-height:1.6;
    text-align:left;
}

.phone-book{
    padding:25px 20px;
}

.reference-list{
    max-width:700px;
    margin:auto;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(18px);
    overflow:hidden;
}

.reference-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 20px;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.reference-row:last-child{
    border:0;
}

.reference-row strong{
    display:block;
    font-size:14px;
}

.reference-row span{
    display:block;
    color:#666;
    font-size:11px;
}

.reference-row a{
    color:#2563eb;
    font-size:12px;
    font-weight:500;
}

.reference-row:hover{
    background:rgba(37,99,235,.06);
}

.linkedin-icon{
    position:absolute;
    top:12px;
    right:12px;
    width:32px;
    height:32px;
    padding:4px;
    background:white;
    border-radius:6px;
    box-shadow:0 3px 8px rgba(0,0,0,.15);
}

section{
    padding:20px;
}

.references-section{
    padding-top:20px;
    padding-bottom:20px;
}

.phone-book{
    padding-top:20px;
    padding-bottom:20px;
}

header + section{
    padding-top:20px;
}

.section-header{
    margin-bottom:20px;
}

.section-header p{
    position:relative;
    display:inline-block;
    padding-bottom:8px;
}

.section-header p::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    width:50%;
    height:2px;
    background:#fff;
    transform:translateX(-50%);
}

footer{
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    border-top:1px solid rgba(255,255,255,.2);

    color:#fff;
    font-size:13px;

    background:rgba(20,20,20,.35);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:1.5rem;
    width:auto;
    height:auto;
    padding:0;
    cursor:pointer;
}

@media(max-width:768px){

    body::before{
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("../assets/images/background1.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.navbar{
    justify-content:flex-end;
    position:relative;
    height: 50px;
}

.menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-links{

    display:none;

    position:absolute;

    top:55px;
    right:15px;

    flex-direction:column;

    gap:16px;

    padding:22px 25px;

    background:rgba(25,25,25,.85);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:12px;

    width:200px;

    box-shadow:0 10px 30px rgba(0,0,0,.4);
}


.nav-links a{

    font-size:15px;

    padding:8px 0;

}

.nav-links.active{
    display:flex;
}

.section-header h2{
    font-size:1.35rem;
}

.section-header p{
    font-size:.85rem;
}

.projects-grid{
    max-width:500px;
    gap:12px;
}

.project-icon img{
    height:140px;
}

.project-text{
    padding:10px;
    background:rgba(0,0,0,.35);
}

.project-text h3{
    font-size:.9rem;
}

.story-container{
    max-width:500px;
    padding:15px;
}

.story-images{
    gap:15px;
    margin-bottom:15px;
}

.story-btn{
    width:55px;
    height:55px;
}

.story-content{
    padding:15px;
}

.story-content h3{
    font-size:14px;
}

.story-content p{
    font-size:13px;
    text-align:left;
    line-height:1.55;
    max-width:620px;
    margin:10px auto 0;
}

.phone-book{
    padding:15px;
}

.reference-list{
    max-width:500px;
}

.reference-row{
    padding:10px 15px;
}

.reference-row strong{
    font-size:13px;
}

.reference-row span{
    font-size:10px;
}

.reference-row a{
    font-size:11px;
}

.linkedin-icon{
    width:28px;
    height:28px;
}

footer{
    height:35px;
    font-size:12px;
}

}