:root{
  --bg-top:#f8fbff;
  --bg-bottom:#dceafb;
  --navy:#0c2f5e;
  --navy-deep:#081c3a;
  --blue:#2f6fe0;
  --blue-bright:#4f8dff;
  --ink:#132038;
  --muted:#5b6b82;
  --glass-fill: rgba(255,255,255,0.55);
  --glass-fill-hover: rgba(255,255,255,0.7);
  --glass-border: rgba(255,255,255,0.7);
  --shadow-color: rgba(20,60,120,0.18);
  --font: 'Poppins', 'Segoe UI', sans-serif;
}

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

html, body{ height:100%; }

body{
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(circle at top, rgba(79,141,255,.25), transparent 60%),
        linear-gradient(180deg,#f8fbff,#dceafb);

    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow-x:hidden;
    padding:40px 20px;
}
/* ---------- Ambient background ---------- */
.bg-layer{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}

.orb{
  position:absolute;
  border-radius:50%;
  filter: blur(64px);
  opacity:0.55;
  background: radial-gradient(circle at 30% 30%, rgba(79,141,255,0.5), rgba(79,141,255,0) 70%);
  animation: drift 22s ease-in-out infinite;
}
.orb.o1{ width:420px; height:420px; top:-130px; left:-110px; animation-duration:26s; }
.orb.o2{ width:340px; height:340px; top:15%; right:-130px; animation-duration:20s; animation-delay:-4s; background: radial-gradient(circle at 60% 40%, rgba(143,196,255,0.46), rgba(143,196,255,0) 70%); }
.orb.o3{ width:300px; height:300px; bottom:-90px; left:8%; animation-duration:24s; animation-delay:-9s; }
.orb.o4{ width:250px; height:250px; bottom:8%; right:6%; animation-duration:19s; animation-delay:-6s; background: radial-gradient(circle at 40% 60%, rgba(47,111,224,0.36), rgba(47,111,224,0) 70%); }

@keyframes drift{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(28px,-22px) scale(1.06); }
}

/* ---------- Content shell ---------- */
.stage{
    width:100%;
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* ---------- Logo ---------- */
.logo-stage{
    width:180px;
    height:180px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.logo-float{
    width:140px;
    height:140px;
}

.logo-float img{
    width:100%;
    height:auto;
    object-fit:contain;
    background:none;
    padding:0;
    border-radius:0;
    box-shadow:none;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-13px); }
}
@keyframes pulseGlow{
  0%,100%{ opacity:0.75; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.08); }
}

/* ---------- Badge ---------- */
.badge{
    margin-bottom:25px;
}
.badge::before{
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px 2px rgba(79,141,255,0.7);
  animation: blink 1.8s ease-in-out infinite;
  flex:0 0 auto;
}
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ---------- Heading ---------- */
.headline{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    margin:0;
}
/* ---------- Description ---------- */
.desc{
    max-width:520px;
    margin-top:20px;
    font-size:18px;
    line-height:1.8;
}
.desc strong{ color: var(--navy); font-weight:600; }

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

/* ---------- Contact card ---------- */
.contact-card{
    width:100%;
    max-width:620px;
    margin-top:50px;
    padding:35px;
    border-radius:24px;
}
.contact-card:hover{
  box-shadow: 0 16px 50px rgba(47,111,224,0.32), 0 0 0 1px rgba(79,141,255,0.3), 0 0 44px rgba(79,141,255,0.28);
  border-color: rgba(79,141,255,0.5);
  background: var(--glass-fill-hover);
  transform: translateY(-4px);
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.contact-item .text{
    text-align:left;
}

.contact-item .icon{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  line-height:1;
  background: linear-gradient(145deg, rgba(79,141,255,0.18), rgba(79,141,255,0.05));
  border:1px solid rgba(79,141,255,0.25);
}



.contact-item .text .label{
  font-size:0.66rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: var(--blue);
  font-weight:600;
  margin-bottom:5px;
}
.contact-item .text .value{
  font-size:0.94rem;
  color: var(--ink);
  line-height:1.55;
  font-weight:500;
  word-break:break-word;
}
.contact-item a{ color:inherit; text-decoration:none; }
.contact-item a:hover{ color: var(--blue); }

.divider{
  height:1px;
  width:100%;
  background: linear-gradient(90deg, transparent, rgba(47,111,224,0.18), transparent);
}

/* =========================================================
   Responsive alignment — Desktop / Laptop / Tablet / Mobile
   ========================================================= */

/* Large desktop screens */
@media (min-width: 1600px){
  .stage{ max-width:680px; padding:56px 28px; }
}

/* Laptop / small desktop */
@media (max-width: 1024px){
  .stage{ max-width:580px; }
}

/* Tablets (portrait & landscape) */
@media (max-width: 900px){
  .stage{ max-width:520px; padding:44px 26px; }
  .logo-stage{ width:170px; height:170px; }
  .logo-glow{ width:225px; height:225px; }
  .logo-float{ width:118px; height:118px; }
  .contact-card{ padding:32px 28px; gap:22px; }
}

@media(max-width:768px){

.stage{
    max-width:100%;
}

.logo-stage{
    width:150px;
    height:150px;
}

.logo-float{
    width:110px;
    height:110px;
}

.headline{
    font-size:34px;
}

.desc{
    font-size:16px;
}

.contact-card{
    padding:25px;
}

.contact-item{
    align-items:flex-start;
}

}

/* Small tablets / large phones */
@media (max-width: 700px){
  body{ padding:20px; }
  .stage{ padding:40px 22px; }
  .headline{ font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .desc{ font-size:0.95rem; padding:0 6px; }
}

/* Mobile phones */
@media (max-width: 560px){
  body{ padding:16px; }
  .stage{ padding:36px 20px; }
  .logo-stage{ width:150px; height:150px; }
  .logo-glow{ width:200px; height:200px; }
  .logo-float{ width:100px; height:100px; }
  .badge{ font-size:0.62rem; padding:7px 16px; letter-spacing:0.16em; }
  .headline{ margin-top:20px; }
  .contact-card{ padding:28px 22px; gap:20px; }
  .contact-item{ align-items:flex-start; gap:14px; }
  .contact-item .icon{ width:38px; height:38px; font-size:1rem; }
}

/* Extra small phones */
@media (max-width: 360px){
  .stage{ padding:28px 14px; }
  .logo-stage{ width:130px; height:130px; }
  .logo-glow{ width:175px; height:175px; }
  .logo-float{ width:88px; height:88px; }
  .contact-card{ padding:22px 16px; }
  .contact-item{ gap:12px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}
