/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 5% 0 0;
  z-index: 10;
  background: transparent;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 96px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 232, 0.92)),
    linear-gradient(90deg, rgba(245, 199, 139, 0.18), rgba(75, 123, 156, 0.12));
  border-bottom: 1px solid rgba(245, 199, 139, 0.35);
  box-shadow: 0 16px 38px rgba(37, 25, 11, 0.14);
  backdrop-filter: blur(16px);
  z-index: -1;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.logo {
  display: inline-flex;
  align-items: flex-start;
  flex: 0 0 auto;
  text-decoration: none;
  align-self: flex-start;
  transform: translateY(-6px);
}

.logo img {
  width: 118px;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Hamburger  */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger:hover span {
  background: #d6a14a;
}

/* Navdots + hover underline */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding-top: 36px;
}

.nav-links li {
  position: relative;
  display: flex;
  align-items: center;
}

/* Small dot */
.nav-links li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #f5c78b;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s ease;
  opacity: 0.7;
}

/* Link text */
.nav-links a {
  text-decoration: none;
  color: #161616;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f5c78b;
  transition: width 0.3s ease;
}

/* Hover effects */
.nav-links a:hover {
  color: #d6a14a;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links li:hover::before {
  background-color: #d6a14a;
  opacity: 1;
}

/* Sign In Button */
.auth-btn {
  padding: 10px 20px;
  border: 1px solid #161616;
  border-radius: 5px;
  color: #161616;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 26px;
}

.auth-btn:hover {
  background-color: #d6a14a;
  border-color: #d6a14a;
  color: #fff;
}

/* Separate header used on inner pages */
.page-header {
  position: relative;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-page {
  background: #000;
}

.terms-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.78)),
    url("images/backgroundimage.png") center/cover no-repeat;
  color: #fff;
  padding: 86px 6% 58px;
}

.terms-page-hero span {
  color: #f5c78b;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.terms-page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 18px;
}

.terms-page-hero p {
  color: #d7dbe0;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background-image: url('images/backgroundimage.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #eaeaea;
}

.hero-content span {
  color: #f5c78b;
}

.hero-content p {
  margin-top: 20px;
  font-size: 19.2px;
  opacity: 0.9;
  color: #eee;
}

.download-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.download-buttons img {
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 10px;
}

.download-buttons img:hover {
  transform: scale(1.05);
}

/* Hide default checkbox */
#menu-toggle {
  display: none;
}


/* RESPONSIVE  */


/* Large laptop screens */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 17px;
  }
  .download-buttons img {
    height: 48px;
  }
}

/* Tablet & small laptop */
@media (max-width: 991px) {
  .nav-links ul {
    position: absolute;
    top: 90px;
    right: 5%;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
    display: none;
  }

  #menu-toggle:checked ~ .nav-links ul {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .auth-btn {
    display: none;
  }

  .hero-section {
    padding: 120px 6% 80px;
    justify-content: center;
    background-position: 58% center;
  }

  .hero-content {
    max-width: 500px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 17px;
  }

  .download-buttons img {
    height: 46px;
  }
}

/* Tablet portrait / mid-size */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 6% 80px;
    background-position: 58% center;
  }

  .hero-content {
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }

  .download-buttons {
    justify-content: center;
  }

  .download-buttons img {
    height: 44px;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 0 6% 0 0;
    height: 66px;
  }

  .navbar .container {
    align-items: center;
    gap: 16px;
  }

  .logo {
    padding-top: 0;
  }

  .logo img {
    width: 104px;
    max-height: 82px;
    object-fit: contain;
  }

  .navbar::before {
    left: 0;
    height: 66px;
  }

  .hero-section {
    padding: 100px 5% 60px;
    padding-top: 205px;
    background-position: 56% center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .download-buttons {
    gap: 15px;
    padding-top: 190px;
  }

  .download-buttons img {
    height: 43px;
  }

  .hamburger {
    margin-left: auto;
    padding: 0;
  }
}

