*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
    overflow:hidden;
    background:linear-gradient(135deg,#050505,#121212,#1b1b1b);
}

.background-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.18;
    animation:float 8s ease-in-out infinite;
}

.circle1{
    width:380px;
    height:380px;
    background:#d71920;
    top:-120px;
    left:-120px;
}

.circle2{
    width:320px;
    height:320px;
    background:#b00000;
    right:-80px;
    bottom:-80px;
    animation-delay:3s;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.content{
    position:relative;
    z-index:10;
    max-width:850px;
    width:100%;
    padding:55px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.logo{
    width:220px;
    margin-bottom:25px;
    animation:logoGlow 4s ease-in-out infinite;
}

h3{
    color:#d71920;
    letter-spacing:4px;
    font-weight:600;
    margin-bottom:15px;
}

h1{
    font-size:68px;
    font-weight:800;
    margin-bottom:25px;
    letter-spacing:3px;
}

.tagline{
    color:#d9d9d9;
    font-size:18px;
    line-height:1.8;
}

.divider{
    width:120px;
    height:4px;
    background:#d71920;
    margin:40px auto;
    border-radius:20px;
}

.company-box h2{
    font-size:30px;
    margin-bottom:15px;
}

.company-box p{
    color:#cfcfcf;
    line-height:1.8;
}

.contact{
    margin-top:40px;
}

.item{
    margin:16px 0;
    font-size:18px;
}

.item a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.item a:hover{
    color:#ff4b4b;
}

.thankyou{
    margin-top:45px;
    color:#bbbbbb;
    font-size:15px;
}

@keyframes logoGlow{
  0%{
    transform:scale(1);
    filter:drop-shadow(0 0 0px #d71920);
  }
  50%{
    transform:scale(1.03);
    filter:drop-shadow(0 0 20px #d71920);
  }
  100%{
    transform:scale(1);
    filter:drop-shadow(0 0 0px #d71920);
  }
}

@keyframes float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-25px); }
  100%{ transform:translateY(0); }
}

@media(max-width:768px){
  .content{
    padding:35px 25px;
  }

  .logo{
    width:170px;
  }

  h1{
    font-size:42px;
  }

  .company-box h2{
    font-size:24px;
  }

  .tagline{
    font-size:16px;
  }

  .item{
    font-size:16px;
  }
}