*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: poppins;
}
/* .container{
        width:100%;
        height: 100vh;
        background:linear-gradient(90deg,rgb(46, 9, 231),rgb(228, 203, 9),rgb(220, 10, 10));
} */

    .container {
        position: relative;
        width: 100%;
        height: 100vh;
        background: linear-gradient(45deg, #070707, rgb(92, 93, 84), #e90606);
        background-size: 300% 300%;
        animation: moveGradient 8s infinite linear;
    }
    
    @keyframes moveGradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    

.parent{
        width: 80%;
        height: 90%;
        position:absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: #363737;
        box-shadow: 5px 5px 20px black;
        color: #ffffff;
        overflow: hidden;
}

.parent nav{
        display:flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 50px;
        height: 15%;
        /* background-color: plum; */
}

nav h1{
        font-size: 35px;
        font-weight: 600;
        margin-left: 40px;
        color: #e85e0f;
        position: relative;
}

nav h1::before{
        content: '';
        width:20px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: -40px;
        transform: translateY(-50%);
       
}

nav ul{
        display: flex;

}

nav ul li{
        list-style-type: none;
}

ul li a{
        text-decoration: none;
        padding: 5px 20px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        color: white;
        transition: 0.5s ease;
}

ul li a:hover{
        text-decoration: underline;
        color: rgba(25, 5, 244, 0.464);
        
}

ul li #sub{
        text-decoration: none;
        color: white;
        background-image: linear-gradient(90deg,#c04848,#480048,#c04848);
        margin: 10px;
        padding: 10px 30px;
        text-align: center;
        transition: 0.5s;
        background-size: 200% auto;
        border-radius: 20px;
}

ul li #sub:hover{
        background-position: right center;
}

.parent .main_content{
        display: flex;
        height: 85%;

}

.main_content .left{
        width: 50%;
        height: 100%;
        padding: 40px 80px;
        font-style:oblique;
}

.left h3{
        font-weight: 600;
        font-size: 25px;
        text-transform: uppercase;
        margin-top: 40px;
}

.left h1{
        font-size: 55px;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 60px;
        text-transform: uppercase;
}

.left h1 span{
        color: rgb(244, 5, 5);
}

.left p{
        font-size: 12px;
        font-weight: 400;

}

.left h2{
        text-decoration: underline;
        margin: 10px 0;
        font-weight: 500;
}

.left button{
        padding: 7px 15px;
        border-radius: 5px;
        font-size: 12px;
        border:none;
        outline:none;
        letter-spacing: 1px;
        margin-top: 40px;
        background-color: #e0137a;
        color: white;
        cursor: pointer;
        transition: 0.5s ease;
}

.left button:hover{
        background-color: rgb(42,0,93);
        box-shadow: 0 0 10px white;
}

.main_content .right{
        width: 60%;
        height: 100%;
        padding-left: 100px;
        overflow: hidden;
}

.right img{
        width: 380px;
        transform: translateY(-10px);
        filter: saturate(120%);
}

.gradient{
        width: 350px;
        height: 350px;
        position: absolute;
        top: 14%;
        left: 58%;;
        border-radius: 50%;
        background-color: rgb(200, 62, 20);
        z-index: -1;
        filter: blur(50px);
        box-shadow: 
        0 0 250px rgb(240, 237, 237),0 0 200px purple,0 0 150px rgb(204,0,255);
}

#particles-js {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    .images-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: px;
    }
 /* Popup Styling */
 .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        justify-content: center;
        align-items: center;
    }

    .popup-content {
        background: white;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .popup-btn {
        display: inline-block;
        padding: 10px 20px;
        background: #1877F2;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 10px;
    }

    .close-btn {
        margin-top: 10px;
        background: red;
        color: white;
        padding: 5px 10px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }

