*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: poppins,sans-serif;
    text-decoration: none;
}
body {
  background-image: url("pictures/Gaming background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #0b0b0b;
}
.hero-header{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding-top:120px;
    background: transparent;
}
.wrapper{
    width: 100%;
    height: 95%;
    margin: 0 auto;
    padding: 0 20px;
}
header{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 20px;

    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);

    border-bottom:2px solid red;
    box-shadow:
        0 0 10px red,
        0 0 25px rgba(255,0,0,0.5);

    z-index:1000;
    
}
header::after{

    content:"";

    position:absolute;

    bottom:0;

    left:10%;

    width:80%;

    height:2px;

    background:red;

    box-shadow:
    0 0 10px red,
    0 0 25px red;

}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}
.logo i{
     height:45px;
    width:45px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid red;
    box-shadow:
    0 0 10px red,
    0 0 20px rgba(255,0,0,0.6);
    cursor:pointer;
    background-color: rgb(255, 0, 0);
    border-radius: 100%;
    border-style: solid ;
    border-color: black;
    color: rgb(54, 1, 1);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    text-align: center;
}
.logo img{
    width:45px;
    height:45px;

    object-fit:cover;

    border-radius:50%;

    border:2px solid red;

    box-shadow:
    0 0 10px red,
    0 0 20px rgba(255,0,0,0.6);

    display:block;
}
.logo .logo-text{
  
    font-size:24px;
    font-weight:700;
    color:red;
    background:
    linear-gradient(
        135deg,
        #050505,
        #1a0000
    );
    padding:8px 18px;
    border:2px solid red;
    border-radius:5px;
    letter-spacing:2px;
    text-transform:uppercase;
    position:relative;
    box-shadow:
        0 0 10px red,
        inset 0 0 10px rgba(255,0,0,0.4);
    text-shadow:
        0 0 8px red;
    clip-path:polygon(
        8px 0,
        100% 0,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        0 100%,
        0 8px
    );
}
.logo .logo-text::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,0,0,0.5),
        transparent
    );
    animation:logoScan 3s infinite;
}

@keyframes logoScan{

    0%{
        left:-100%;
    }

    50%{
        left:100%;
    }

    100%{
        left:100%;
    }

}
nav{
    display:flex;
    align-items:center;
}
.togglebtn{
    width:35px;
    height:35px;
    cursor:pointer;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
}

