﻿
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif
}
body{
  background:#000;
  color:#fff
}

.word-anim{
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
}
.word-anim span{
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  animation:wordFade .6s ease forwards;
  will-change:transform, opacity;
}
@keyframes wordFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeUp{
  0%{opacity:0; transform:translateY(25px);}
  100%{opacity:1; transform:translateY(0);}
}
@keyframes fadeCard{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--page-pad);
}

body.nav-open{
  overflow:hidden;
}

:root{
  --bg:#04020a;
  --purple:#a855f7;
  --border:rgba(255,255,255,.08);
  --container:1200px;
  --page-pad:20px;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate]{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .75s ease, transform .75s ease, filter .75s ease;
  will-change:opacity, transform;
}
[data-animate].show{
  opacity:1;
  transform:translateY(0);
}
/* ================= HERO ================= */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden
}
.hero video{display:none;}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.06);
  animation:heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  from{transform:scale(1.06) translateY(0); filter:brightness(.9);}
  to{transform:scale(1.02) translateY(-6px); filter:brightness(1);}
}
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55)
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:left;
  gap:40px;
  padding:180px var(--page-pad) 0;
  max-width:var(--container);
  margin:0 auto;
}
.hero-left{
  flex:1;
  display:flex;
  align-items:flex-start;
}
.hero-right{
  flex:1;
  max-width:640px;
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:26px 28px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  box-shadow:0 25px 70px rgba(0,0,0,0.55);
  backdrop-filter:blur(12px);
  position:relative;
  overflow:hidden;
  opacity:0;
  transform:translateY(24px);
  animation:fadeCard 1s ease forwards;
  animation-delay:.25s;
}
.hero-right::before{content:none;}
.hero-right::after{content:none;}
.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:18px;
  font-size:13px;
  color:#cbd5ff;
  letter-spacing:0.2px;
  position:relative;
  z-index:1;
}
.hero-pill i{
  color:#22d3ee;
}
.hero-right .muted{
  color:#c5c5d5;
  font-size:14px;
  letter-spacing:0.3px;
  position:relative;
  z-index:1;
}
/* ===== HERO TEXT ANIMATION ===== */
.hero h1{
  font-size:clamp(2.4rem,5vw,4rem);
  font-weight:700;
  opacity:0;
  transform:translateY(30px);
  animation:heroTitle 1.1s cubic-bezier(.22,.61,.36,1) forwards;
      color: white;
}

.hero p{
  max-width:720px;
  margin:0;
  opacity:0;
  transform:translateY(30px);
  animation:heroText 1.1s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay:.4s;
  line-height:1.7;
  color:#e8e8f3;
  font-size: x-small;
}

@media(max-width:900px){
  .hero{
    height:auto;
    min-height:88vh;
  }
  .hero video{display:none;}
  .hero-img{width:100%;}
  .hero-content{
    padding:150px 6vw 120px;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:22px;
  }
  .hero-content>div{
    align-items:center;
  }
  .hero .btn-hero{
    align-self:center;
  }
}
@media(max-width:600px){
  .hero-content{
    padding:140px 5vw 90px;
  }
  .hero p{
    line-height:1.6;
    font-size:1rem;
  }
}


.word-anim{
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
}
.word-anim span{
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  animation:wordFade .6s ease forwards;
}

@keyframes wordFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:1100px){
  .top-nav{padding:16px 0;}
  .scroll-nav .nav-inner{border-radius:32px; padding:12px 20px;}
}

@media(max-width:980px){
  .main-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:76vw;
    max-width:340px;
    height:100vh;
    flex-direction:column;
    align-items:flex-start;
    padding:110px 26px 40px;
    background:rgba(8,7,13,.98);
    backdrop-filter:blur(12px);
    gap:18px;
    transition:.35s ease;
    z-index:950;
    overflow-y:auto;
  }
  .top-nav .main-menu{border-radius:0 0 0 24px;}
  .scroll-nav .main-menu{border-radius:24px 0 0 24px;}
  .top-nav.open .main-menu,
  .scroll-nav.open .main-menu{right:0;}
  .menu-toggle{display:flex;}
  .nav-actions .btn-gradient{display:none;}
  .mobile-cta{display:block;}
  .main-menu li{width:100%;}
  .main-menu a{display:block; width:100%; padding:10px 0;}
  .dropdown,
  .sub-dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background:transparent;
    padding:6px 0 0 0;
  }
  .dropdown li,
  .sub-dropdown li{
    padding:8px 0 0 14px;
  }
  .has-dropdown > a::after{display:none;}
  .top-nav .brand img{height:52px;}
  .scroll-nav .brand img{height:32px;}
}

