/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

/* ===== HEADER ===== */
.rd-header{
  position:fixed;
  top:0;
  width:100%;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.85);
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
  z-index:999;
}

.rd-container{
  max-width:1200px;
  margin:auto;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.rd-logo{
  font-size:24px;
  font-weight:700;
  letter-spacing:0.5px;
}
.rd-logo span{
  color:#ff6f00;
}

/* NAV */
.rd-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.rd-nav a{
  text-decoration:none;
  color:#1f1f1f;
  font-size:15px;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.rd-nav a::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:#ff6f00;
  transition:.3s;
}

.rd-nav a:hover::after{
  width:100%;
}

/* CTA BUTTON */
.rd-btn{
  background:linear-gradient(135deg,#ff6f00,#ff8f00);
  color:#fff !important;
  padding:10px 24px;
  border-radius:40px;
  box-shadow:0 8px 20px rgba(255,111,0,0.35);
}

/* HAMBURGER */
.rd-hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.rd-hamburger span{
  width:26px;
  height:3px;
  background:#1f1f1f;
  border-radius:10px;
}

/* ===== MOBILE ===== */
@media(max-width:900px){

  .rd-hamburger{
    display:flex;
  }

  .rd-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:25px 20px;
    gap:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
    display:none;
    animation:slideDown .3s ease;
  }

  .rd-nav.active{
    display:flex;
  }

  .rd-btn{
    margin-top:10px;
  }
}

@keyframes slideDown{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* PUSH CONTENT BELOW HEADER */
body{
  padding-top:90px;
}
/* ===== FOOTER ===== */
.rd-footer{
  background:linear-gradient(180deg,#0f0f0f,#050505);
  color:#cfcfcf;
  padding:70px 0 0;
  margin-top:100px;
}

.rd-footer-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
}

.rd-footer-col h4{
  color:#ffffff;
  font-size:18px;
  margin-bottom:18px;
}

.rd-footer-col ul{
  list-style:none;
  padding:0;
}

.rd-footer-col ul li{
  font-size:14px;
  margin-bottom:12px;
  color:#aaa;
}

/* BRAND COLUMN */
.rd-footer-col.brand h3{
  font-size:26px;
  font-weight:700;
  color:#fff;
}
.rd-footer-col.brand span{
  color:#ff6f00;
}
.rd-footer-col.brand p{
  margin:15px 0 22px;
  font-size:14px;
  line-height:1.7;
  color:#aaa;
}

/* CTA */
.rd-footer-cta{
  display:inline-block;
  background:linear-gradient(135deg,#ff6f00,#ff8f00);
  color:#fff;
  padding:12px 28px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(255,111,0,0.35);
}

/* BOTTOM BAR */
.rd-footer-bottom{
  margin-top:60px;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  padding:18px 0;
  font-size:13px;
  color:#888;
}

/* ===== MOBILE ===== */
@media(max-width:900px){
  .rd-footer-container{
    grid-template-columns:1fr;
    gap:35px;
  }

  .rd-footer{
    text-align:left;
  }
}
/* ===== GLOBAL ===== */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.section{
  padding:90px 0;
}

.soft-bg{
  background:#f7f8fc;
}

.section-head{
  text-align:center;
  margin-bottom:55px;
}
.section-head h2{
  font-size:34px;
}
.section-head p{
  margin-top:8px;
  color:#666;
}

/* ================= PREMIUM ANIMATED HERO ================= */

.pa-hero{
  position:relative;
  background:#ffffff;
  padding:190px 0 150px;
  overflow:hidden;
}

/* Animated ambient background */
.pa-bg{
  position:absolute;
  border-radius:50%;
  filter:blur(140px);
  animation:float 12s ease-in-out infinite alternate;
}

.pa-bg-1{
  width:520px;
  height:520px;
  background:rgba(255,111,0,0.18);
  top:-240px;
  left:-240px;
}

.pa-bg-2{
  width:560px;
  height:560px;
  background:rgba(80,130,255,0.14);
  bottom:-260px;
  right:-260px;
  animation-delay:2s;
}

@keyframes float{
  from{transform:translateY(0px);}
  to{transform:translateY(40px);}
}

/* Container */
.pa-container{
  position:relative;
  z-index:2;
  max-width:1300px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:110px;
  align-items:center;
}

/* LEFT CONTENT */
.pa-eyebrow{
  font-size:13px;
  font-weight:600;
  color:#ff6f00;
  letter-spacing:1px;
  text-transform:uppercase;
}

.pa-content h1{
  margin-top:22px;
  font-size:64px;
  line-height:1.06;
  font-weight:700;
  color:#111;
  letter-spacing:-1px;
}

.pa-content h1 span{
  color:#ff6f00;
}

.pa-content p{
  margin-top:28px;
  max-width:600px;
  font-size:18px;
  line-height:1.75;
  color:#555;
}

/* Feature animation */
.pa-features{
  margin-top:26px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.pa-features span{
  background:#f6f7fb;
  padding:10px 20px;
  border-radius:40px;
  font-size:14px;
  opacity:0;
  transform:translateY(10px);
  animation:fadeUp .6s ease forwards;
}

.pa-features span:nth-child(1){animation-delay:.2s;}
.pa-features span:nth-child(2){animation-delay:.35s;}
.pa-features span:nth-child(3){animation-delay:.5s;}
.pa-features span:nth-child(4){animation-delay:.65s;}
.pa-features span:nth-child(5){animation-delay:.8s;}

/* CTA */
.pa-actions{
  margin-top:46px;
  display:flex;
  gap:22px;
}

.pa-btn{
  padding:16px 48px;
  border-radius:60px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

.pa-primary{
  background:linear-gradient(135deg,#ff6f00,#ff8f00);
  color:#fff;
  box-shadow:0 18px 40px rgba(255,111,0,0.35);
}

.pa-outline{
  border:1.8px solid #ff6f00;
  color:#ff6f00;
}

/* RIGHT VISUAL */
.pa-dashboard{
  background:#ffffff;
  padding:42px;
  border-radius:30px;
  box-shadow:0 40px 90px rgba(0,0,0,0.08);
}

.pa-row{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid #eee;
  font-size:15px;
}

.pa-row:last-child{border-bottom:none;}
.pa-row span{color:#777;}
.pa-row strong{color:#111;}
.pa-row.highlight strong{color:#ff6f00;}

/* Entrance animations */
.animate{
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp .8s ease forwards;
}

.delay-1{animation-delay:.25s;}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE */
@media(max-width:900px){
  .pa-container{
    grid-template-columns:1fr;
    gap:70px;
  }

  .pa-content h1{
    font-size:40px;
  }

  .pa-actions{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* ================= FUTURISTIC FEATURES ================= */

.fx-section{
  background:
    radial-gradient(circle at top right, #f4f7ff, transparent 45%),
    radial-gradient(circle at bottom left, #fff3e9, transparent 45%),
    #ffffff;
  padding:160px 0 140px;
}

/* container */
.fx-container{
  max-width:1280px;
  margin:auto;
  padding:0 24px;
}

/* heading */
.fx-head{
  max-width:640px;
  margin-bottom:80px;
}

.fx-head h2{
  font-size:52px;
  font-weight:700;
  line-height:1.1;
  color:#111;
}

.fx-head h2 span{
  color:#ff6f00;
}

.fx-head p{
  margin-top:18px;
  font-size:18px;
  color:#555;
  line-height:1.7;
}

/* grid */
.fx-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:36px;
}

/* cards */
.fx-card{
  position:relative;
  background:#ffffff;
  padding:36px 34px;
  border-radius:28px;
  box-shadow:0 25px 60px rgba(0,0,0,0.06);
  transition:.45s ease;
  overflow:hidden;
}

/* animated border glow */
.fx-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:28px;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,111,0,0.4),
    transparent
  );
  opacity:0;
  transition:.45s;
}

.fx-card:hover::before{
  opacity:1;
}

/* hover lift */
.fx-card:hover{
  transform:translateY(-12px);
}

/* icon */
.fx-icon{
  font-size:32px;
  margin-bottom:18px;
}

/* title */
.fx-card h3{
  font-size:20px;
  margin-bottom:12px;
  color:#111;
}

/* text */
.fx-card p{
  font-size:15px;
  line-height:1.7;
  color:#555;
}

/* tag */
.fx-tag{
  display:inline-block;
  margin-top:18px;
  font-size:13px;
  padding:8px 16px;
  border-radius:40px;
  background:#f6f7fb;
  color:#333;
}

/* MOBILE */
@media(max-width:900px){
  .fx-head h2{
    font-size:38px;
  }
}
.fx-card{
  cursor:pointer;
}

.fx-card::after{
  content:"→";
  position:absolute;
  right:28px;
  bottom:24px;
  font-size:20px;
  color:#ff6f00;
  opacity:0;
  transform:translateX(-5px);
  transition:.3s ease;
}

.fx-card:hover::after{
  opacity:1;
  transform:translateX(0);
}
/* ================= QUERY POPUP ================= */

.qp-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:.4s ease;
}

.qp-overlay.active{
  opacity:1;
  pointer-events:auto;
}

.qp-modal{
  background:#ffffff;
  width:100%;
  max-width:420px;
  padding:36px;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
  position:relative;
  transform:scale(.9);
  transition:.4s ease;
}

.qp-overlay.active .qp-modal{
  transform:scale(1);
}

.qp-close{
  position:absolute;
  top:16px;
  right:18px;
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
  color:#999;
}

.qp-modal h3{
  font-size:24px;
  margin-bottom:6px;
}

.qp-modal p{
  font-size:14px;
  color:#666;
  margin-bottom:22px;
}

/* FORM */
.qp-form{
  display:grid;
  gap:14px;
}

.qp-form input{
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:14px;
}

.qp-form button{
  margin-top:10px;
  background:linear-gradient(135deg,#ff6f00,#ff8f00);
  color:#fff;
  padding:14px;
  border-radius:40px;
  border:none;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(255,111,0,0.35);
}
/* ================= HOW WE WORK ================= */
/* ================= GROWTH SYSTEM ================= */

.gs-section{
  background:#ffffff;
  padding:200px 0 180px;
  overflow:hidden;
}

.gs-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:120px;
  align-items:center;
}

/* LEFT */
.gs-left h2{
  font-size:56px;
  font-weight:700;
  line-height:1.05;
  color:#111;
}

.gs-left h2 span{
  color:#ff6f00;
}

.gs-left p{
  margin-top:24px;
  font-size:18px;
  line-height:1.7;
  color:#555;
  max-width:520px;
}

.gs-list{
  margin-top:30px;
  list-style:none;
  padding:0;
}

.gs-list li{
  font-size:16px;
  margin-bottom:12px;
  color:#333;
  padding-left:28px;
  position:relative;
}

.gs-list li::before{
  content:"✦";
  position:absolute;
  left:0;
  color:#ff6f00;
}

/* RIGHT – ORBIT SYSTEM */
.gs-right{
  position:relative;
  height:380px;
}

.gs-orbit{
  position:absolute;
  inset:0;
  margin:auto;
  width:300px;
  height:300px;
  border-radius:50%;
  border:1px dashed rgba(0,0,0,0.1);
  animation:spin 18s linear infinite;
}

/* Nodes */
.gs-node{
  position:absolute;
  background:#ffffff;
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  font-weight:500;
}

/* positions */
.n1{ top:-16px; left:50%; transform:translateX(-50%); }
.n2{ right:-20px; top:50%; transform:translateY(-50%); }
.n3{ bottom:-16px; left:50%; transform:translateX(-50%); }
.n4{ left:-20px; top:50%; transform:translateY(-50%); }
.n5{ top:50%; left:50%; transform:translate(-50%,-50%); background:#ff6f00; color:#fff; }

/* animation */
@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* MOBILE */
@media(max-width:900px){
  .gs-wrap{
    grid-template-columns:1fr;
    gap:80px;
  }

  .gs-left h2{
    font-size:38px;
  }

  .gs-right{
    height:300px;
  }
}
/* ================= INDUSTRIES SECTION ================= */

.is-section{
  background:
    radial-gradient(circle at top right, #f4f7ff, transparent 45%),
    radial-gradient(circle at bottom left, #fff3e9, transparent 45%),
    #ffffff;
  padding:200px 0 180px;
}

.is-container{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

/* header */
.is-head{
  max-width:640px;
  margin-bottom:100px;
}

.is-head h2{
  font-size:54px;
  font-weight:700;
  line-height:1.05;
  color:#111;
}

.is-head h2 span{
  color:#ff6f00;
}

.is-head p{
  margin-top:20px;
  font-size:18px;
  color:#555;
  line-height:1.7;
}

/* grid */
.is-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:60px;
}

/* item */
.is-item{
  padding-left:28px;
  border-left:3px solid rgba(255,111,0,0.25);
  transition:.4s ease;
}

.is-item h3{
  font-size:22px;
  margin-bottom:10px;
  color:#111;
}

.is-item p{
  font-size:15px;
  color:#555;
  line-height:1.7;
}

/* hover */
.is-item:hover{
  transform:translateY(-6px);
  border-left-color:#ff6f00;
}

/* mobile */
@media(max-width:768px){
  .is-head h2{
    font-size:38px;
  }

  .is-grid{
    gap:40px;
  }
}
/* ================= WHY RANKOHOLIC ================= */

.wr-section{
  background:
    linear-gradient(to bottom, #ffffff 0%, #fafbff 100%);
  padding:200px 0 180px;
}

.wr-container{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:120px;
  align-items:start;
}

/* LEFT */
.wr-left h2{
  font-size:54px;
  font-weight:700;
  line-height:1.05;
  color:#111;
}

.wr-left h2 span{
  color:#ff6f00;
}

.wr-left p{
  margin-top:24px;
  font-size:18px;
  line-height:1.7;
  color:#555;
  max-width:520px;
}

.wr-points{
  margin-top:30px;
  list-style:none;
  padding:0;
}

.wr-points li{
  font-size:16px;
  margin-bottom:14px;
  color:#333;
  padding-left:28px;
  position:relative;
}

.wr-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ff6f00;
}

/* RIGHT */
.wr-right{
  display:flex;
  flex-direction:column;
  gap:60px;
}

.wr-highlight{
  padding-left:32px;
  border-left:3px solid rgba(255,111,0,0.25);
}

.wr-highlight.alt{
  border-left-color:rgba(80,120,255,0.25);
}

.wr-label{
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#ff6f00;
}

.wr-highlight h3{
  margin-top:12px;
  font-size:24px;
  color:#111;
}

.wr-highlight p{
  margin-top:10px;
  font-size:15px;
  line-height:1.7;
  color:#555;
}

/* mobile */
@media(max-width:900px){
  .wr-container{
    grid-template-columns:1fr;
    gap:80px;
  }

  .wr-left h2{
    font-size:38px;
  }
}
/* ================= CLEAN PREMIUM CTA ================= */

.cta-clean{
  background:
    linear-gradient(to bottom, transparent, #ffffff 30%, #ffffff 70%, transparent);
  padding:220px 0 200px;
}

.cta-clean-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:120px;
  align-items:center;
}

/* LEFT */
.cta-clean-content h2{
  font-size:54px;
  line-height:1.05;
  font-weight:700;
  color:#111;
}

.cta-clean-content h2 span{
  color:#ff6f00;
}

.cta-clean-content p{
  margin-top:24px;
  font-size:18px;
  line-height:1.7;
  color:#555;
  max-width:520px;
}

.cta-clean-content ul{
  margin-top:30px;
  list-style:none;
  padding:0;
}

.cta-clean-content li{
  font-size:15px;
  margin-bottom:12px;
  padding-left:26px;
  position:relative;
  color:#333;
}

.cta-clean-content li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ff6f00;
}

/* FORM */
.cta-clean-form{
  background:#ffffff;
  padding:40px;
  border-radius:24px;
  box-shadow:0 30px 70px rgba(0,0,0,0.08);
}

.cta-clean-form form{
  display:grid;
  gap:18px;
}

.cta-clean-form input,
.cta-clean-form select{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:14px;
}

.cta-clean-form input:focus,
.cta-clean-form select:focus{
  border-color:#ff6f00;
  outline:none;
}

.cta-clean-form button{
  margin-top:10px;
  padding:16px;
  border-radius:40px;
  border:none;
  font-size:15px;
  font-weight:600;
  color:#fff;
  background:linear-gradient(135deg,#ff6f00,#ff8f00);
  box-shadow:0 18px 40px rgba(255,111,0,0.35);
  cursor:pointer;
}

/* MOBILE */
@media(max-width:900px){
  .cta-clean-wrap{
    grid-template-columns:1fr;
    gap:80px;
  }

  .cta-clean-content h2{
    font-size:38px;
  }
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .hero h1{font-size:34px;}
  .hero-actions{flex-direction:column;}
}
/* ================= RESET & BASE ================= */

.au-hero,
.au-section {
  position: relative;
  overflow: hidden;
}

.au-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* smooth font rendering */
body {
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
  color: #111;
}

/* ================= HERO ================= */

.au-hero {
  padding: 220px 0 160px;
  background:
    radial-gradient(circle at top right, rgba(255,111,0,0.12), transparent 45%),
    radial-gradient(circle at bottom left, rgba(80,120,255,0.10), transparent 45%),
    #ffffff;
}

.au-hero h1 {
  font-size: 72px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.au-hero h1 span {
  color: #ff6f00;
}

.au-hero p {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  max-width: 680px;
}

/* ================= SECTION BASE ================= */

.au-section {
  padding: 180px 0 160px;
}

/* section blend (kills visible joints) */
.au-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
  z-index: -1;
}

/* soft background variant */
.soft-bg {
  background:
    linear-gradient(to bottom, #ffffff 0%, #fafbff 100%);
}

/* ================= TWO COLUMN ================= */

.au-two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 140px;
  align-items: start;
}

.au-section h2 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.au-section p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 22px;
}

/* ================= WHAT WE DO ================= */

.au-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.au-list div {
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  color: #222;
  transition: transform .3s ease;
}

.au-list div::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ff6f00;
  font-size: 18px;
}

.au-list div:hover {
  transform: translateX(6px);
}

/* ================= APPROACH ================= */

.au-wide {
  max-width: 760px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.8;
}

.au-approach {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.au-approach span {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  background:
    linear-gradient(135deg, rgba(255,111,0,0.12), rgba(255,255,255,0));
  border: 1px solid rgba(255,111,0,0.25);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}

.au-approach span:hover {
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: #fff;
  transform: translateY(-4px);
}

/* ================= WHY RANKOHOLIC ================= */

.au-reasons {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.au-reasons p {
  font-size: 17px;
  color: #333;
  padding-left: 32px;
  position: relative;
}

.au-reasons p::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6f00;
  font-weight: 700;
}

/* ================= MICRO INTERACTIONS ================= */

.au-section h2,
.au-hero h1 {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s ease forwards;
}

.au-section:nth-child(even) h2 {
  animation-delay: .15s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .au-hero {
    padding: 170px 0 120px;
  }

  .au-hero h1 {
    font-size: 42px;
  }

  .au-section {
    padding: 130px 0 110px;
  }

  .au-two-col {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .au-section h2 {
    font-size: 34px;
  }

}
/* ===== GLOBAL SECTION JOIN FIX ===== */

/* har section ko overlap + smooth curve */
section {
  position: relative;
  z-index: 1;
}

/* jo section dark ke baad aa raha ho */
.soft-join {
  margin-top: -100px;
  padding-top: 140px;
  background: #ffffff;
  border-radius: 100px 100px 0 0;
  z-index: 2;
}

/* white sections ke beech spacing fix */
.fx-section,
.gs-section,
.is-section,
.wr-section,
.cta-clean {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* hero ke baad first section */
.pa-hero + section {
  margin-top: -120px;
  padding-top: 160px;
  border-radius: 120px 120px 0 0;
  background: #ffffff;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,sans-serif;
}

body{
  background:#f6f8fb;
  color:#0f172a;
}

/* ================= BLOG HERO ================= */
/* ================= EDITORIAL WHITE HERO ================= */

.blog-hero-editorial{
  background:#ffffff;
  padding:140px 0 120px;
  border-bottom:1px solid #f1f5f9;
}

.hero-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center;
  gap:80px;
}

/* LEFT */
.hero-left .hero-label{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  color:#ff6f00;
  letter-spacing:.3px;
  margin-bottom:24px;
}

.hero-left h1{
  font-size:54px;
  line-height:1.12;
  font-weight:700;
  color:#0f172a;
}

.hero-left h1 span{
  color:#ff6f00;
}

.hero-left p{
  margin-top:26px;
  max-width:520px;
  font-size:18px;
  line-height:1.7;
  color:#475569;
}

/* RIGHT DECOR */
.hero-right{
  position:relative;
  height:260px;
}

.hero-box{
  position:absolute;
  width:260px;
  height:180px;
  border-radius:26px;
  background:linear-gradient(135deg,#fff7ed,#ffedd5);
  top:0;
  right:0;
}

.hero-box.small{
  width:180px;
  height:130px;
  bottom:0;
  left:40px;
  background:linear-gradient(135deg,#ffedd5,#fed7aa);
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
  .hero-wrap{
    grid-template-columns:1fr;
    gap:50px;
  }

  .hero-left h1{
    font-size:38px;
  }

  .hero-right{
    display:none;
  }
}

/* ================= BLOG GRID ================= */
/* ================= BLOG SECTION ================= */
.blog-section,
.blog-wrapper{
  background:#ffffff;
  padding:90px 0 120px;
}

/* ================= BLOG GRID ================= */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:42px;
}

/* ================= BLOG CARD (PREMIUM) ================= */
.blog-card-premium,
.blog-card-pro{
  background:#ffffff;
  border-radius:28px;
  overflow:hidden;
  text-decoration:none;
  color:#0f172a;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  transition:all .35s ease;
  display:flex;
  flex-direction:column;
}

.blog-card-premium:hover,
.blog-card-pro:hover{
  transform:translateY(-10px);
  box-shadow:0 35px 90px rgba(0,0,0,.12);
}

/* Image */
.blog-img,
.blog-thumb{
  height:220px;
  background-size:cover;
  background-position:center;
}

/* ================= BLOG CONTENT ================= */
.blog-info,
.blog-body{
  padding:28px 30px 34px;
  display:flex;
  flex-direction:column;
}

/* Meta row */
.blog-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

/* Category */
.blog-category{
  font-size:12px;
  font-weight:600;
  color:#ff6f00;
  letter-spacing:.3px;
}

/* Author */
.blog-author{
  font-size:12px;
  color:#64748b;
  font-weight:500;
}

/* Title */
.blog-title{
  font-size:20px;
  line-height:1.45;
  font-weight:600;
  margin:12px 0 14px;
  color:#0f172a;
}

/* Excerpt */
.blog-excerpt{
  font-size:14px;
  line-height:1.7;
  color:#475569;
}

/* ================= AUTHOR STRIP (OPTIONAL) ================= */
.blog-author-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
}

.author-avatar{
  width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff6f00,#ff8f00);
  color:#fff;
  font-size:14px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}

.author-name{
  font-size:13px;
  font-weight:500;
  color:#334155;
}

/* ================= SINGLE BLOG ================= */
.single-hero{
  background:#ffffff;
  padding:120px 0 60px;
  border-bottom:1px solid #f1f5f9;
}

.single-hero h1{
  font-size:46px;
  max-width:820px;
  line-height:1.2;
  font-weight:700;
}

.single-content{
  max-width:900px;
  margin:80px auto 120px;
  padding:0 40px;
  font-size:16px;
  line-height:1.9;
  color:#1e293b;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .hero-wrap,
  .container,
  .single-content{
    padding:0 22px;
  }

  .blog-hero-editorial{
    padding:90px 0 70px;
  }

  .hero-wrap h1{
    font-size:36px;
  }

  .hero-wrap p{
    font-size:16px;
  }

  .blog-grid{
    gap:28px;
  }

  .blog-img{
    height:200px;
  }
}

@media(max-width:600px){
  .hero-wrap h1{
    font-size:32px;
  }

  .blog-title{
    font-size:18px;
  }
}
/* ================= SINGLE BLOG ================= */
.single-hero{
  height:60vh;
  background-size:cover;
  background-position:center;
  position:relative;
}
.single-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(15,23,42,.4),
    rgba(15,23,42,.9)
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:80px;
  color:#fff;
}
.single-hero-overlay h1{
  font-size:44px;
  margin-top:12px;
}

/* Content card */
.single-wrapper{
  margin-top:-100px;
  padding-bottom:100px;
}
.single-content{
  max-width:900px;
  margin:auto;
  background:#fff;
  padding:56px;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
  font-size:16px;
  line-height:1.9;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .blog-hero-overlay,
  .blog-wrapper,
  .single-hero-overlay{
    padding:32px;
  }
  .blog-hero h1{
    font-size:34px;
  }
  .single-hero-overlay h1{
    font-size:30px;
  }
  .single-content{
    padding:32px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,sans-serif;
}

body{
  background:#ffffff;
  color:#0f172a;
}

/* ================= FUTURISTIC HERO ================= */

.blog-hero-future{
  padding:140px 20px 120px;
  display:flex;
  justify-content:center;
  background:
    radial-gradient(circle at 20% 20%, #fff7ed, transparent 40%),
    radial-gradient(circle at 80% 30%, #ffeedd, transparent 45%);
}

.hero-shell{
  max-width:920px;
}

.hero-pill{
  display:inline-block;
  padding:10px 22px;
  border-radius:999px;
  background:rgba(255,111,0,.08);
  color:#ff6f00;
  font-size:13px;
  font-weight:600;
  margin-bottom:28px;
}

.hero-heading{
  font-size:56px;
  line-height:1.1;
  font-weight:700;
}

.hero-heading span{
  color:#ff6f00;
}

.hero-desc{
  margin-top:26px;
  max-width:620px;
  font-size:18px;
  line-height:1.75;
  color:#475569;
}

/* ================= SOFT BLOG GRID ================= */

.blog-soft{
  background:#ffffff;
  padding:80px 0 120px;
}

.blog-soft-grid{
  max-width:1200px;
  margin:auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:repeat(3,1fr); /* 👈 3 cards in one row */
  gap:36px;
}

/* ================= SOFT BLOG CARD ================= */

.blog-soft-card{
  background:#ffffff;
  border-radius:20px;          /* soft edges */
  overflow:hidden;
  text-decoration:none;
  color:#0f172a;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:all .25s ease;
  display:flex;
  flex-direction:column;
}

.blog-soft-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Image */
.soft-img{
  width:100%;
  height:190px;
  overflow:hidden;
  background:#f1f5f9;
}

.soft-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.blog-soft-card:hover img{
  transform:scale(1.05);
}

/* Body */
.soft-body{
  padding:22px;
}

/* Category */
.soft-cat{
  font-size:12px;
  font-weight:600;
  color:#ff6f00;
}

/* Title */
.soft-title{
  margin:10px 0 8px;
  font-size:18px;
  line-height:1.45;
  font-weight:600;
}

/* Excerpt */
.soft-excerpt{
  font-size:14px;
  line-height:1.6;
  color:#475569;
}

/* Footer */
.soft-footer{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#64748b;
}

.soft-footer .dot{
  opacity:.5;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){
  .blog-soft-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .blog-soft-grid{
    grid-template-columns:1fr;
    padding:0 20px;
  }

  .soft-title{
    font-size:17px;
  }
}
/* ================= BOXY SINGLE BLOG (IMPROVED) ================= */

/* Hero */
.single-hero-boxy{
  background:#ffffff;
  padding:90px 0 60px;
  border-bottom:1px solid #eef2f7;
}

.hero-boxy-inner{
  max-width:900px;
  margin:auto;
  padding:0 20px;
}

.hero-category{
  font-size:13px;
  font-weight:600;
  color:#ff6f00;
}

.hero-boxy-inner h1{
  margin-top:14px;
  font-size:40px;
  line-height:1.25;
  font-weight:700;
}

.hero-meta{
  margin-top:12px;
  font-size:13px;
  color:#64748b;
  display:flex;
  gap:8px;
}

/* Layout */
.single-boxy-layout{
  padding:70px 0 120px;
}

.single-boxy-grid{
  max-width:1200px;
  margin:auto;
  padding:0 30px;
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:50px;
}

/* Box Card */
.boxy-card{
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  padding:22px;
}

/* Content */
.content-box{
  padding:0;
  overflow:hidden;
}

.featured-img{
  width:100%;
  height:auto;
  border-radius:16px 16px 0 0;
}

.content-inner{
  padding:28px;
  font-size:16px;
  line-height:1.85;
  color:#1e293b;
}

.content-inner p{
  margin-bottom:22px;
}

/* Sidebar */
.sidebar-boxy{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.boxy-card h4{
  font-size:16px;
  font-weight:600;
  margin-bottom:14px;
}

/* Categories */
.cat-list{
  list-style:none;
}

.cat-list li{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  font-size:14px;
  color:#334155;
}

/* Latest */
.latest-list{
  list-style:none;
}

.latest-list li{
  padding:8px 0;
}

.latest-list a{
  text-decoration:none;
  font-size:14px;
  color:#0f172a;
  line-height:1.5;
}

/* Responsive */
@media(max-width:1000px){
  .single-boxy-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .hero-boxy-inner h1{
    font-size:28px;
  }

  .content-inner{
    padding:20px;
  }
}