/* Extra small (≤360px) */
@media (max-width: 360px) {
  .navbar {
    padding: 0 5% 0 0;
    height: 66px;
  }
  .logo img { width: 92px; }
  .navbar::before { height: 66px; }
  .hamburger span { width: 28px; height: 2px; }
  

  .hamburger {
    margin-left: auto;
    padding: 0;
  }

  .hero-section {
    padding: 100px 4% 50px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 30px;
    padding-top: 215px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .download-buttons {
    justify-content: center;
    padding-top: 195px;
    
  }

  .download-buttons img {
    height: 40px;
  }
}








/* ===== AI Section  ===== */
.ai-section {
  background-color: #000;  
  color: #fff;
  padding: 120px 8%;
  font-family: 'Poppins', sans-serif;
}

.ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.ai-left h2 {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 0;
}

.ai-right p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ai-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ai-left h2 {
    font-size: 2rem;
  }

  .ai-right p {
    font-size: 1rem;
  }
}









/* ===== FEATURES SECTION ===== */
/* ===== Root Variables ===== */
:root {
  --total: 10;
  --radius: 650px;
  --card-w: 350px;
  --card-h: 380px;
  --spin-duration: 25s;
  --card-scale-hover: 1.06;
  --card-zoom: 220px;
  --accent: #8e99ee;
  --glow-color: rgba(154, 166, 255, 0.666);
  --shadow-strong: 0 22px 50px rgba(2, 6, 17, 0.786);
}

/* ===== Section ===== */
.features-section {
  padding: 48px 3%;
  background: linear-gradient(180deg, #000000 0%, #000305 100%);
  color: #E7E9EE;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  overflow: hidden;
}

/* ===== Typography ===== */
.features-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
}

.features-section .section-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #b5cadb;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(255, 200, 200, 0.18);
  animation: fadeDown 1.2s ease forwards;
}

/* ===== Animate the word “Features” ===== */
.animate-feature {
  display: inline-block;
  background: linear-gradient(90deg, #f8d4d4, #ffffff, #7f9ea2);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGradient 6s linear infinite, fadeSlideUp 1.4s ease forwards;
  font-weight: 800;
}

@keyframes shineGradient {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

.features-section .section-title span {
  font-family: 'Editorial New', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  color: #f7cfd4;
  text-shadow: 0 0 20px rgba(255, 200, 200, 0.12);
}

.features-section .section-subtext {
  font-family: 'Inter', sans-serif;
  color: #b7bfd0;
  margin-top: 8px;
  font-weight: 500;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

/* ===== Summary Paragraph ===== */
.features-summary {
  max-width: 850px;
  margin: 40px auto 0;
  text-align: center;
  line-height: 1.7;
  font-family: 'Space Grotesk', sans-serif; /* modern font */
  color: #d7d7d7;
  font-size: 19px;
  font-weight: 557;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeUp 1.2s ease forwards;
  animation-delay: 0.6s;
}

.features-summary strong {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #f5d2d2;
  font-weight: 777;
}

/* ===== Carousel Container ===== */
.features-carousel-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
  height: 720px;
  position: relative;
  overflow: visible;
}

/* ===== Core & Ring Animation ===== */
.features-section .carousel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  pointer-events: none;
}

.features-section .ring {
  position: relative;
  width: 100%;
  height: 35%;
  transform-style: preserve-3d;
  animation: spin-inward var(--spin-duration) linear infinite;
  transform-origin: center center;
  background: transparent;
  pointer-events: none;
}

.features-section .ring.paused,
.features-section .carousel:has(.card:hover) .ring,
.features-section .carousel:has(.card:active) .ring {
  animation-play-state: paused !important;
}

@keyframes spin-inward {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(-360deg); }
}

/* ===== Card Styling ===== */
.features-section .card {
  --angle-step: calc(360deg / var(--total));
  --angle: calc(var(--i) * var(--angle-step));
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--card-w);
  height: var(--card-h);
  border-radius: 16px;
  transform-style: preserve-3d;
  transform-origin: center;
  background: rgba(20,22,28,0.5);
  backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-strong), 0 0 12px var(--glow-color);
  backface-visibility: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(.2,.9,.2,1),
              box-shadow 0.5s ease,
              filter 0.5s ease;
  filter: brightness(0.9) contrast(0.97);
  transform: translate(-50%, -50%) rotateY(var(--angle))
             translateZ(var(--radius)) rotateY(180deg);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