/* ===== KEYFRAMES ===== */
@keyframes heroTitle{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes heroText{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:900px){
  .hero{
    height:auto;
    min-height:88vh;
  }
  .hero video{
    width:100%;
  }
  .hero-content{
    padding:150px 6vw 120px;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  .hero-content>div{
    align-items:center;
  }
  .hero .btn-hero{
    align-self:center;
  }
}
@media(max-width:600px){
  .hero-content{
    padding:140px 5vw 90px;
  }
  .hero p{
    line-height:1.6;
    font-size:1rem;
  }
}


/* ================= TOP NAV ================= */
.top-nav{
  position:absolute;
  top:0;
  width:100%;
  padding:22px 0;
  z-index:10
}
.top-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  max-width:var(--container);
  padding:0 var(--page-pad);
}

/* ================= FLOATING NAV ================= */
.scroll-nav{
  position:fixed;
  top:-120px;
  width:100%;
  z-index:999;
  transition:.5s ease
}
.scroll-nav.active{top:20px}

.scroll-nav .nav-inner{
  max-width:1200px;
  width:calc(100% - 24px);
  margin:0 auto;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(14px);
  border-radius:60px;
  padding:14px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.6)
}

/* ================= BRAND ================= */
.brand{
  display:flex;
  align-items:center;
  gap:10px
}
.top-nav .brand img{height:60px}
.scroll-nav .brand img{height:36px}
.brand span{
  font-weight:600;
  font-size:18px
}

/* ================= MENU ================= */
.main-menu{
  display:flex;
  gap:24px;
  list-style:none
}
.main-menu li{
  position:relative
}
.main-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding:6px 0
}

