 :root {
      --bg-color: rgb(15, 15, 15);
      --text-color: #ffffff;
      --primary-color1: rgb(21, 145, 207);
      --primary-color2: rgb(201, 41, 116);
      --gradient: linear-gradient(to right, var(--primary-color1), var(--primary-color2));
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
      text-decoration: none;
      border: none;
      outline: none;
      scroll-behavior: smooth;
    }

    html, body {
      font-size: 62.5%;
      overflow: hidden;
      height: 100%;
      background: var(--bg-color);
        color: var(--text-color);
}
    .gradient-border-wrapper {
      background: var(--gradient);
      padding: 8px;
      height: 100vh;
      /* border-radius:0px; */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .gradient-border-content {
      background: var(--bg-color);
      border-radius: 30px;
      width: 90%;
      height: 90%;
      padding: 4rem;
    }

    section {
      min-height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8rem;
      flex-wrap: wrap;
    }

    .home-img img {
      width: 30vw;
      height: 30vw;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 40px var(--primary-color1), 0 0 80px var(--primary-color2);
      transition: 0.4s ease-in-out;
    }

    .home-img:hover img {
      transform: scale(1.03);
      box-shadow: 0 0 50px var(--primary-color1), 0 0 100px var(--primary-color2);
    }

    .home-img:hover ~ .home-content .btn {
      box-shadow: 0 0 35px var(--primary-color1), 0 0 35px var(--primary-color2);
    }

    .home-content {
      max-width: 600px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
    }


    .home-content h1 {
      font-size: 6rem;
      font-weight: 700;
    }

    .home-content h3 {
      font-size: 3.2rem;
      font-weight: 500;
      margin-top: 1rem;
    }

    .text-animation span {
      font-weight: bold;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .btn {
      display: inline-block;
      margin-top: 3rem;
      padding: 1.2rem 3rem;
      border-radius: 4rem;
      font-size: 1.6rem;
      color: white;
      font-weight: 600;
      cursor: pointer;
      background: var(--gradient);
      border: none;
      box-shadow: 0 0 20px var(--primary-color1), 0 0 20px var(--primary-color2);
      transition: all 0.5s ease-in-out;
      text-align: center;
    }

    .btn:hover {
      background: var(--bg-color);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      background-image: var(--gradient);
      box-shadow: 0 0 25px var(--primary-color1), 0 0 25px var(--primary-color2);
      letter-spacing: 2px;
    }            


    @keyframes blink-glow {
     0% {
     transform: scale(1);
     box-shadow: 0 0 40px var(--primary-color1), 0 0 80px var(--primary-color2);
    }
    50% {
     transform: scale(1.05);
     box-shadow: 0 0 60px var(--primary-color2), 0 0 100px var(--primary-color1);
    }
    100% {
     transform: scale(1);
     box-shadow: 0 0 40px var(--primary-color1), 0 0 80px var(--primary-color2);
    }
  }

  .blinking-logo {
   animation: blink-glow 1s infinite ease-in-out;
  } 


  
    /* For tablets and medium screens */
@media (max-width: 768px) {
  html, body {
    font-size: 55%;
  }

  section {
    gap: 1rem; /* Reduce from 8rem or 4rem to 2rem */
  }

  .home-img img {
    width: 40vw;
    height: 40vw;
    margin-bottom: 2rem;
  }

  .home-content h1 {
    font-size: 4rem;
  }

  .home-content h3 {
    font-size: 2.2rem;
  }

  .btn {
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
  }
}

/* For small screens and phones */
@media (max-width: 480px) {
  html, body {
    font-size: 50%;
  }

  section {
    flex-direction: column;
    gap: 1rem; /* Reduce vertical gap between image and content */
  }

  .home-img img {
    width: 85vw;  /* Increased image size */
    height: 85vw;
    /* margin-bottom: 0.5rem;  */
  }

  .home-content h1 {
    font-size: 3.5rem;
  }

  .home-content h3 {
    font-size: 2rem;
  }

  .btn {
    font-size: 1.3rem;
    padding: 0.9rem 2rem;
  }

  .gradient-border-content {
    padding: 2rem;
  }
}
