*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /* Custom Scrollbar with RGB Gradient */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff1cec, #ee4ad8, #c14aee, #ff1cec);
    border-radius: 10px;
    background-size: 200% 200%;
    animation: gradient-animation 5s ease infinite;
  }
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .audio {
    display: block;
    margin: 0 auto;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #ee4ad8, 0 0 20px #ee4ad8, 0 0 30px #ee4ad8, 0 0 40px #ee4ad8;
    border-radius: 29px;                             
  }
  

  body{
    position: relative;
    height: fit-content;
    width:100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    padding: 30px 0;
    justify-content: center;
    align-items: center;
  }
  
  .back-vid {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    background-color: #000;
  }
  
  
  
  @media (max-width: 768px) {
    .back-vid {
      position: fixed;
      width: auto;
      height: 100vh;
      min-height: 100%;
      object-position: center;
    }
    
    body {
      background-color: #000;
    }

    .resume-btn {
      display: inline-block !important;
      margin-top: 20px;
      margin-bottom: 20px;
      width: 200px;
    }

    .Buttons {
      display: flex;
      justify-content: center;
      width: 100%;
    }
  }
  
  
  
  .main-section{
    width: 90%;
    height: 90%;
    background-color:#ec34d31e;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 5px 5px 20px 1px #be029f;
  }
  
  nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
  }
  
  nav h1{
    color: white;
    font-size: 30px;
    font-weight: 900;
  }
  
  nav ul{
    list-style: none;
    display: flex;
  }
  
  nav a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: 0.2s;
    padding: 0px 25px;
  }
  
  nav a:hover ,
  .active {
    color : #f130e1;
    text-decoration: underline;
  }
  
  .hero{
    display: flex;
    align-items: center;
    height: 70%;
    padding: 0 5%;
    color: white;
    justify-content: space-between;
    
  }
  
  .hero h1{
    font-size: 60px;
  }
  
  .hero h1{
    margin-top: 20px;
    font-size: 30px;
    text-transform: uppercase;
    background:linear-gradient(to right, #ee4aca, #f353f8, #fd6e6e, #e14bff, #dd3dfd);
    /* background:linear-gradient(to right, #4acfee, #53f8c9, #6070fd, #5bbdff, #4acfee); */
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
  }
  
  .hero p{
    max-width: 700px;
    margin-top: 7px;
    margin-bottom: 20px;
  }
  
  @keyframes animate-gradient {
    to {
      background-position: 200%;
    }
  }
  
  
  .Buttons{
    display: flex;
  }
  
  .btn{
    display: inline-block;
    padding: 15px 30px;
    background-color: #4acfee;
    border: 2px solid #4acfee;
    border-radius: 40px;
    box-shadow: 0 0 10px #4acfee;
    font-size: 16px;
    font-weight: 900;
    color: #0e1217;
    cursor: pointer;
    margin-right: 15px;
    transition: 0.3s;
    text-wrap: nowrap;
    display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  }
  
  .btn:hover{
    background-color: transparent;
    box-shadow: none;
    color: #4acfee;
  }
  
  .resume-btn {
    background-color: #f130e1;
    border: 2px solid #f130e1;
    box-shadow: 0 0 10px #f130e1;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: pulse-resume 2s infinite;
  }
  
  .resume-btn:hover {
    background-color: transparent;
    color: #f130e1;
    box-shadow: none;
    animation: none;
  }
  
  .resume-btn i {
    margin-right: 8px;
    animation: bounce 1s ease infinite;
  }
  
  @keyframes pulse-resume {
    0% {
      box-shadow: 0 0 10px #f130e1;
    }
    50% {
      box-shadow: 0 0 20px #f130e1, 0 0 30px #f130e1;
    }
    100% {
      box-shadow: 0 0 10px #f130e1;
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-5px);
    }
    60% {
      transform: translateY(-3px);
    }
  }
  
  .resume-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
  }
  
  .resume-btn:hover::before {
    left: 100%;
  }
  
  .ul-icons{
    display: flex;
    align-items: center;
  }
  
  .ul-icons li{
    list-style: none;
    margin-left: 10px;
  }
  
  .ul-icons a{
    display: inline-flex;
    padding: 8px;
    border: 2px solid #4acfee;
    border-radius: 50%;
    font-size: 20px;
    color: #4acfee;
    text-decoration: none;
    margin: 0 7px;
    transition: 0.3s;
  }
  
  .ul-icons a:hover{
    background: #4acfee;
    color: #0e1217;
    box-shadow: 0 0 10px #4acfee;
  }
  
  .hero-img{
    width: 400px;
    height: 400px;
    background-color: none;
    position:relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 10px #fd4e4e;
    transition: 0.5s;
  }
  
  .hero-img:hover{
    box-shadow: 0 0 25px #ee4ae6;
  }
  
  .hero-img img {
    transform: scale(1.1); /* Adjust the scale value as needed */
  }
  
  .info-sec{
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 10%;
    flex-wrap: wrap;
    justify-content: space-between;
    
  }
  
  .info-card{
    display: flex;
    width: 100%;
    align-items: center;
    max-width: fit-content;
  }
  
  .info-sec h1{
    font-size: 55px;
    text-transform: uppercase;
    background:linear-gradient(to right, #4acfee, #53f8c9, #6070fd, #5bbdff, #4acfee);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
    margin-right: 10px;
  }
  
  .info-sec p{
    color: white;
    font-size: 20px;
  }
  
  @media (min-width: 1220px) {
    body{
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }
  
    .info-sec{
      margin-top: 30px;
    }
  }
  
  
  
  
  @media (max-width: 980px) {
  
    body{
      height: fit-content;
      overflow: auto;
      padding: 20px 0;
    }
  
    .main-section{
      height: auto;
      overflow-y: auto;
    }
  
    .hero{
      flex-direction: column-reverse;
      height: auto;
      padding: 20px 5%;
      text-align: center;
      gap: 30px;
    }
  
    .hero h1{
      font-size: 40px;
    }
  
    .hero p{
      margin: 15px auto;
    }
  
    .Buttons{
      justify-content: center;
    }
  
  
    .hero-img {
      width: 300px;
      height: 300px;
    }
  }

  @media (max-width: 768px) {
    .main-section {
      width: 95%;
      border-radius: 30px;
    }
  
    nav {
      padding: 20px 30px;
    }
  
    nav h1 {
      font-size: 25px;
    }
  
    .hero h1 {
      font-size: 35px;
    }
  
    .hero p {
      font-size: 15px;
    }
  
    .hero-img {
      width: 250px;
      height: 250px;
    }
  
    .audio {
      width: 80%;
      max-width: 300px;
    }
  
    /* Hide navigation by default */
    .navigation {
      display: none;
    }
  
    .menu-btn {
      display: block;
      position: absolute;
      background-image: url(images/menu.png);
      background-position: center;
      background-size: 30px;
      background-repeat: no-repeat;
      width: 40px;
      height: 40px;
      right: 0;
      margin: 0 20px;
      cursor: pointer;
      transition: 0.3s ease;
      z-index: 888;
    }
  
    .menu-btn.active {
      z-index: 999;
      background-image: url(images/close.png);
      background-position: center;
      background-size: 25px;
      background-repeat: no-repeat;
      transition: 0.3s ease;
      filter: invert(1);
    }
  
    /* Only show navigation when active class is applied */
    .navigation.active {
      z-index: 889;
      position: fixed;
      background: rgba(20, 10, 30, 0.88); /* darker and more opaque */
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      top: 0;
      right: 0;
      width: 300px;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      box-shadow: 0 5px 25px rgba(1, 1, 1, 0.15);
      transition: 0.3s ease;
    }
  
    .navigation a {
      color: white;
      font-size: 1.2em;
      margin: 10px;
      padding: 10px 40px;
      border-radius: 5px;
      background: rgba(74, 20, 60, 0.22); /* slightly darker for contrast */
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      transition: 0.3s ease;
    }
  
    .navigation a:hover {
      background: rgba(241, 48, 225, 0.2);
      color: #f130e1;
      transition: 0.3s ease;
    }
  }

  @media (max-width: 480px) {
    body {
      padding: 10px 0;
    }
  
    .main-section {
      width: 95%;
      border-radius: 20px;
    }
  
    nav {
      padding: 15px 20px;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 14px;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 14px;
    }
  
    .hero-img {
      width: 200px;
      height: 200px;
    }
  
    .ul-icons a {
      padding: 6px;
      font-size: 16px;
    }
  }