/* underline animation */
.main-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  transition:.35s ease
}
.main-menu li:hover>a::after{
  width:100%
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}
.menu-toggle{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  cursor:pointer;
  transition:.3s ease;
  padding:0;
}
.menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:.3s ease;
}
.menu-toggle:focus-visible{
  outline:2px solid #a855f7;
  outline-offset:3px;
}
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:900;
}
body.nav-open .menu-overlay{
  opacity:1;
  visibility:visible;
}
.mobile-cta{
  display:none;
}
.mobile-cta .btn-gradient{
  width:100%;
  text-align:center;
}
/* ================= DROPDOWN ================= */
@media(min-width:981px){
  .main-menu > .has-dropdown{position:static;}
  .dropdown{
    position:absolute;
    left:50%;
    top:calc(100% + 18px);
    transform:translate(-50%,18px);
    width:min(1180px,calc(100vw - 48px));
    background:linear-gradient(180deg,#0b0f2a 0%,#070714 55%,#020203 100%);
    padding:60px 60px 48px;
    border-radius:24px;
    opacity:0;
    visibility:hidden;
    transition:opacity .35s ease, transform .35s ease, visibility .35s ease;
    box-shadow:0 25px 70px rgba(0,0,0,.6);
    border:1px solid rgba(255,255,255,.06);
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px;
    z-index:990;
  }
  .scroll-nav .dropdown{top:calc(100% + 14px);}
  .has-dropdown:hover>.dropdown{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
  }
  .dropdown li{
    padding:0;
    list-style:none;
  }
  .dropdown a{
    font-size:15px;
  }

  /* ================= SUB DROPDOWN ================= */
  .dropdown .has-sub{position:static;}
  .has-sub > a{
    display:block;
    color:var(--purple);
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    margin-bottom:24px;
    text-decoration:none;
  }
  .sub-dropdown{
    position:static;
    background:transparent;
    min-width:0;
    border-radius:0;
    padding:0;
    opacity:1;
    visibility:visible;
    transform:none;
    transition:none;
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .sub-dropdown a{
    color:#cfcfcf;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
    transition:color .25s ease, transform .25s ease;
  }
  .sub-dropdown a::before{
    content:"•";
    color:var(--purple);
    font-size:18px;
    line-height:1;
    display:inline-block;
  }
  .sub-dropdown a:hover{
    color:#fff;
    transform:translateX(6px);
  }
}

/* ================= BUTTON ================= */
.btn-gradient{
  background:linear-gradient(135deg,#a855f7,#ec4899);
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:30px;
  cursor:pointer;
  display:inline-block;
  text-decoration:none
}
.hero .btn-hero{
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color:#000;
  border:none;
  padding:16px 28px;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  align-self:flex-start;
  box-shadow:0 10px 40px rgba(0,0,0,.28)
}
/* ================= CHAT ================= */
.chat-box{
  position:fixed;
  right:20px;
  bottom:80px;
  width:280px;
  background:#fff;
  color:#000;
  border-radius:16px;
  padding:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.4)
}
.chat-box button{
  width:100%;
  margin-top:8px;
  border-radius:20px;
  border:1px solid #a855f7;
  background:transparent;
  color:#a855f7;
  padding:8px
}

/* demo scroll */
.section{
  height:140vh;
  background:linear-gradient(120deg,#1a002a,#000)
}
/* ================= SIDE SOCIAL ================= */
.side-social{
  position:fixed;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  opacity:0;
  pointer-events:none;
  transition:.5s ease;
  z-index:999;
}

.side-social.active{
  opacity:1;
  pointer-events:auto;
}

.side-social a{
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  transition:.35s ease;
  position:relative;
}

/* Glow ring */
.side-social a::after{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:50%;
  opacity:0;
  transition:.35s ease;
}

/* Hover animation */
.side-social a:hover{
  transform:scale(1.15);
  background:#fff;
  color:#000;
}

.side-social a:hover::after{
  opacity:1;
}

/* Platform glow colors */
.linkedin:hover::after{
  background:rgba(10,102,194,.5);
  filter:blur(12px);
}

.instagram:hover::after{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  filter:blur(12px);
}

.facebook:hover::after{
  background:rgba(24,119,242,.5);
  filter:blur(12px);
}

.youtube:hover::after{
  background:rgba(255,0,0,.5);
  filter:blur(12px);
}

@media(max-width:900px){
  .side-social{
    display:none;
  }
}
/* ================= OUR WORK SECTION ================= */

.our-work-section {
    padding: 100px var(--page-pad);
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: slowGlow 14s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

.container {
      max-width: var(--container);
      margin: auto;
      padding: 0 var(--page-pad);
  }

.section-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 35px;
}

.section-label .dot {
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
    margin-right: 10px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.service-item {
    padding: 16px 22px;
    border: 1px solid #333;
    border-radius: 30px;
    color: #ccc;
    cursor: pointer;
    transition: 0.35s ease;
    transform-origin: center;
}

.service-item:hover {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    border-color: #a855f7;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(132, 76, 255, 0.35);
}
.fade-up {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: var(--delay, 0s);
}


/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.service-item {
    padding: 16px 22px;
    border: 1px solid #333;
    border-radius: 30px;
    color: #ccc;
    cursor: pointer;
    transition: 0.35s ease;
    transform-origin: center;
}

.service-item:hover {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    border-color: #a855f7;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(132, 76, 255, 0.35);
}
.fade-up {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: var(--delay, 0s);
}

.ux-hero {
  min-height: 100vh;
  background: radial-gradient(circle at center right, #4b0c3f, #000 65%);
  display: flex;
  align-items: center;
  padding: 90px 80px;
}

.ux-hero-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 70px;
}

/* LEFT CONTENT */
.ux-left {
  flex: 1.3;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
}

.section-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #a855f7;
  border-radius: 50%;
  margin-right: 10px;
}

.ux-left h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}

.ux-left p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 20px;
  max-width: 720px;
}

.ux-left strong {
  color: #fff;
}

/* RIGHT FORM */
.ux-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  width: 100%;
  max-width: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.form-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  display:flex;
  align-items:center;
  gap:8px;
  letter-spacing:0.3px;
  position:relative;
  animation:titlePop .75s ease 0.1s both;
}