/* ===== Card Hover Effects ===== */
.features-section .card:hover,
.features-section .card:active,
.features-section .card:focus-visible {
  transform: translate(-50%, -50%)
             rotateY(var(--angle))
             translateZ(calc(var(--radius) - 40px))
             rotateY(180deg)
             scale(var(--card-scale-hover));
  z-index: 999 !important;
  box-shadow: 0 44px 100px rgba(5,10,25,0.6),
              0 0 24px var(--glow-color),
              0 0 80px rgba(154,166,255,0.1);
  filter: brightness(1.05);
}

/* ===== Card Inner Elements ===== */
.features-section .card-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(2px);
  opacity: 1;
  transition: transform 0.5s ease,
              opacity 0.5s ease,
              filter 0.5s ease;
}

.features-section .card-info {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 16px;
  background: linear-gradient(180deg, rgba(6,8,12,0.18), rgba(6,8,12,0.22));
  color: #ffffff;
  text-align: left;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
  text-shadow: 0 0 4px var(--accent),
               0 0 8px var(--accent),
               0 0 12px var(--accent);
  border-radius: 12px;
}

.features-section .card-info h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.features-section .card-info .muted {
  margin: 6px 0 0;
  font-size: 0.82rem;
  color: #b7c1ff;
}

.features-section .card:hover .card-info {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Shimmer & Sheen ===== */
.features-section .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
              rgba(255,255,255,0.05) 0%,
              rgba(255,255,255,0.12) 50%,
              rgba(255,255,255,0.05) 100%);
  transform: translateX(-100%) rotate(0deg);
  transition: transform 1.2s ease;
  pointer-events: none;
}

.features-section .card:hover::after {
  transform: translateX(100%) rotate(0deg);
}

.features-section .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg,
              rgba(255,255,255,0.03),
              rgba(255,255,255,0));
  transform: rotate(-6deg);
  pointer-events: none;
}

/* ===== Animations ===== */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideFadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (pointer: coarse) {
  :root {
    --radius: 380px;
    --card-w: 200px;
    --card-h: 250px;
    --spin-duration: 28s;
    --card-zoom: 160px;
    --card-scale-hover: 1.03;
  }
  .features-section .ring {
    animation-duration: calc(var(--spin-duration) * 1.15);
  }
}

@media (max-width: 1100px) {
  :root {
    --radius: 500px;
    --card-w: 220px;
    --card-h: 250px;
    --spin-duration: 28s;
    --card-zoom: 160px;
    --card-scale-hover: 1.04;
  }
  .features-section .features-carousel-wrap {
    perspective: 1200px;
    height: 560px;
  }
}

/* ===== Mobile Devices (≤ 480px, covers 320px too) ===== */
@media (max-width: 480px) {
  :root {
    --card-h: 310px;
  }

  .features-summary {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 14px;
  }
  .features-section .section-title {
    font-size: 1.8rem;
  }
  .features-section .section-subtext {
    font-size: 0.9rem;
  }
  .features-section .features-carousel-wrap {
    perspective: 900px;
    height: 340px;
  }
}

/* ===== Ultra-small screens (≤ 360px) ===== */
@media (max-width: 360px) {
  .features-summary {
    font-size: 14px;
    line-height: 1.55;
    padding: 0 10px;
  }
}
















.smart-converters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 10%;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.tools-left {
  flex: 1;
}

.headline {
  font-size: clamp(22px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-align: left;
}

.headline span {
  color: #90c8d8;
}

.tools-right {
  flex: 1;
  position: relative;
  height: 380px;
}

.card-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.fade-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.98);
  animation: fadeCycle 25s infinite;
  pointer-events: none; /* Default: not interactive */
}

.fade-card:nth-child(1) { animation-delay: 0s; }
.fade-card:nth-child(2) { animation-delay: 5s; }
.fade-card:nth-child(3) { animation-delay: 10s; }
.fade-card:nth-child(4) { animation-delay: 15s; }
.fade-card:nth-child(5) { animation-delay: 20s; }

