@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#09090B;
    color:white;
    line-height:1.6;
}

/* HEADER */

header{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(20px);
    background:rgba(9,9,11,.85);
    border-bottom:1px solid rgb(70, 255, 14);
}

.Header{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    padding:22px;
}

.Header_Icon{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    background:#1f1f25;
}

.header-title{
    font-size:34px;
    font-weight:800;
}

/* HERO */

.hero{
    background-image:url("images/hero-bg.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    width: 100%;
    min-height: 90vh;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 40px;
}

.hero-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-title{
    text-align: center;
    font-size:68px;
    font-weight:900;
    line-height:1.1;
    max-width:950px;
    margin-bottom:50px;
    border-radius:12px;
    -webkit-text-stroke:2px #020103;
    font-family:cursive;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
    background:#63ebd4;
    padding:20px;
}

.main-button{
    display:inline-block;
    text-decoration:none;
    color:white;
    background:#1100ff;
    padding:10px 18px;
    transition:.25s;
    font-weight:600;
}

.main-button:hover{
    transform:translateY(-4px);
    background:#6366F1;
}

/* ALL SECTIONS */
.about-me,
.pricing,
.whyhireme,
.services,
.projects,
.policy,
.moreinfo,
.contact-me{
    margin:auto;
    padding:10px;
}

.background-image-container.aboutmebg{
    background-image:url("images/stud.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    padding: 50px;
}

.background-image-container.pricingbg{
    background-image:url("images/stud.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    padding: 50px;
}

.background-image-container.whyhiremebg{
    background-image:url("images/stud.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    padding: 50px;
}

.background-image-container.servicesbg{
    background-image:url("images/stud.png");
    background-repeat:repeat;
    background-size:cover;
    background-position:center center;
    padding: 50px;
}

.background-image-container.projectbg{
    background-image:url("images/stud.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    padding: 50px;
}

.background-image-container.policybg{
    background-image:url("images/stud.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
}

.title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    margin-bottom:35px;
}

.description{
    display: block;
    text-decoration: none;
    font-size:22px;
    font-weight:400;
    color:hsl(0, 0%, 100%);
    max-width:900px;
    background-color: #092c26;
    list-style-position: inside;
    padding: 20px;
    transition:.25s;
    overflow: hidden;
    border:1px solid rgba(255,255,255,.08);
}

.description:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

/* PROJECT */

.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:30px;
}

.project-tile{
    background-image:url("images/tile-background.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;

    display: flex;
    flex-direction: column;
    width:320px;
    max-width:100%;
    margin-top:0px;
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
    transition:.25s;
}

.project-tile:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

.project-tile iframe{
    width:100%;
    height:180px;
    display:block;
    border:none;
}

.project-title{
    background: #000000;
    font-size:34px;
    margin:30px;
}

.project-tags{
    background: #000000;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:0 30px;
}

.project-tag{
    background:#262633;
    color:#C9D1D9;
    padding:8px 16px;
    font-size:14px;
    font-weight:600;
}

.project-description{
    background: #000000;
    flex:1;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    overflow:hidden;
    line-height:1.5;
    margin:30px;
    color:#A4A4AF;
    font-size:18px;
}

.project-link{
    margin:30px;
    margin-top: auto;
}

.project-link-button{
    display:inline-block;
    text-decoration:none;
    background:#4F46E5;
    color:white;
    padding:14px 28px;
    font-weight:600;
    transition:.25s;
}

.project-link-button:hover{
    background:#6366F1;
    transform:translateY(-3px);
}

/* CONTACT */

.contact-me{
    max-width:1200px;
    margin:auto;
    padding:120px 25px;
    text-align:center;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.contact_button_link{
    text-decoration:none;
    color:white;
    background:#1E1E26;
    padding:18px 35px;
    font-weight:700;
    transition:.25s;
}

.contact_button_link:hover{
    transform:translateY(-5px);
    background:#4F46E5;
}

.footer{
    text-align:center;
    padding:20px;
    background:#0D0D11;
    color:#A4A4AF;
    font-size:14px;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0D0D11;
}

::-webkit-scrollbar-thumb{
    background:#4F46E5;
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:#6366F1;
}

/* MOBILE */

@media(max-width:900px){

    .header-title{
        font-size:24px;
        text-align:center;
    }

    .hero-title{
        font-size:42px;
    }

    .project-tile iframe{
        height:300px;
    }

    .title{
        font-size:32px;
    }

    .description{
        font-size:18px;
    }

}