* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0f1b2a;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.hero-section {
    display: flex;
    justify-content: space-between; /* Distributes the sections evenly */
    align-items: center; /* Vertically centers the content */
    padding: 20px; /* Adds some padding */
    height: 100vh; /* Full viewport height */
    box-sizing: border-box; /* Ensures padding is included in width/height calculations */
}

.left-section, .right-section {
    flex: 1; /* Each section will take up equal width */
}

.left-section {
    text-align: left; /* Align text to the left */
}

.right-section {
    text-align: right; /* Align the content on the right */
    margin-left: 70px;
}

.intro {
    font-size: 18px;
    color: #f7c46d;
    margin-bottom: 10px;
}
.subheading {
    color: #B0BEC5;
    font-size: 18px;
}
.profile-pic {
    width: 100%; /* Adjust width as needed */
    height: 70%;
    margin-left: 10px;
    object-fit: cover;
    border-radius: 100px;
}

.rating {
    font-size: 40px; /* Adjust star size */
    color: #ffcc00; /* Star color */
    margin-top: 40px; /* Add some space above the rating */
}

.card {
    display: flex;
    gap: 10px; /* Add space between social icons */
    margin-top: 20px; /* Add space above the card */
}

.socialContainer {
    width: 52px;
    height: 52px;
    background-color: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
}

.socialSvg {
    width: 40px;
    height: 40px;
}
h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    color: #ffffff;
}
.card {
    width: fit-content;
    height: fit-content;
    background-color: rgb(13, 6, 80);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    gap: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}
.about {
    display: flex;
    height: 100vh; /* Full viewport height */
    padding: 0;
    margin-top: 100px;
}
.about-img {
    width: 50%; /* Image takes up half the page */
    height: 75%; /* Ensure the image covers the entire left side */
    object-fit: cover; /* Make sure the image scales correctly to fit */
    border-radius: 100px;
}
.about-content {
    width: 50%; /* Other half of the page */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -90px;
}
.about h2 {
    font-size: 48px; /* Large heading */
    margin-bottom: 20px;
}
.about p {
    font-size: 18px;
    line-height: 1.6;
}
.skills {
    width: 80%; /* Adjust the container width */
    margin: 0 auto;
}

.skill {
    margin-bottom: 20px;
}

.skill p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.progress-bar {
    background-color: #e0e0e0; /* Background of the bar */
    border-radius: 25px;
    overflow: hidden;
    height: 25px;
    margin-top: 5px;
}

.progress {
    background-color: #4caf50; /* Color of the filled portion */
    height: 100%;
    border-radius: 25px; /* Smooth round edges */
}
.cards-container {
    display: flex;
    justify-content: space-around; /* Aligns the cards with space around them */
    flex-wrap: wrap; /* Ensures cards wrap to the next line if screen is too small */
    gap: 20px; /* Adds spacing between the cards */
    margin-top: 100px;
  }
  
  .e-card {
    margin: 20px auto; /* Adjusts the margin to allow better alignment */
  }
  
/* From Uiverse.io by MikeAndrewDesigner */ 
.e-card {
    margin: 100px auto;
    background: transparent;
    box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
    position: relative;
    width: 240px;
    height: 330px;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .wave {
    position: absolute;
    width: 540px;
    height: 700px;
    opacity: 0.6;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg,#af40ff,#5b42f3 60%,#00ddeb);
  }
  
  .icon {
    width: 3em;
    margin-top: -1em;
    padding-bottom: 1em;
  }
  
  .infotop {
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 5.6em;
    left: 0;
    right: 0;
    color: rgb(255, 255, 255);
    font-weight: 600;
  }
  
  .name {
    font-size: 14px;
    font-weight: 100;
    position: relative;
    top: 1em;
    text-transform: lowercase;
  }
  
  .wave:nth-child(2),
  .wave:nth-child(3) {
    top: 210px;
  }
  
  .playing .wave {
    border-radius: 40%;
    animation: wave 3000ms infinite linear;
  }
  
  .wave {
    border-radius: 40%;
    animation: wave 55s infinite linear;
  }
  
  .playing .wave:nth-child(2) {
    animation-duration: 4000ms;
  }
  
  .wave:nth-child(2) {
    animation-duration: 50s;
  }
  
  .playing .wave:nth-child(3) {
    animation-duration: 5000ms;
  }
  
  .wave:nth-child(3) {
    animation-duration: 45s;
  }
  
  @keyframes wave {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
/* From Uiverse.io by MuhammadHasann */ 
.card {
    --white: hsl(0, 0%, 100%);
    --black: hsl(240, 15%, 9%);
    --paragraph: hsl(0, 0%, 83%);
    --line: hsl(240, 9%, 17%);
    --primary: hsl(266, 92%, 58%);
  
    position: relative;
  
    display: flex;
    flex-direction: column;
    gap: 1rem;
  
    padding: 1rem;
    width: 19rem;
    background-color: hsla(240, 15%, 9%, 1);
    background-image: radial-gradient(
        at 88% 40%,
        hsla(240, 15%, 9%, 1) 0px,
        transparent 85%
      ),
      radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
      radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
      radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
      radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
      radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%);
  
    border-radius: 1rem;
    box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
  }
  
  .card .card__border {
    overflow: hidden;
    pointer-events: none;
  
    position: absolute;
    z-index: -10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: linear-gradient(
      0deg,
      hsl(0, 0%, 100%) -50%,
      hsl(0, 0%, 40%) 100%
    );
  
    border-radius: 1rem;
  }
  
  .card .card__border::before {
    content: "";
    pointer-events: none;
  
    position: fixed;
    z-index: 200;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), rotate(0deg);
    transform-origin: left;
  
    width: 200%;
    height: 10rem;
    background-image: linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0) 0%,
      hsl(277, 95%, 60%) 40%,
      hsl(277, 95%, 60%) 60%,
      hsla(0, 0%, 40%, 0) 100%
    );
  
    animation: rotate 8s linear infinite;
  }
  
  @keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }
  
  .card .card_title__container .card_title {
    font-size: 1rem;
    color: var(--white);
  }
  
  .card .card_title__container .card_paragraph {
    margin-top: 0.25rem;
    width: 65%;
  
    font-size: 0.5rem;
    color: var(--paragraph);
  }
  
  .card .line {
    width: 100%;
    height: 0.1rem;
    background-color: var(--line);
  
    border: none;
  }
  
  .card .card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .card .card__list .card__list_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .card .card__list .card__list_item .check {
    display: flex;
    justify-content: center;
    align-items: center;
  
    width: 1rem;
    height: 1rem;
    background-color: var(--primary);
  
    border-radius: 50%;
  }
  
  .card .card__list .card__list_item .check .check_svg {
    width: 0.75rem;
    height: 0.75rem;
  
    fill: var(--black);
  }
  
  .card .card__list .card__list_item .list_text {
    font-size: 0.75rem;
    color: var(--white);
  }
  
  .card .button {
    cursor: pointer;
  
    padding: 0.5rem;
    width: 100%;
    background-image: linear-gradient(
      0deg,
      rgba(94, 58, 238, 1) 0%,
      rgba(197, 107, 240, 1) 100%
    );
  
    font-size: 0.75rem;
    color: var(--white);
  
    border: 0;
    border-radius: 9999px;
    box-shadow: inset 0 -2px 25px -4px var(--white);
  }
  