*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif; 
}

body{
    height: 100vh;
    background: url("background.jpg") no-repeat center/cover;
    padding: 50px 5%;
}

.container{
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(30px);
    transform: scale(0);
    animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
    100% {
        transform: scale(1);
    }
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.navbar a{
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    border-bottom: 2px solid transparent;
}

.navbar a:hover{
    border-color: white;
}

.home{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    height: 100%;
    padding: 50px 5%;
    color: white;
}

.homedetail h1{
    font-size: 55px;
    line-height: 1;
}

.homedetail h2{
    font-size: 32px;
}

.homedetail p{
    margin: 10px 0 20px;
}

.homedetail .download-social{
    display: flex;
    align-items: center;
}

.btn{
    display: inline-block;
    padding: 10px 30px;
    background: white;
    border: 2px solid white;
    border-radius: 40px;
    box-shadow: 0 0 10px white;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.5s;
}

.btn:hover{
    background: transparent;
    color: white;
    box-shadow: none;
}

.homedetail .social-icons a{
     margin-left: 20px;
    display: inline-flex;
    padding: 8px;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.5s;
}

.homedetail .social-icons a:hover{
    background: white;
    box-shadow: 0 0 10px white;
    color: #333;
}

.homeimg .img-box{
    position: relative;
    width: 28vw;
    height: 28vw;
    border: 2px solid white;;
    border-radius: 50%;
    box-shadow: 0 0 20px white;
    overflow: hidden;
}

.homeimg .img-box img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    object-fit: cover;
}

section {
    padding: 70px 50px;
     min-height: 80px;
}

#about{
  text-align:center;
  background: url(background.jpg) no-repeat center/cover;
   border-radius:30px;
}

#about h2{
  color: white;
  margin-bottom:20px;
}

#skills{
    text-align:center;
    background:url(background.jpg) no-repeat center/cover;
    border-radius:30px;
}

#services{
  background:url(background.jpg) no-repeat center/cover;
  border-radius:30px;
  text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
}

.section-subtitle {
    padding: 5px 10px;
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.about, .skills, .services, .contact {
    max-width: 3000px;
    margin: auto;
    color: white;
}

.skills-list, .services-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.skill, .service {
    padding: 15px 25px;
    background: #c20b85;
    border-radius: 8px;
    transition: 0.3s;
}

.skill:hover, .service:hover {
    transform:translateY(-10px);
    box-shadow:0 0 15px white;
    background: purple;
    color: white;
}

#contact{
  background:url(background.jpg) no-repeat center/cover;
  color:white;
}

#contact{
    border-radius: 30px;
}

.contact p {
    margin: 10px 0;
}