body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}
/* ================= HEADER ================= */
.header{
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:99;
  padding:16px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
}

.logo {
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 20px;
}

.header a {
  text-decoration: none;
  margin-left: 12px;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* VIDEO + SLIDES */
.hero video,
.hero .slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
}

.hero .slides img {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero .slides img.active {
  opacity: 1;
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

/* Center text */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-box {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 40px;
  color: #fff;
  max-width: 780px;
  animation: fadeUp 1.2s ease;
}

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

.hero-box h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
}

.hero-box p {
  font-size: 18px;
  margin-top: 16px;
}

/* ================= SPLIT SECTION ================= */
.split {
  padding: 90px 20px;
}

.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Animated text */
.text-rotate {
  font-size: 34px;
  font-weight: 700;
  min-height: 90px;
}

.fade-text {
  animation: fadeText 3s infinite;
}

@keyframes fadeText {
  0% { opacity: 0; transform: translateY(20px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px); }
}

/* ===== HERO BACKGROUND ===== */
.hero-bg video,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg .active {
  opacity: 1;
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
  );
}

/* ===== HERO TEXT ===== */
.hero-left {
  text-align: left;
}

.hero-rotate {
  font-size: clamp(42px, 6vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #646781;
  min-height: 160px;
  letter-spacing: -1px;
}

.hero-rotate span {
  display: inline-block;
  animation: letterUp .6s ease forwards;
}

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

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,.85);
}

/* ===== CIRCLE SLIDER (FIXED CENTER) ===== */
/* ===== PERFECT ROUND IMAGE ===== */
.circle-slider {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
  background: #000;
}

.circle-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: center;  
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 5s ease;
}

.circle-slider img.active {
  opacity: 1;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s ease;
}

 

/* MOBILE */
@media (max-width: 768px) {
  .hero-left {
    text-align: center;
  }
  .hero-rotate {
    font-size: 38px;
    min-height: 130px;
  }
  .circle-slider {
    width: 240px;
    height: 240px;
  }
}


/* ================= FEATURES ================= */
.features {
  background: #fff;
  padding: 90px 20px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

/* ================= CTA ================= */
.final {
  padding: 90px 20px;
  background: linear-gradient(135deg,#0d6efd,#00ffae);
  color: #fff;
  text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .split-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .circle-slider {
    width: 240px;
    height: 240px;
  }
}
.steps {
  padding: 100px 20px;
  background: #fff;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}

.section-sub {
  max-width: 520px;
  margin: 14px auto 0;
  color: #666;
}

.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,.08);
  transition: .4s;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0d6efd,#00ffae);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}


.why {
  padding: 100px 20px;
  background: #f8f9fb;
}

.why-list {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.why-list li {
  margin-bottom: 12px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.why-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-6px);
}
.quotes {
  padding: 90px 20px;
}

.quote-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
/* ===== PARALLAX LAYERS ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-content {
  will-change: transform;
}


.hero1{
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:50px; padding-bottom: 50px;
}
/* ===== HERO BACKGROUND LAYERS ===== */
.hero1 {
  position: relative;
  overflow: hidden;
}

/* container above background */
.hero1 .container {
  position: relative;
  z-index: 2;
}

/* background wrapper */
.hero1-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== DOT GRID ===== */
.dot-grid {
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  animation: driftDots 40s linear infinite;
}

@keyframes driftDots {
  from { transform: translate(0,0); }
  to { transform: translate(-120px,-120px); }
}

/* ===== FLOWING LINES ===== */
.lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 40%,
      rgba(13,110,253,.15),
      transparent 60%
    );
  background-size: 200% 200%;
  animation: moveLines 12s ease-in-out infinite;
}

@keyframes moveLines {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== SOFT GLOW ===== */
.glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(13,110,253,.25),
    transparent 65%);
  top: 50%;
  left: 60%;
  transform: translate(-50%,-50%);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { opacity: .5; }
  50%     { opacity: .9; }
}

