
body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
    background-color: rgb(255, 255, 255);
}
h2 {
    color: #ccc;
}
input {
    padding: 10px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#loadingGif{
  width: 150px;
  height: 150px;
  box-sizing: border-box;
}
#result {
    margin-top: 20px;
    padding: 15px;
    background: rgb(255, 255, 255);
    color: #000000;
    display: inline-block;
    border-radius: 5px;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
}

.title {
    font-size: xx-large;
    font-weight: bold;
    margin-bottom: 2%;
    text-align: center;
    color: rgb(0, 0, 0);
  }

.aurora-text {
    position: relative;
    display: inline-block;
    color: white;
    font-size: xx-large;
    font-weight: bold;
    background: linear-gradient(45deg, #ffad00, #f6d29b, #ff7700, #f6d29b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    animation: auroraGlow 3s infinite linear;
    font-family: 'Poppins', sans-serif;
  
  }
  
.aurora-text::before {
    content: "beautiful";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    color: transparent;
    filter: blur(10px);
    opacity: 0.7;
    z-index: -1;
  }
  
@keyframes auroraGlow {
    0% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  
    100% {
      background-position: 0% 50%;
    }
  }

.btn1 {
    color: white;
    padding: 10px 30px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(45deg, #ffad00, #f6d29b, #ff7700);
    transition: 0.4s;
    cursor: pointer;
  }
  
.btn1:hover {
    transform: scale(1.2);
  }

/* 🔥 Hover Effects */
.shine-border:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 190, 123, 0.6);
  }
  
.shine-border:hover .content {
    transform: translateY(-5px);
  }
  
.shine-border:hover img {
    transform: scale(1.1);
  }
  
.shine-border:hover h3 {
    transform: translateY(-3px);
    opacity: 0.9;
  }
  
/* Rotate Shine Effect */
@keyframes rotateShine {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
}

.shine-border {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
/* Animated Shine Effect */
.shine-border::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
        #A07CFE,
        #FE8FB5,
        #FFBE7B,
        #A07CFE);
    animation: rotateShine 4s linear infinite;
}
  
.shine-border::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #111;
    border-radius: 8px;
  }

.banner {
    /* min-height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center; */
    margin-top: 10%;
  }

/* Floating Navbar */
.navbar {
    position: fixed;
    top: 20px;
    /* Floating effect */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-radius: 15px;
    background: rgb(255 255 255 / 60%);
    /* Dark transparent background */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    /* Safari Support */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Subtle white border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    /* Soft shadow */
    z-index: 2000;
    height: 4%;
  }
  
  .logo-img {
    width: 20%;
  }
  
  .menu {
    display: flex;
    list-style: none;
    gap: 40px;
    text-decoration: none;
  }
  
  .menu a {
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    text-decoration: none;
  
  }
  
  .menu a:hover {
    transform: scale(1.2);
    background: linear-gradient(45deg, #fbb115, #f6d29b, #ff7700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
  }