@keyframes fadeCycle {
  0%, 20% {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none; /* Disable interactions when hidden */
  }
  5%, 15% {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto; /* Enable interactions only when visible */
  }
}

.card__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  filter: brightness(0.8);
  z-index: 1;
}

.card-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.muted {
  font-size: 0.95rem;
  color: #ddd;
  margin: 0.3rem 0 1rem;
}

.tool-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.tool-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .smart-converters {
    flex-direction: column;
    text-align: center;
    padding: 4rem 2rem;
  }

  .tools-left {
    margin-bottom: 2rem;
  }

  .tools-right {
    width: 100%;
    height: 320px;
  }

  .card-content {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    text-align: center;
  }
}




/* RESPONSIVE */
@media (max-width: 1024px) {

  .smart-converters {
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
  }

  .tools-left {
    width: 100%;
    margin-bottom: 40px;
  }

  .headline {
    font-size: clamp(30px, 6vw, 48px);
    line-height: 1.2;
    text-align: center;
  }

  .tools-right {
    width: 100%;
    display: flex;
    justify-content: center;
    height: auto;
    padding-left: 4px;
  }

  .card-showcase {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 350px;  /* Ensures animation is visible */
    margin: 0 auto;
    overflow: visible;
  }

  .fade-card {
    position: absolute;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) scale(1) !important;
    width: 100%;
    height: 100%;
  }

  .card-content {
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 1.5rem;
    text-align: center;
    width: calc(100% - 60px);
  }
}

/* ✅ MOBILE POLISH */
@media (max-width: 600px) {
  .smart-converters {
    padding: 40px 10px;
  }

  .card-showcase {
    height: 300px;
  }

  .headline {
    font-size: clamp(26px, 7vw, 40px);
  }

  .tool-btn {
    font-size: 14px;
    padding: 8px 18px;
  }
}










/* ===== ABOUT US SECTION (Scoped to .about-section) ===== */
.about-section {
  --bg: #060607;
  --card-bg: #0f1114;
  --muted: #9aa0a6;
  --accent: #6b8ea3;
  --pill: #bfced2;
  --white: #fff;
  --radius: 18px;
  --max-width: 1200px;
  background: linear-gradient(180deg, var(--bg) 0%, #0b0b0c 100%);
  color: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.45;
  padding: 60px 0;
  scroll-margin-top: 90px;
}

/* Container */
.about-section .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;
}

/* ===== ABOUT GRID ===== */
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.about-section .image-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}

.about-section .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section .about-content h5 {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.about-section .about-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-section .about-content p.lead {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 45ch;
}

/* ===== CTA Button ===== */
.about-section .cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.about-section .about-btn {
  background: var(--white);
  color: #0a0a0a;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-section .about-btn:hover {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  transform: translateY(-2px);
}

/* ===== Bottom Row ===== */
.about-section .bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.about-section .skills h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.about-section .skills p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-section .skill-item {
  margin: 12px 0;
}

.about-section .skill-item .label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.about-section .progress {
  height: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  overflow: hidden;
}

.about-section .progress > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #687593);
  border-radius: 999px;
}

/* ===== Stats ===== */
.about-section .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.about-section .stat {
  min-width: 110px;
  text-align: right;
}

.about-section .stat .n {
  font-size: 26px;
  font-weight: 700;
}

.about-section .stat .t {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 600px) {
  .about-section .stats {
    justify-content: center;
    text-align: center;
  }

  .about-section .stat {
    min-width: 100%;
    text-align: center;
  }
}
/* ===== Vision + Mission + Values ===== */
.about-section .vision-mission {
  margin-top: 60px;
  background: linear-gradient(180deg, rgb(15, 15, 15), rgba(255,255,255,0.01));
  border-radius: 14px;
  padding: 60px 30px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}

/* ===== Values Pill ===== */
.about-section .values-pill {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pill);
  padding: 16px 28px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 36px;
  align-items: center;
  width: max-content;
  max-width: 90%;
  box-shadow: 0 20px 40px rgba(8, 8, 8, 0.585);
  transition: all 0.3s ease;
}

.about-section .value {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 120px;
  min-width: 120px;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-section .value svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
}