.hero-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* Door */
.file-door{
  width:300px;
  height:420px; margin: 0px auto;
  border-radius:12px;
  background:linear-gradient(135deg,#e9eef3,#fdfefe);
  box-shadow:0 40px 80px rgba(0,0,0,.15);
  position:relative;
  overflow:hidden;
  animation:float 4s ease-in-out infinite;
}
/* glow behind door */
.file-door::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle,
    rgba(13,110,253,.35),
    transparent 60%);
  z-index: -1;
  animation: doorAura 5s ease-in-out infinite;
}

@keyframes doorAura {
  0%,100% { opacity: .4; }
  50%     { opacity: .9; }
}


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

.file-door::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#0d6efd,#00ffae);
  opacity:.12;
}

.door-line{
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:2px;
  background:rgba(0,0,0,.08);
}

.door-handle{
  position:absolute;
  right:30px;
  top:50%;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#333;
}

/* Hero text */
.hero1-title{
  font-size:clamp(36px,5vw,60px);
  font-weight:900;
  line-height:1.05;
}

.hero-rotate1{
  font-size:26px;
  font-weight:600;
  min-height:42px;
  margin-top:20px;
}


.final{
  padding:100px 20px;
  text-align:center;
  background:linear-gradient(135deg,#0d6efd,#00ffae);
  color:#fff;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .hero-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }
  .file-door{
    margin:auto;
  }
}

/* ===== DOOR ANIMATION ===== */
.file-door {
  position: relative;
  perspective: 1200px;
}

.door-left,
.door-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg,#e9eef3,#fff);
  transition: transform 1.6s ease;
  transform-origin: left;
}

.door-right {
  right: 0;
  left: auto;
  transform-origin: right;
}

.file-door.open .door-left {
  transform: rotateY(-70deg);
}

.file-door.open .door-right {
  transform: rotateY(70deg);
}

.door-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle,rgba(13,110,253,.45),transparent 60%);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.file-door.open .door-light {
  opacity: 1;
}
/* ===== DOOR LATCH ===== */
.door-latch {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #555, #111);
  box-shadow:
    inset -2px -2px 4px rgba(255,255,255,.2),
    inset 2px 2px 4px rgba(0,0,0,.4),
    0 4px 8px rgba(0,0,0,.25);
  transition: transform .6s ease, opacity .4s ease;
}

/* latch turn */
.file-door.open .door-latch {
  transform: translateY(-50%) rotate(90deg);
  opacity: .6;
}

/* latch stem */
.door-latch::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #222;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-radius: 3px;
}


.main-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:#fff;
  padding:18px 0;
  box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.logo{
  font-weight:800;
  font-size:20px;
  letter-spacing:.5px;
}

.main-nav a{
  margin:0 18px;
  text-decoration:none;
  color:#333;
  font-weight:500;
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  left:0;
  bottom:-6px;
  background:#0d6efd;
  transition:.3s;
}

.main-nav a:hover::after{
  width:100%;
}





.hero-static{
  padding:160px 20px 100px;
  background:#f8f9fb;
}

.hero-title{
  font-size:clamp(36px,5vw,58px);
  font-weight:900;
}

.hero-desc{
  margin-top:20px;
  font-size:18px;
  color:#555;
  max-width:500px;
}

/* BOX WRAPPER */
.box-wrapper{
  position:relative;
  width:380px;
  height:380px;
  margin:auto;
}

/* ================= CENTER BOX PREMIUM ANIMATION ================= */

.storage-box{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:200px;
  height:200px;
  background:#fff;
  border-radius:30px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 40px 80px rgba(0,0,0,.12);
  text-align:center;
  z-index:2;

  /* NEW ANIMATION */
  animation: boxFloat 6s ease-in-out infinite;
  transition:.4s ease;
}


/* Soft breathing + floating */
@keyframes boxFloat{
  0%,100%{
    transform:translate(-50%,-50%) translateY(0) scale(1);
  }
  50%{
    transform:translate(-50%,-50%) translateY(-12px) scale(1.03);
  }
}
/* Glow Aura Behind Box */
.storage-box::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  background:radial-gradient(circle,
      rgba(13,110,253,.25),
      rgba(0,255,174,.15),
      transparent 70%);
  z-index:-1;
  border-radius:50%;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse{
  0%,100%{ opacity:.6; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.1); }
}
/* Hover Depth Effect */
.storage-box:hover{
  transform:translate(-50%,-50%) scale(1.07);
  box-shadow:0 50px 100px rgba(13,110,253,.35);
}
.storage-box i{
  font-size:42px;
  color:#0d6efd;
  animation: iconPulse 4s ease-in-out infinite;
}