.form-card input,
.form-card textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.form-card textarea {
  height: 90px;
  resize: none;
}

.range-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ccc;
  margin: 10px 0;
}

input[type="range"] {
  width: 100%;
  margin-bottom: 20px;
}

.form-card button {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: none;
  padding: 12px;
  width: 120px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.form-card button:hover {
  opacity: 0.9;
}

@keyframes titlePop{
  from{opacity:0; transform:translateY(10px) scale(.98);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ux-hero-content {
    flex-direction: column;
  }

  .ux-left h1 {
    font-size: 40px;
  }

  .ux-hero {
    padding: 70px 25px;
  }

  .ux-right {
    justify-content: flex-start;
  }
}

/* Clients grid */
.client-grid{
  margin:22px auto 28px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:14px;
  max-width:950px;
  justify-items:center;
}
.client-card{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  text-decoration:none;
  color:#fff;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.client-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.3);
  border-color:rgba(168,85,247,.4);
}
.client-card h4{
  margin:0 0 4px;
  font-size:16px;
}
.client-card p{
  margin:0;
  color:#cfcfcf;
  font-size:13px;
  line-height:1.4;
}
.client-dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  margin-top:4px;
  background:linear-gradient(135deg,#a855f7,#22d3ee);
  flex-shrink:0;
}

/* Services include section */
.services-include{
  padding:40px 0 20px;
  display:flex;
  justify-content:center;
}
.include-inner{
  width:100%;
  max-width:1000px;
  text-align:center;
}
.include-head h2{
  font-size:28px;
  margin-bottom:8px;
}
.include-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.include-card{
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  text-align:left;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.include-card h4{
  margin:0 0 6px;
  color:#fff;
}
.include-card p{
  margin:0;
  color:#cfcfcf;
  font-size:13px;
  line-height:1.5;
}
.include-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(0,0,0,.25);
  border-color:rgba(168,85,247,.4);
}


.gravity-section {
  background: radial-gradient(circle at right, #3a2a14, #0b0c10 60%);
  padding: 80px 70px;
  overflow: hidden;
}

.gravity-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT */
.gravity-text {
  width: 40%;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.8;
  animation: fadeLeft 1.2s ease forwards;
  opacity: 0;
}
.gravity-text p{
  opacity:0;
  animation:textRise .9s ease forwards;
}
.gravity-text p:nth-of-type(2){animation-delay:.15s;}
.gravity-text p:nth-of-type(3){animation-delay:.3s;}

.word-anim span{
  display:inline-block;
  opacity:0;
  transform:translateY(8px);
  animation:wordFade .55s ease forwards;
}

[data-animate]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
}
[data-animate].show{
  opacity:1;
  transform:translateY(0);
}

/* VISUAL */
.gravity-visual {
  width: 55%;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:center;
  animation: fadeRight 1.2s ease forwards;
  opacity: 0;
}

.gravity-visual img {
  width:48%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  transition: transform .6s ease, box-shadow .6s ease;
}

.img-main {
  transform: rotate(-6deg);
}

.img-float {
  transform: rotate(8deg);
}

.gravity-visual img:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gravity-text p{
  opacity:0;
  animation:textRise .9s ease forwards;
}
.gravity-text p:nth-of-type(2){animation-delay:.15s;}
.gravity-text p:nth-of-type(3){animation-delay:.3s;}

@keyframes textRise{
  from{opacity:0; transform:translateY(14px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes wordFade{
  to{opacity:1; transform:translateY(0);}
}

@keyframes float {
  0% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
  100% { transform: translateY(0) rotate(10deg); }
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .gravity-container {
    flex-direction: column;
  }
  .gravity-text,
  .gravity-visual {
    width: 100%;
  }
  .img-float {
    position: relative;
    left: 0;
    bottom: 0;
    width: 70%;
    margin-top: 20px;
  }
}




/* UX contact form sizing */
.ux-right .form-card{
  max-width:360px;
  min-height:599px;
  padding:20px;
}