.about-section .value span {
  font-weight: 600;
  font-size: 15px;
}

.about-section .value:hover {
  transform: translateY(-3px);
  color: var(--accent);
}

.about-section .vm-block h4 {
  color: var(--accent);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.about-section .vm-block p {
  color: var(--muted);
  max-width: 42ch;
}

/* ===== CTA Banner ===== */
.about-section .cta-banner {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../thumbs.dreamstime.com/b/group-busy-business-people-working-office-top-view-wooden-table-mobile-phones-laptop-tablet-documents-papers-76116772.jpg') center/cover no-repeat;
}

.about-section .cta-banner .inner {
  text-align: center;
  padding: 36px 18px;
}

.about-section .cta-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-section .cta-banner p {
  color: var(--muted);
  margin-bottom: 18px;
}

/* ===== Animations ===== */
.about-section .animate {
  opacity: 0;
  transform: translateY(20px);
  animation: about-fadeUp .7s ease forwards;
}

.about-section .animate.delay-1 { animation-delay: .1s; }
.about-section .animate.delay-2 { animation-delay: .2s; }
.about-section .animate.delay-3 { animation-delay: .3s; }

@keyframes about-fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-section .about-grid { grid-template-columns: 1fr; }
  .about-section .bottom-row { grid-template-columns: 1fr; }
  .about-section .vision-mission {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 80px;
  }

  .about-section .values-pill {
    position: static;
    transform: none;
    margin-bottom: 28px;
    background: rgba(173, 213, 213, 0.9);  
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .about-section .value {
    flex: 1 1 45%;
    min-width: 130px;
  }
}

@media (max-width: 600px) {
  .about-section .values-pill {
    flex-direction: column;
    padding: 18px 16px;
    border-radius: 12px;
    gap: 16px;
  }

  .about-section .value {
    flex: none;
    min-width: auto;
  }

  .about-section .about-content h1 { font-size: 28px; }
  .about-section .cta-banner h2 { font-size: 22px; }
}


/* ===== PRIVACY POLICY ===== */
.terms-privacy-section {
  background: #000;
  color: #fff;
  padding: 90px 6%;
  scroll-margin-top: 90px;
}

.terms-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.terms-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.terms-heading span {
  color: #f5c78b;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.terms-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.terms-heading p {
  color: #bfc3c8;
  font-size: 1.1rem;
  line-height: 1.7;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.terms-card {
  background: linear-gradient(180deg, #111316, #08090b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
  min-height: 210px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.terms-card h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.terms-card p {
  color: #aeb4bb;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .terms-privacy-section {
    padding: 70px 5%;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .terms-card {
    padding: 24px;
    min-height: auto;
  }
}










/* ===== TESTIMONIAL SECTION ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&amp;display=swap");


.testimonials-section {
  position: relative;
  padding: 6rem 10%;
  background: linear-gradient(135deg, #000 0%, #050505 100%);
  color: #fff;
  font-family: "Inter", sans-serif;
  background-size: 200% 200%;
  animation: bgShift 12s ease-in-out infinite alternate;
  overflow: hidden;
}

/* Background subtle shift */
@keyframes bgShift {
  from { background-position: left top; }
  to { background-position: right bottom; }
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 2px;
  margin-bottom: 4rem;
  font-weight: 700;
}

.section-title span {
  display: inline-block;
  color: #fff;
  opacity: 0.9;
}

/* ===== Wrapper ===== */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* ===== Card Styling ===== */
.testimonial-card {
  width: 100%;
  max-width: 360px;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
  animation: fadeUp 1s forwards ease-out;
}

/* Staggered animation delay */
.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.45s; }
.testimonial-card:nth-child(5) { animation-delay: 0.6s; }
.testimonial-card:nth-child(6) { animation-delay: 0.75s; }

/* ===== Scroll-triggered fade-in ===== */
@keyframes fadeUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Hover Glow ===== */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(155, 231, 255, 0.15),
              0 0 10px rgba(181, 186, 255, 0.1);
  transition: all 0.4s ease;
}

/* ===== Text ===== */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: #a9d4bc;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 4rem 8%;
  }
  .section-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}









