* {
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;    
    
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background: #0e1118;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
  }
  section {
    padding: 100px 10%;
    position: relative;
    
  }
  .section-dark {
    background: #0d1117;
  }
  .section-blue {
    background: url('/images/Background.png') center/cover no-repeat;
    background-size: cover;
  }
  .section-gradient {
    background: url('/images/Background.png') center/cover no-repeat;
  }
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #ffffff;

  }
  .hero p {
    font-size: 1.5rem;
    color: #ccc;
    max-width: 800px;
  }
  .glass-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px;
    margin: 50px 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(50px);
    opacity: 0;
  }
  h1, h2, h3, h4, h5, h6 {
    -webkit-text-stroke: .2rem rgba(255, 255, 255, 0.199);
    text-shadow: 0px 5px  rgba(0, 0, 0, 0.137);
    font-weight: 700;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.2rem;
  }
  p, ul, ol {
    font-size: 1.3rem;
    text-shadow: 0px 3px  rgba(0, 0, 0, 0.137);

    color: #ffffff;
  }
  ul, ol {
    margin-left: 2rem;
  }
  a {
    color: #fafafa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  a:hover {
    color: #ffffff5b;
  }
  button, .btn {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background: #ffffff3b;
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  button:hover, .btn:hover {
    background: #ffffff31;
  }
  input, textarea, select {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    width: 100%;
    margin-bottom: 20px;
  }
  img.box-image {
    width: 90%;
    margin-top: 20px;
    border-radius: 12px;
  }
  .hero img{

  text-align: center;
  margin: 3rem 0;
   max-width: 100%;
  height: auto;
}  
  footer {
    padding: 40px 10%;
    background: #04080f;
    text-align: center;
    font-size: 1rem;
    color: #666;
  }
  