@keyframes iconPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.1); }
}
/* SURROUNDING ICONS */
/* SURROUNDING ICONS */
.icon{
  position:absolute;
  width:72px;
  height:72px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
  cursor:pointer;
  transition:all .35s ease;
}

/* Icon symbol */
.icon i{
  font-size:26px;
  color:#0d6efd;
  transition:.3s ease;
}

/* Attractive floating motion */
.top-left{ top:0; left:40px; animation:float1 7s ease-in-out infinite; }
.top-right{ top:0; right:40px; animation:float2 8s ease-in-out infinite; }
.middle-left{ top:40%; left:0; transform:translateY(-50%); animation:float3 9s ease-in-out infinite; }
.middle-right{ top:40%; right:0; transform:translateY(-50%); animation:float4 7.5s ease-in-out infinite; }
.bottom-left{ bottom:0; left:40px; animation:float5 8.5s ease-in-out infinite; }
.bottom-right{ bottom:0; right:40px; animation:float6 9s ease-in-out infinite; }

/* Different float motions for natural feel */
@keyframes float1{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-16px); }
}
@keyframes float2{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-20px); }
}
@keyframes float3{
  0%,100%{ transform:translateY(-50%); }
  50%{ transform:translateY(calc(-50% - 18px)); }
}
@keyframes float4{
  0%,100%{ transform:translateY(-50%); }
  50%{ transform:translateY(calc(-50% - 14px)); }
}
@keyframes float5{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-22px); }
}
@keyframes float6{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-15px); }
}

/* Hover effect */
.icon:hover{
  transform:scale(1.12) translateY(-8px);
  box-shadow:0 25px 50px rgba(13,110,253,.35);
}

.icon:hover i{
  color:#0056ff;
}
   

/* Floating animation but keep base transform */
.top-left,
.top-right,
.bottom-left,
.bottom-right{
  animation: floatY 6s ease-in-out infinite;
}

.middle-left,
.middle-right{
  animation: floatYCenter 6s ease-in-out infinite;
}

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

@keyframes floatYCenter{
  0%{ transform: translateY(-50%); }
  50%{ transform: translateY(calc(-50% - 12px)); }
  100%{ transform: translateY(-50%); }
}


.top-left{ animation-delay:0s; }
.top-right{ animation-delay:.5s; }
.middle-left{ animation-delay:1s; }
.middle-right{ animation-delay:1.5s; }
.bottom-left{ animation-delay:2s; }
.bottom-right{ animation-delay:2.5s; }





.tooltip-text{
  position:absolute;
  bottom:90px;
  background:#111;
  color:#fff;
  padding:8px 14px;
  font-size:13px;
  border-radius:8px;
  white-space:nowrap;
  opacity:0;
  transform:translateY(10px);
  transition:.3s ease;
  pointer-events:none;

  /* IMPORTANT FIX */
  z-index: 9999;
}


.tooltip-text::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
  border-width:6px;
  border-style:solid;
  border-color:#111 transparent transparent transparent;
}

.icon:hover .tooltip-text{
  opacity:1;
  transform:translateY(0);
}





/* ================= COOL MODERN BACKGROUND ================= */

/* ================= DARK FUTURISTIC QUICK SHARE ================= */

.quick-share{
  position:relative;
  padding:130px 20px;
  overflow:hidden;
  background:linear-gradient(135deg,#0b0f1a,#111827);
  color:#fff;
}

/* Neon glow top left */
.quick-share::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  top:-250px;
  left:-250px;
  background:radial-gradient(circle,
      rgba(13,110,253,.4),
      transparent 70%);
  filter:blur(100px);
  z-index:0;
}

/* Neon glow bottom right */
.quick-share::after{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  bottom:-200px;
  right:-200px;
  background:radial-gradient(circle,
      rgba(0,198,255,.4),
      transparent 70%);
  filter:blur(100px);
  z-index:0;
}

