.skills-main{
    padding: 0px 15px;
}

.skills-section{
    padding:80px 8%;
    position:relative;
    overflow:hidden;
	width: 100%;
    max-width: 1820px;
	background-image: url('../images/section-bg-shape.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
    border-radius: 20px;
    margin: 0 auto;
}



.skills-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#ff0000;
    filter:blur(180px);
    opacity:.15;
    top:-100px;
    left:-100px;

}


/* Heading */

.heading{

    text-align:center;
    position:relative;
    z-index:2;

}


.heading h1{
    font-size: 40px;
    font-weight: 600;

}


.heading h1 span{

    color:#fb3602;

}


.heading p{

    color:#aaa;
    margin-top:20px;
    font-size:18px;

}



/* Tabs */


.tabs{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:60px 0;

}


.tab-btn{

    padding:15px 35px;
    background:#111;
    border:1px solid #333;
    color:white;
    border-radius:50px;
    cursor:pointer;
    transition:.4s;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;

}


.tab-btn:hover,
.tab-btn.active{

    background:#fb3602;
    border-color:#fb3602;
    box-shadow:0 0 30px #fb3602;

}



/* Projects Grid */


.projects{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



/* Card */


.card{

    height:600px;
    border-radius:25px;
    overflow:hidden;
    border:1px solid #222;
    position:relative;
    background:#111;

    animation:show .5s ease;

    transition:.5s;

}



.card:hover{

    transform:translateY(-15px);
    border-color:#fb3602;
    box-shadow:0 20px 50px rgba(255,0,0,.3);

}




.card-image{

    width:100%;
    height:100%;
    position:relative;

}



.card-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;

}



.card:hover img{

    transform:scale(1.08);

}




/* Overlay */


.card-overlay{

    position:absolute;
    inset:0;

    padding:35px 25px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;


    background:linear-gradient(
        transparent,
        rgba(0,0,0,.95)
    );

}



.card-overlay h3{

    font-size:25px;
    margin-bottom:12px;

}



.card-overlay p{

    color:#ddd;
    line-height:1.6;
    min-height:70px;
    margin-bottom:18px;

}



/* Tags */


.tags{

    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:20px;

}


.tags span{

    background:#fb3602;
    padding:7px 14px;
    border-radius:20px;
    font-size:12px;
    color: white;

}



/* Buttons */


.actions{

    display:flex;
    gap:12px;

}



.actions a{

    flex:1;
    text-align:center;

    padding:12px;

    border-radius:30px;

    border:1px solid #fb3602;

    color:white;

    text-decoration:none;

    transition:.3s;

}



.actions a:hover{

    background:#fb3602;

}



/* Animation */


@keyframes show{

    from{

        opacity:0;
        transform:translateY(40px);

    }


    to{

        opacity:1;
        transform:translateY(0);

    }

}


@media(max-width:1290px){

.skills-section{
    padding: 20px 3%;
}

}


/* Responsive */


@media(max-width:1000px){

.projects{

    grid-template-columns:repeat(2,1fr);

}
.skills-section{
    padding: 20px 3%;
}

}



@media(max-width:700px){

.projects{

    grid-template-columns:1fr;

}


.heading h1{

    font-size:40px;

}


}
