.penin-intro {
  display: flex;
  gap: 20px;
  margin: 50px 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.penin-box {
  flex: 1 1 45%;
  border-radius: 12px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  min-height: 200px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.penin-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(0,0,0,0));
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.penin-box:hover::before {
  transform: skewX(-20deg) translateX(200%);
}

.penin-box-left {
  background: linear-gradient(135deg, #ff5e01, #ff0000);
}

.penin-box-right {
  background: linear-gradient(135deg, #aaf300, #ffe600);
  color: #000;
}

.penin-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.penin-box svg {
  width: 35px;
  height: 35px;
  transition: transform 0.5s ease, fill 0.5s ease;
}

.penin-box:hover svg {
  transform: rotate(15deg) scale(1.1);
  fill: #fff;
}

.penin-box h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 20px 0 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.right-side-btn {
  text-align: right;
}

.main-link, .one-white {
  border: 1px solid currentColor;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.main-link:hover {
  background-color: #fff;
  color: #ff0000;
  transform: translateY(-5px);
}

.one-white:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-5px);
}

 body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Poppins';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #111;
    color: #eee;
  }

  h1 {
    font-size: 40px;
    max-width: 700px;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    color: #ff6f3c; 
  }

  p {
    font-size: 20px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
    color: #ccc;
  }

  .enter-btn {
    margin-top: 40px;
    padding: 16px 40px;
    font-size: 18px;
    border: 2px solid #ff6f3c;
    border-radius: 50px;
    background: transparent;
    color: #ff6f3c;
    cursor: pointer;
    font-weight: bold;
    transition: 0.25s ease;
  }

  .enter-btn:hover {
    background: #ff6f3c;
    color: #111;
  }

  .loader {
    margin-top: 30px;
    width: 40px;
    height: 40px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top-color: #ff6600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
  }

  .gradient-text {
  background: linear-gradient(90deg, red, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px; 
  font-weight: bold;
  font-family: "Poppins";
}

.enter-btn {
  background: transparent;        
  color: rgb(255, 255, 255);                     
  border: 2px solid red;          
  padding: 10px 40px;            
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;            
  cursor: pointer;
  transition: all 0.3s ease;      
}

.enter-btn:hover {
  background: red;                
  color: white;                   
}

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

.header-h1 {
  background: linear-gradient(90deg, red, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size:70px !important; 
  font-weight: bold;
  margin-bottom: 30px;
}