/* ====== Contact Section ====== */
body {
  font-family: "Inter", sans-serif;
  background: #080706;
  color: #a9d4c8;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.contact-section {
  padding: 6rem 10%;
  background: #000000;
}

/* FLEX LAYOUT */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInSection 1s ease forwards;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideLeft 1s ease forwards 0.4s;
}

.contact-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-left p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #8d8996eb;
  max-width: 420px;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  min-width: 320px;
  background: #080000;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 10px rgb(126, 144, 179);
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 1s ease forwards 0.6s;
}

.contact-right h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 2rem;
  font-size: 1rem;
  background: #f9f7f4;
  outline: none;
  transition: all 0.25s ease;
}

input:hover, textarea:hover {
  transform: scale(1.02);
}

input:focus, textarea:focus {
  border-color: #000;
  background: #fff;
  transform: scale(1.02);
}

textarea {
  min-height: 120px;
  resize: none;
  border-radius: 1rem;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  gap: 0.5rem;
  color: #444;
}

.checkbox input {
  accent-color: #000;
  width: 18px;
  height: 18px;
}

/* Button */
button {
  background: #7a8b98;
  color: #fff;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #b2c6d6;
  transform: scale(1.05);
}

/* ==== Animations ==== */
@keyframes fadeInSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {
  .contact-section {
    padding: 5rem 8%;
  }
  .contact-container {
    gap: 3rem;
  }
}

/* Mobile - up to 768px */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }

  .contact-left, 
  .contact-right {
    transform: none !important;
    opacity: 1;
    width: 100%;
    min-width: auto;
  }

  .contact-left p {
    max-width: 100%;
    font-size: 1rem;
  }

  .contact-right {
    padding: 2rem 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input {
    width: 100%;
  }
}

