/* .main_container{
    min-width: fit-content;
} */

/* Home Section */
.home {
  min-height: 100vh;
  /* height: 300px; */
  display: flex;
  color: var(--text-bg-black-900);
}

/* .main_content{
    padding-left: 270px;
} */

.section {
  background: var(--bg-black-900);
  min-height: 100vh;
  display: block;
  position: fixed;
  left: 270px;
  padding: 0 30px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  transition: all 0.5s ease;
}

.section.active {
  z-index: 2;
  opacity: 1;
}

.animate_content_out {
  animation: animate_out 1s ease;
}

@keyframes animate_out {
  30% {
    transform: scale(1, 0.02);
  }
  60% {
    transform: scale(0.2, 0.002);
    opacity: 1;
  }
  80% {
    transform: scale(0.2, 0.002);
    opacity: 0;
  }
  100% {
    transform: scale(0, 0);
    opacity: 1;
  }
}

.animate_content_in {
  animation: animate_in 1s ease;
}

@keyframes animate_in {
  0% {
    transform: scale(0, 0);
    opacity: 0;
  }
  30% {
    transform: scale(0.2, 0.002);
    opacity: 1;
  }
  50% {
    transform: scale(1, 0.002);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
  }
}

.fadeIn {
  z-index: 10;
}

.container {
  max-width: 1100px;
  width: 100%;

  margin: auto;
  margin-left: 2vw;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.home .home-info {
  flex: 0 0 60%;
  max-width: 60%;
  /* padding-right: 3%; */
}

.home .home-info .greet {
  font-size: 35px;
  margin: 15px 0;
}

.home .home-info .greet span {
  font-family: "poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  /* font-weight: bolder; */
  color: var(--skin-color);
  /* background-color: yellow; */
}

.home .home-info .profession {
  font-size: 30px;
  margin: 15px 0;
}

.home .home-info .profession span {
  color: var(--skin-color);
}

.home .home-info p {
  font-family: "Poppins", sans-serif;
  margin-bottom: 70px;
  font-size: 17px;
  color: var(--text-black-700);
}

@media screen and (max-width: 768px) {
  .home .home-info p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
}
/* .btn{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 12px 35px;
    background: var(--skin-color);
    color: white;
    border-radius: 40px;
    border: none;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease;
} */

/* .btn:hover{
    transform: scale(1.1);
} */
.button {
  font-family: "poppins", sans-serif;
  font-size: 17px;
  position: relative;
  display: flex;
  align-items: center;
  color: #aca0a0;
  background: none;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  translate: calc(100% + 4px) -50%;
  width: 45px;
  height: 45px;
  background: var(--skin-color);
  border-radius: 50px;
  transition: translate 0.25s 0.25s cubic-bezier(0, 0, 2, 2),
    width 0.25s cubic-bezier(0, 0, 2, 2);
}
.button:hover::before {
  width: 100%;
  translate: -18px -50%;
  transition: translate 0.25s cubic-bezier(0, 0, 0.5, 2),
    width 0.25s 0.25s cubic-bezier(0, 0, 0.5, 2);
}
.button i {
  margin-left: 5px;
  transition: translate 0.25s 0.4s cubic-bezier(0, 0, 0.5, 2);
}
.button:hover i {
  translate: 3px 0;
}

.home .home-image {
  flex: 0 0 40%;
  max-width: 40%;
  /* height: 230px; */
  /* background-color: green; */
  text-align: center;
  position: relative;
  display: flex;
}

.home .home-image .profile_image::before {
  content: "";
  position: absolute;
  height: 60px;
  border-top: 8px solid var(--skin-color);
  border-left: 8px solid var(--skin-color);
  width: 80px;
  left: 10px;
  top: -5vh;
}
.home .home-image .profile_image::after {
  content: "";
  position: absolute;
  height: 60px;
  border-bottom: 10px solid var(--skin-color);
  border-right: 8px solid var(--skin-color);
  width: 80px;
  right: 10px;
  bottom: -5vh;
}

.home .home-image .my_logo {
  justify-content: center;
  /* text-align: center; */
  margin: auto;
  border-radius: 15px;
  height: 100%;
  max-height: 400px;
  max-width: 400px;
  box-shadow: 0 0 0px rgba(14, 13, 20, 0.15);
}

.home .home-image .my_logo.dark {
  box-shadow: 0 0 0px rgba(246, 246, 250, 0.836);
}

.home .home-image .extra {
  flex-grow: 1;
  flex-shrink: 3;
  /* background-color: blue; */
}

.home .home-image .profile_image {
  flex-grow: 3;
  flex-shrink: 1;
  position: relative;
  /* text-align: center; */
  display: flex;
  /* background-color: red; */
}
/* Profile Image Container */
.profile_image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating Image Animation */
.floating-img {
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.floating-img:hover {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 10px 20px rgba(79, 70, 229, 0.3));
}

/* Tech Bubbles */
.tech-bubble {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--bg-black-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--skin-color);
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
}

/* Bubble Positions and Animations */
.bubble-1 {
  top: -15px;
  left: 20px;
  animation: floatBubble 10s infinite 0.5s;
}
.bubble-2 {
  top: 20px;
  right: -10px;
  animation: floatBubble 12s infinite 1s;
}
.bubble-3 {
  bottom: 30px;
  left: -10px;
  animation: floatBubble 14s infinite 1.5s;
}
.bubble-4 {
  bottom: -10px;
  right: 30px;
  animation: floatBubble 13s infinite 2s;
}
.bubble-5 {
  top: 50%;
  left: -20px;
  animation: floatBubble 15s infinite 2.5s;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translateY(-20px) translateX(10px) scale(1);
  }
  100% {
    transform: translateY(-80px) translateX(20px) scale(0.8);
    opacity: 0;
  }
}

/* Border Effects (keeping your existing) */
.profile_image::before,
.profile_image::after {
  z-index: 3; /* Ensure borders stay on top */
}

/////////////
