.hero-section {
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-image: url(../assets/footerbg.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
    margin: 8px 0px 4px 0px;
}

.hero-content {
    color: white !important;
}

/* Main Image Container */
.image-wrapper {
    position: relative;
    display: inline-block;
    perspective: 1000px;
    padding: 15px !important;
}

/* Main Profile Image with Enhanced Animation */
.profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid var(--primary-color) !important;
    /* border: 5px solid #BAFF39 !important; */
    border-radius: 50%;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px var(--secondary-color));
    transition: all 0.5s ease;
}

.profile-img:hover {
    transform: scale(1.05) rotateY(10deg);
    filter: drop-shadow(0 10px 25px var(--secondary-color));
}d
/* social icons */
.social-icon {
    padding: 8px 12px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
}

.social-icon:hover {
    transition: all 0.5s ease-in-out;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 0.5px solid var(--secondary-color);
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.4;
    }

    50% {
        transform: translate(40px, 0) rotate(180deg);
        opacity: 0.6;
    }

    75% {
        transform: translate(20px, 30px) rotate(270deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Particle Effects */
.particle {
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    70% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Glowing Ripple Effect */
.circle-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    z-index: 0;
    box-shadow: 0 0 20px var(--secondary-color);
}

.circle-animation:nth-child(1) {
    animation: ripple 4s linear infinite;
}

.circle-animation:nth-child(2) {
    animation: ripple 4s linear infinite 1.3s;
}

.circle-animation:nth-child(3) {
    animation: ripple 4s linear infinite 2.6s;
}

.alphabets {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* border-right: 1px solid red; */
    /* border-left: 5px solid red; */
    /* border-left: 1px solid red; */
    padding: 0px !important;
    /* background-color: orange; */
    animation: float 6s ease-in-out infinite;

    /* filter: drop-shadow(0px 0px 5px lightblue); */
    

}

/* skills icons */
.skill-icons {
    top: 0px;
    padding: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* border: 5px solid red; */
    position: absolute;
    z-index: 0;
    animation-name: rotateicons;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-delay: 3s;
    /* animation-play-state: paused; */
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.html {
    top: 50%;
    left: -10%;
    position: absolute;
    z-index: 0;
}

.css {
    top: 15%;
    left: -4%;
    position: absolute;
    z-index: 0;
}

.tailwind {
    top: -8%;
    left: 24%;
    position: absolute;
    z-index: 0;
}

.js {
    top: -20px;
    left: 60%;
    position: absolute;
    z-index: 0;
}

.reactjs {
    top: 20%;
    right: -5%;
    position: absolute;
    z-index: 0;
}

.php {
    top: 55%;
    right: -10%;
    position: absolute;
    z-index: 0;
}

.mysql {
    bottom: -2%;
    right: 10%;
    position: absolute;
    z-index: 0;
}

.nodejs {
    bottom: -9%;
    right: 40%;
    position: absolute;
    z-index: 0;
}

.photoshop {
    bottom: 0%;
    left: 8%;
    position: absolute;
    z-index: 0;
}

@keyframes rotateicons {
    0% {
        transform: rotate(0deg);
        z-index: 0;
    }

    30% {
        transform: rotate(90deg);
        z-index: 0;
    }

    60% {
        transform: rotate(189deg);
        z-index: 0;
    }

    100% {
        transform: rotate(380deg);
        z-index: 0;
        /* opacity: 0.5; */
    }
}

/* rsoponsive */
@media (min-width: 992px) {
    .profile-img {
        width: 350px;
        height: 350px;
        border: 5px solid var(--primary-color);
    }

    .alphabets {
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }
}

/* Responsive Adjustments */
@media (min-width: 0px)and (max-width:768px) {
    .image-wrapper {
        padding: 10px;
    }

    .profile-img {
        width: 230px;
        height: 230px;
    }

    .alphabets {
        width: 60px;
        height: 60px;
    }

    .alphabets {
        width: 50px;
        height: 50px;
    }
}

@media (max-height:768px) {
    .hero-section {
        margin-top: 50px;
    }
}

.social-icon {
    padding: 8px 12px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
}

.social-icon:hover {
    transition: all 0.5s ease-in-out;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 0.5px solid var(--secondary-color);
}