/* Small devices - 480px and below */
@media (max-width: 480px) {
  .contact-section {
    padding: 4rem 6%;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-left p {
    font-size: 0.95rem;
  }

  .contact-right h3 {
    font-size: 1.1rem;
  }

  input, textarea {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  button {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}

/* Extra small - 320px phones */
@media (max-width: 360px) {
  .contact-section {
    padding: 3rem 5%;
  }
  
  .contact-container {
    gap: 2rem;
  }

  input, textarea {
    font-size: 0.9rem;
  }

  button {
    width: 100%;
  }
}











/* ===== DOWNLOAD SECTION ===== */
.scan-download-section {
  background: linear-gradient(135deg, #000000, #000308);
  padding: 80px 5%;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.scan-download-section::before,
.scan-download-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}

.scan-download-section::before {
  top: -50px;
  left: -50px;
}

.scan-download-section::after {
  bottom: -50px;
  right: -50px;
}

/* Base text */
.scan-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideDown 1.2s ease forwards;
  animation-delay: 0.2s;
}

.scan-muted {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(30px);
  line-height: 1.6;
  animation: fadeSlideDown 1.2s ease forwards;
  animation-delay: 0.4s;
}

.scan-download-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideDown 1.2s ease forwards;
  animation-delay: 0.6s;
  
}

.store-badge {
  width: 220px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: brightness(0.95);
  border-radius: 12px;
}

.store-badge:hover {
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.4);
}

/* Keyframes */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .scan-title {
    font-size: 2.2rem;
  }
  .scan-muted {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .scan-download-section {
    padding: 60px 5%;
  }
  .scan-title {
    font-size: 1.8rem;
  }
  .store-badge {
    width: 180px;
  }
}

@media (max-width: 320px) {
  .scan-title {
    font-size: 1.6rem;
  }
  .scan-muted {
    font-size: 0.95rem;
  }
  .store-badge {
    width: 150px;
  }
}






/* ===== FOOTER ===== */
.footer-centered {
  background: #000;
  color: #fff;
  padding: 3rem 6%;
  font-family: "Inter", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.5px;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-centered p {
  font-size: 0.95rem;
  color: #aaa;
}

.footer-contact p {
  margin: 0;
  line-height: 1.7;
}

.footer-inline {
  white-space: nowrap;
}

.footer-email {
  overflow-wrap: anywhere;
}

.footer-phone a + a {
  margin-left: 0.65rem;
}

.footer-contact strong {
  color: #fff;
}

.footer-contact span {
  display: inline-block;
  padding: 0 0.35rem;
  color: #aaa;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 1.2rem 0 0;
  text-align: center;
}

@media (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    width: 100%;
    max-width: 100%;
    justify-items: center;
  }

  .footer-contact p,
  .footer-copy {
    text-align: center;
  }

  .footer-contact span {
    display: inline;
    padding: 0 0.35rem;
  }

  .footer-email {
    max-width: 100%;
    font-size: 0.74rem;
    line-height: 1.8;
  }

  .footer-phone {
    max-width: 100%;
    font-size: 0.7rem;
    letter-spacing: -0.2px;
  }
}
/* ===== Responsive Styles ===== */

/* Medium devices (tablets, 768px - 991px) */
@media (max-width: 991px) {
  .footer-centered {
    padding: 2.5rem 8%;
  }
  .footer-centered h3 {
    font-size: 1.2rem;
  }
  .footer-centered p {
    font-size: 0.9rem;
  }

}

/* Small devices (phones, 576px - 767px) */
@media (max-width: 767px) {
  .footer-centered {
    padding: 2rem 6%;
  }
  .footer-centered h3 {
    font-size: 1.1rem;
  }
  .footer-centered p {
    font-size: 0.85rem;
  }

}

/* Extra small devices (phones, <576px) */
@media (max-width: 575px) {
  .footer-centered {
    padding: 1.5rem 4%;
  }
  .footer-centered h3 {
    font-size: 1rem;
  }
  .footer-centered p {
    font-size: 0.8rem;
  }

}

/* Inner page header spacing */
.legal-page .terms-privacy-section {
  padding-top: 64px;
}

@media (max-width: 991px) {
  .page-header .nav-links ul {
    top: calc(100% + 8px);
  }

  .terms-page-hero {
    padding: 64px 6% 46px;
  }
}

@media (max-width: 480px) {
  .terms-page-hero {
    padding: 48px 5% 38px;
  }

  .terms-page-hero h1 {
    font-size: 2.25rem;
  }

  .legal-page .terms-privacy-section {
    padding-top: 46px;
  }
}

/* Compact mobile section spacing */
@media (max-width: 768px) {
  .ai-section {
    padding: 56px 6% 38px;
  }

  .features-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .testimonials-section,
  .contact-section,
  .scan-download-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .ai-section {
    padding: 42px 5% 26px;
  }

  .features-section {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .features-heading,
  .features-section .section-title,
  .features-section .section-subtext {
    margin-bottom: 14px;
  }

  .testimonials-section,
  .contact-section,
  .scan-download-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}







/* Scroll Reveal*/

/* Hidden state */

.reveal-left,
.reveal-right,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* Fallback for browsers without scroll-timeline */
@supports not (animation-timeline: view()) {
  .reveal-left,
  .reveal-right,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/*  Scroll Animation */
@supports (animation-timeline: view()) {
  .reveal-left {
    animation: fadeInLeftSlow 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 80%;
  }

  .reveal-right {
    animation: fadeInRightSlow 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 80%;
  }

  .reveal-on-scroll {
    animation: fadeUpSlow 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 80%;
  }

  @keyframes fadeInLeftSlow {
    from { opacity: 0; transform: translateX(-100px) translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
  }

  @keyframes fadeInRightSlow {
    from { opacity: 0; transform: translateX(100px) translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
  }

  @keyframes fadeUpSlow {
    from { opacity: 0; transform: translateY(100px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
}

/* Responsive   */

/* Tablets */
@media (max-width: 980px) {
  .reveal-left,
  .reveal-right,
  .reveal-on-scroll {
    transform: translateY(40px);
    transition-duration: 1.5s;   /* slightly slower */
  }
}

/* Phones (480 px / 390 px / 360 px) */
@media (max-width: 600px) {
  .reveal-left,
  .reveal-right,
  .reveal-on-scroll {
    transform: translateY(25px);
    transition-duration: 1.8s;   /* super-slow for mobile */
  }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right,
  .reveal-on-scroll {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