/* Subtle tech grid overlay */
.quick-share .container::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:40px 40px;
  z-index:1;
  pointer-events:none;
}

/* Ensure content above glow/grid */
.quick-share .container{
  position:relative;
  z-index:2;
}

.quick-share .section-title{
  color:#fff;
}

.quick-share p{
  color:#cbd5e1;
}

.share-list li{
  color:#cbd5e1;
}




.share-box{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(20px);
  padding:40px;
  border-radius:24px;
  border:1px solid rgba(0,198,255,.3);
  box-shadow:0 0 40px rgba(0,198,255,.15);
  transition:.4s ease;
  color:#fff;
}

.share-box:hover{
  transform:translateY(-8px);
  box-shadow:0 0 60px rgba(0,198,255,.35);
}
 

.share-link{
  background:#0f172a;
  padding:12px;
  border-radius:8px;
  font-size:14px;
  border:1px solid rgba(0,198,255,.3);
  color:#00c6ff;
}

.share-list{
  list-style:none;
  padding:0;
  margin-top:20px;
}

.share-list li{
  margin-bottom:12px;
}


.modern-footer{
  background:#111;
  color:#fff;
  padding:80px 20px 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-grid ul{
  list-style:none;
  padding:0;
}

.footer-grid li{
  margin-bottom:8px;
  opacity:.8;
}

.footer-bottom{
  text-align:center;
  margin-top:50px;
  font-size:14px;
  opacity:.6;
}

@media(max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}


/* NEW POSITIONS */
.extra-top{
  top:-20px;
  left:40%;
  transform:translateX(-50%);
  animation:float7 8s ease-in-out infinite;
}

.extra-bottom{
  bottom:-20px;
  left:40%;
  transform:translateX(-50%);
  animation:float8 9s ease-in-out infinite;
}


@keyframes float7{
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(-18px); }
}

@keyframes float8{
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(-14px); }
}

.extra-top i,
.extra-bottom i{
  color:#20c997;   /* teal accent */
}



.box-wrapper{
  position:relative;
  z-index:1;
}

.storage-box{
  z-index:2;
}

.icon{
  z-index:3;
}

.tooltip-text{
  z-index:4;
}


/* ===== SOFT FLOATING EFFECT ===== */
.icon{
  animation: floatY 6s ease-in-out infinite;
  position:absolute;
  z-index: 5;
}

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



/* ================= PREMIUM FEATURES SECTION ================= */
 
.feature-card{
  background:#fff;
  padding:50px 30px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.4s ease;
  height:100%;
}

.feature-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(13,110,253,.15);
}

/* Icon circle */
.feature-icon{
  width:80px;
  height:80px;
  margin:0 auto 25px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0d6efd,#00c6ff);
  color:#fff;
  font-size:32px;
  box-shadow:0 15px 35px rgba(13,110,253,.25);
  transition:.4s ease;
}

/* Icon hover effect */
.feature-card:hover .feature-icon{
  transform:scale(1.1);
  box-shadow:0 20px 45px rgba(13,110,253,.35);
}

.feature-card h5{
  font-weight:700;
  margin-bottom:12px;
}

.feature-card p{
  color:#666;
  font-size:15px;
}




/* ================= HOW IT WORKS VISUAL ================= */

.how-it-works{
  padding:120px 20px;
  background:#f8f9fb;
}

.step-content{
  max-width:500px;
}

.step-badge{
  display:inline-block;
  padding:6px 14px;
  background:linear-gradient(135deg,#0d6efd,#00c6ff);
  color:#fff;
  border-radius:20px;
  font-size:13px;
  margin-bottom:15px;
}

.step-content h4{
  font-weight:700;
  margin-bottom:15px;
}

.step-content p{
  color:#555;
  font-size:15px;
}

/* Screen Preview */
.screen-preview{
  background:#fff;
  padding:20px;
  border-radius:24px;
  box-shadow:0 30px 60px rgba(0,0,0,.08);
  transition:.4s ease;
}

.screen-preview:hover{
  transform:translateY(-8px);
  box-shadow:0 40px 80px rgba(13,110,253,.15);
}

.screen-preview img{
  border-radius:16px;
}






@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }

    
}