.togglebtn span{
    width:100%;
    height:3px;
    background:red;
    border-radius:5px;
    transition:0.3s;
}
.navlinks{
    display:flex;
    gap:18px;
    list-style:none;
}
.navlinks li{
    display:block;
}
.navlinks li a{
    color:red;
    padding:10px 22px;
    background:
    linear-gradient(
        135deg,
        #050505,
        #1a0000
    );
    border:2px solid red;
    border-radius:5px;
    letter-spacing:1.5px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    overflow:hidden;
    box-shadow:
        0 0 10px rgba(255,0,0,0.5),
        inset 0 0 8px rgba(255,0,0,0.3);
    transition:0.3s ease;
}
.navlinks li a::before{
    content:"";
    position:absolute;
    top:0;
    left: -20%;
    width:100%;
    height:100%;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );

    transition:0.5s;
}
.navlinks li a:hover{
    color:black;
    background:red;
    box-shadow:
        0 0 15px red,
        0 0 35px red;
}
.navlinks li a:hover::before{
    
    left:100%;
    pointer-events:none;

}
.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    padding:80px 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}
.container .hero-pic{
    width:450px;
    height:500px;
    border-radius:20px;
    overflow:hidden;
    border:3px solid red;
    background:#050505;
    box-shadow:0 0 15px red,0 0 35px rgba(255,0,0,0.6);
    position:relative;
    margin:auto;
}
.hero-pic::before{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid rgba(255,0,0,0.5);
    clip-path:polygon(
        0 0,
        30% 0,
        0 30%
    );
}
.hero-pic img{
    height:100%;
    width:100%;
    object-fit:cover;
    transition:0.5s;
}
.hero-pic img:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px red,
    0 0 60px rgba(255,0,0,0.8);
}
.hero-text{
    max-width:600px;
}
.hero-text h5{
    color: #b30000;
    font-size: 20px;
}
.hero-text span{
    font-size:45px;
     color:red;
}
.hero-text h1{
    font-size:65px;
    margin-bottom:20px;
    color:red;
}
.hero-text p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:30px;
    color: #b30000;
}
.social{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:25px;
    margin-top:30px;
}
.social a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(
        145deg,
        #050505,
        #220000
    );
    border:2px solid red;
    border-radius:10px;
    box-shadow:
        0 0 10px rgba(255,0,0,0.5),

        inset 0 0 10px rgba(255,0,0,0.3);

    transition:0.3s ease;
}
.social a:hover{
    background:red;
    transform:translateY(-5px);
    box-shadow:
        0 0 20px red,
        0 0 40px rgba(255,0,0,0.8);
}
.social i{
    color:red;
    font-size:30px;
    transition:0.3s;
}
.social a:hover i{
    color:black;
    transform:scale(1.2);
}
.section-container{
    max-width:1100px;
    margin:auto;

}
.sub-title{
    font-size:60px;
    color:red;
    margin-bottom:25px;
}
.section-container p{
    font-size:24px;
    line-height:1.8;
    color:#b30000;
}
section{
    padding:120px 60px;
}
.projects-grid{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.gallery-container {
   max-width:1100px;
    margin:auto;

}
.gallery-container p{
    font-size:24px;
    line-height:1.8;
    color:#b30000;
    margin-bottom:25px;
}
.card {
   width:300px;
    background:
    linear-gradient(
        145deg,
        #160000,
        #8a0101
    );

    border:2px solid red;
    border-radius:15px;
    overflow:hidden;
    padding:20px;
    text-align:center;
    position:relative;
    box-shadow:
        0 0 15px rgba(255,0,0,0.4);
    transition:0.4s;

}
.card img{
    width: 100%;
    height: 160px;
    object-fit: cover;

    display: block;
    margin: 10px auto;

    border-radius: 10px;

    transition: transform 0.4s ease;
}
.card:hover {
    transform: translateY(-8px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    background: #a30000;

}
.card:hover img{
    transform: scale(1.05);
}
.card h3{
    color: black;
    font-size:22px;
    letter-spacing:2px;
    text-shadow:
    0 0 10px red;
}
.card p{
    color: black;
    font-size:19px;
    letter-spacing:1px;
    text-shadow:
    0 0 10px red;
}
.card a{
    text-decoration:none;

    color:#000;
}
@media (max-width:768px){

    header{
        padding:0 20px;
    }
    .togglebtn{
        display:flex;
    }
    nav{
        position:relative;
    }
    .navlinks{
        position:absolute;
        top:45px;
        right:0;

        width:200px;

        background:black;

        display:none;
        flex-direction:column;

        text-align:center;

        border-radius:10px;
        padding:10px 0;

        border:2px solid red;
    }
    .navlinks li{
        width:100%;
    }
    .navlinks li a{
        display:block;
        padding: 10px;

        color:red;

        border:none;
        border-radius:0;
    }
    .navlinks.open{
        display:flex;
    }
    .container .hero-pic{
        width:300px;
        height:350px;
    }
}
form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form textarea{
    width: 100%;
    padding: 15px;
    font-size: 16px;
    color: #fff;
    background: #1a1a1a;
    border: 2px solid #550000;
    border-radius: 10px;
    outline: none;
    transition: .3s;
    resize: none;
}

form input:focus,
form textarea:focus{
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255,0,0,.5);
}

.btn-submit{
    width: 180px;
    margin: 20px auto 0;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    background: #b30000;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
}

.btn-submit:hover{
    background: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255,0,0,.7);
}