@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:wght@600&family=Jaini&display=swap" rel="stylesheet');

* {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       /* font-family: "IBM Plex Sans Condensed", sans-serif; */
       font-family: "IBM Plex Sans Condensed", sans-serif;
    }

   body {
       /* overflow: hidden; */
       
   }
   .background-video {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       object-fit: cover;
       z-index: -1;
   }
   .header {
       text-align: center;
       font-size: 36px;
       font-weight: bold;
       padding: 20px;
       margin: 24px;
       color: white;
       backdrop-filter: blur(50px);
border-radius: 22px;
text-align: center;
align-items: center;


   }
   .hero {
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       height: 80vh;
       color: white;
   }
   .hero img {
       height: 200px;
       width: 200px;
       padding: 7px;
       border: 2px solid green;
       border-radius: 50%;
       object-fit: cover;
       border: 4px solid rgba(255, 255, 255, 0.5);
   }
   .hero .text-box {
       margin-top: 20px;
       padding: 20px;
       background: rgba(255, 255, 255, 0.1);
       backdrop-filter: blur(30px);
       border-radius: 10px;
       text-align: center;
       font-size: 18px;
       color: rgb(252, 251, 243);
       width: 300px;
   }

   /* 2nd screen  */
   body {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* height: 100vh; */
    /* background: url('background.jpg') no-repeat center center/cover; */
}
.box {
    position: relative;
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism Effect */
    backdrop-filter: blur(15px);
    padding: 30px;
    /* width: 400px; */
width: auto;
/* margin-left: 200px; */
/* margin-right: 200px; */
margin: 21px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}



.icons {
    position: absolute;
    width: 30px;
    /* top: 7%; */
    /* max-resolution: 11px; */
    /* padding: 11px; */
    transform: translateY(-50%);
    animation: float 2s infinite alternate;
}
.icons-left {
/* align-items: left; */
/* text-align: left; */

}
.icons-right {
    /* align-items: right; */
    /* text-align: right; */
    animation: float 2s infinite alternate-reverse;
}



@keyframes float {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(10px); }
}



.box h2 {
    margin-bottom: 15px;
    /* margin-left: 22px; */
    /* margin-right: 22px; */
    color: white;
    /* padding-left: 22px; */
    /* padding-right: 22px; */
}
.box ul {
    list-style: none;
    padding: 0;
}
.box ul li {
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    margin: 5px 0;
    border-radius: 5px;
    transition: 0.3s;
    color: white;
}
.box ul li:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* social media links  */

.social-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.social-box-container h2 {
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}
.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}
.social-icons a:hover {
    background: rgba(255, 255, 255, 0.4);
}
.social-icons img:hover {
    transform: scale(1.2);
}