.modern-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 30px;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-tagline {
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
  opacity: .85;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.footer-links a:hover {
  color: #0d6efd;
}

.footer-newsletter {
  max-width: 320px;
}

.footer-newsletter input {
  border-radius: 12px;
  border: none;
  padding: 10px 14px;
}

.footer-newsletter button {
  border-radius: 12px;
}

.footer-divider {
  border-color: rgba(255,255,255,.08);
}

.footer-bottom {
  font-size: 13px;
  opacity: .7;
}









/* ===== HERO ===== */
.hero1{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:100px;
}
/* ===== HERO BACKGROUND LAYERS ===== */
.hero1 {
  position: relative;
  overflow: hidden;
}

/* container above background */
.hero1 .container {
  position: relative;
  z-index: 2;
}

/* background wrapper */
.hero1-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== DOT GRID ===== */
.dot-grid {
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  animation: driftDots 40s linear infinite;
}

@keyframes driftDots {
  from { transform: translate(0,0); }
  to { transform: translate(-120px,-120px); }
}

/* ===== FLOWING LINES ===== */
.lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 40%,
      rgba(13,110,253,.15),
      transparent 60%
    );
  background-size: 200% 200%;
  animation: moveLines 12s ease-in-out infinite;
}

@keyframes moveLines {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== SOFT GLOW ===== */
.glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(13,110,253,.25),
    transparent 65%);
  top: 50%;
  left: 60%;
  transform: translate(-50%,-50%);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { opacity: .5; }
  50%     { opacity: .9; }
}

.hero1-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* Door */
  

@keyframes doorAura {
  0%,100% { opacity: .4; }
  50%     { opacity: .9; }
}


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

.file-door::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#0d6efd,#00ffae);
  opacity:.12;
}

.door-line{
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:2px;
  background:rgba(0,0,0,.08);
}

.door-handle{
  position:absolute;
  right:30px;
  top:50%;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#333;
}

/* Hero text */
.hero1-title{
  font-size:clamp(36px,5vw,60px);
  font-weight:900;
  line-height:1.05;
}

.hero1-rotate{
  font-size:26px;
  font-weight:600;
  min-height:42px;
  margin-top:20px;
}

/* ===== STRIP ===== */
.strip{
  padding:80px 20px;
  background:#f7f9fb;
}

.strip-card{
  background:#fff;
  border-radius:20px;
  padding:30px;
  box-shadow:0 25px 50px rgba(0,0,0,.08);
}

/* ===== STEPS ===== */
.steps{
  padding:100px 20px;
}

.step{
  background:#fff;
  padding:34px;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
  transition:.3s;
}

.step:hover{
  transform:translateY(-10px);
}

.step-num{
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(135deg,#0d6efd,#00ffae);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:16px;
}

/* ===== FINAL ===== */
.final{
  padding:100px 20px;
  text-align:center;
  background:linear-gradient(135deg,#0d6efd,#00ffae);
  color:#fff;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .hero1-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }
  .file-door{
    margin:auto;
  }
}

/* ===== DOOR ANIMATION ===== */
.file-door {
  position: relative;
  perspective: 1200px;
}

.door-left,
.door-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg,#e9eef3,#fff);
  transition: transform 1.6s ease;
  transform-origin: left;
}

.door-right {
  right: 0;
  left: auto;
  transform-origin: right;
}

.file-door.open .door-left {
  transform: rotateY(-70deg);
}

.file-door.open .door-right {
  transform: rotateY(70deg);
}

.door-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle,rgba(13,110,253,.45),transparent 60%);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.file-door.open .door-light {
  opacity: 1;
}
/* ===== DOOR LATCH ===== */
.door-latch {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #555, #111);
  box-shadow:
    inset -2px -2px 4px rgba(255,255,255,.2),
    inset 2px 2px 4px rgba(0,0,0,.4),
    0 4px 8px rgba(0,0,0,.25);
  transition: transform .6s ease, opacity .4s ease;
}

/* latch turn */
.file-door.open .door-latch {
  transform: translateY(-50%) rotate(90deg);
  opacity: .6;
}

/* latch stem */
.door-latch::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #222;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-radius: 3px;
}

