/* ==========================================================================
   Jagdish Industries Jasdan — Main Stylesheet
   Custom lightweight CSS (no framework). Mobile-first.
   Sections: 1.Tokens 2.Base 3.Utilities 4.Buttons 5.Header 6.Hero
             7.Sections/Cards 8.Reveal 9.Timeline 10.Gallery/Lightbox
             11.Forms 12.Footer 13.Misc
   ========================================================================== */

/* 1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette — industrial navy + agri green */
  --navy-900: #0b1f35;
  --navy-800: #12304f;
  --navy-700: #1a3c5e;
  --navy-600: #24507c;
  --navy-100: #e3edf7;
  --green-600: #1f8a4d;
  --green-500: #27a35d;
  --green-100: #e2f5ea;
  --amber-500: #f2a91f;
  --gray-900: #1c2530;
  --gray-700: #2f3b49;
  --gray-500: #46566a;
  --gray-300: #cbd5e1;
  --light-on-dark: #dce5ef;
  --gray-100: #eef2f7;
  --bg: #f6f9fc;
  --white: #ffffff;

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(11, 31, 53, 0.10);
  --shadow-md: 0 6px 18px rgba(11, 31, 53, 0.12);
  --shadow-lg: 0 18px 40px rgba(11, 31, 53, 0.18);
  --transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1160px;
}

/* 2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-800);
  letter-spacing: 0.3px;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--navy-700); }

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

ul { list-style: none; }

::selection { background: var(--green-500); color: var(--white); }

/* 3. Layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding: 4.5rem 0; }
.section--alt { background: var(--white); }
.section--navy {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--light-on-dark);
}
.section--navy h2 { color: var(--white); }

.section-head { max-width: 680px; margin: 0 auto 2.75rem; text-align: center; }
.section-head .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.4rem;
}
.section--navy .kicker { color: var(--amber-500); }
.section-head p { color: var(--gray-500); margin-top: 0.75rem; }
.section--navy .section-head p { color: var(--light-on-dark); }

.grid { display: grid; gap: 1.75rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
.badge--amber { background: #fdf3dd; color: #a8720a; }

.text-center { text-align: center; }

/* 4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #2cb166; color: var(--white); box-shadow: var(--shadow-md); }
.btn--primary:active { background: var(--green-600); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn--outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); color: var(--white); }

.btn--navy {
  background: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--navy:hover { background: var(--navy-600); color: var(--white); box-shadow: var(--shadow-md); }
.btn--navy:active { background: var(--navy-800); }

.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }

/* 5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { width: 46px; height: 46px; }
.brand__text { line-height: 1.1; }
.brand__name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-800);
  display: block;
}
.brand__tag { font-size: 0.68rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--green-600); font-weight: 600; }

.nav__list { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__cta { display: none; }

/* Mobile slide-down menu */
.nav__list--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1.25rem 1.25rem;
}
.nav__list a {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius-sm);
}
.nav__list a:hover { color: var(--green-600); background: var(--gray-100); }
.nav__list a[aria-current="page"] { color: var(--green-600); font-weight: 700; }

/* 6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 85% 15%, rgba(39, 163, 93, 0.18), transparent 60%),
    linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  padding: 4.5rem 0 5rem;
}

/* faint blueprint grid behind everything */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 { color: var(--white); margin: 0.9rem 0 1rem; }
.hero h1 .accent { color: var(--amber-500); }
.hero__lede { font-size: 1.08rem; color: var(--light-on-dark); max-width: 540px; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__art { position: relative; margin-inline: auto; max-width: 420px; width: 100%; }
.hero__art img { width: 100%; filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.4)); }

/* 7. Sections & cards
   -------------------------------------------------------------------------- */

/* Stats band */
.stats { margin-top: -2.6rem; position: relative; z-index: 5; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-bottom: 3px solid var(--gray-300);
  box-shadow: var(--shadow-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { border-bottom-color: var(--green-500); box-shadow: var(--shadow-lg); }
.stat-card__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1;
}
.stat-card__num .suffix { color: var(--green-500); }
.stat-card__label { font-size: 0.92rem; font-weight: 500; color: var(--gray-700); margin-top: 0.4rem; }

/* Generic content card (product, gallery, testimonial) */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-md); }
.card__media { background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { font-size: 0.95rem; color: var(--gray-700); flex: 1; }
.card__specs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.1rem; }
.card__specs li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-700);
  background: var(--navy-100);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

/* Feature (why-us) icon row */
.feature {
  text-align: center;
  padding: 1.75rem 1.25rem;
}
.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: 18px;
  font-size: 1.6rem;
  box-shadow: inset 0 -3px 0 rgba(31, 138, 77, 0.25);
}
.feature h3 { font-size: 1.15rem; }
.feature p { font-size: 0.95rem; color: var(--gray-700); }
.section--navy .feature h3 { color: var(--white); }
.section--navy .feature p { color: var(--light-on-dark); }

/* Testimonial card */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-500);
}
.testimonial__stars { color: var(--amber-500); letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial__quote { font-size: 0.98rem; font-style: italic; color: var(--gray-900); }
.testimonial__who { margin-top: 1rem; font-weight: 700; color: var(--navy-800); font-size: 0.92rem; }
.testimonial__who span { display: block; font-weight: 400; color: var(--gray-500); font-size: 0.85rem; }

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(ellipse 500px 260px at 12% 110%, rgba(242, 169, 31, 0.25), transparent 65%),
    linear-gradient(120deg, var(--green-600), var(--green-500));
  border-radius: var(--radius);
  color: var(--white);
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); max-width: 560px; margin: 0 auto 1.5rem; }

/* Inner-page hero strip */
.page-hero {
  background:
    radial-gradient(ellipse 700px 320px at 90% 0%, rgba(39, 163, 93, 0.22), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 3.25rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--gray-300); max-width: 640px; margin: 0.6rem auto 0; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.85rem; margin-top: 0.9rem; color: var(--gray-300); }
.breadcrumb a { color: var(--amber-500); }

/* 8. Scroll reveal (JS adds .revealed) — simple fade, GPU-cheap
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transition: opacity 0.45s ease; }
.reveal.revealed { opacity: 1; }

/* 8b. Carousel (scroll-snap based, arrows + optional autoplay via JS)
   -------------------------------------------------------------------------- */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.25rem 0.25rem 1rem;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.carousel__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--navy-700);
  border: 1.5px solid var(--gray-300);
  box-shadow: var(--shadow-md);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.carousel__btn:hover { background: var(--green-500); border-color: var(--green-500); color: var(--white); }
.carousel__btn--prev { left: -8px; }
.carousel__btn--next { right: -8px; }

/* 9. Timeline (about page)
   -------------------------------------------------------------------------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--green-500), var(--navy-600));
}
.timeline__item { position: relative; padding: 0 0 2.25rem 1.5rem; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.68rem;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--green-500);
  box-shadow: 0 0 0 4px rgba(39, 163, 93, 0.18);
}
.timeline__year {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-600);
  line-height: 1;
}
.timeline__item h3 { margin: 0.3rem 0 0.4rem; }
.timeline__item p { font-size: 0.95rem; color: var(--gray-700); margin: 0; }

/* 10. Gallery + lightbox
   -------------------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--green-500); color: var(--green-600); }
.filter-btn.active { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }

.gallery-item { cursor: zoom-in; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--navy-800); }
.gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.6rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(11, 31, 53, 0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.card--hidden, .gallery-item--hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 31, 53, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox__figure {
  max-width: 860px;
  width: 100%;
  animation: lightboxIn 0.25s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox__figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__caption { color: var(--gray-300); text-align: center; margin-top: 0.9rem; }
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox__btn:hover { background: var(--green-500); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* 11. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-800); margin-bottom: 0.35rem; }
.form-field label .req { color: #d64545; }
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #d64545; background: #fdf1f1; }
.form-field .error-msg { display: none; font-size: 0.78rem; color: #d64545; margin-top: 0.3rem; }
.form-field .error-msg.show { display: block; }
.form-success {
  display: none;
  background: var(--green-100);
  color: var(--green-600);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.form-success.show { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Contact info blocks */
.info-tile {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.info-tile__icon {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--navy-100);
  color: var(--navy-700);
  border-radius: 12px;
  font-size: 1.25rem;
}
.info-tile h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.info-tile p, .info-tile a { font-size: 0.95rem; color: var(--gray-700); margin: 0; word-break: break-word; }
.info-tile a:hover { color: var(--green-600); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* 12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--light-on-dark);
  padding: 3.5rem 0 0;
  font-size: 0.95rem;
}
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer a { color: var(--light-on-dark); }
.site-footer a:hover { color: var(--amber-500); }
.footer-links li { margin-bottom: 0.55rem; }
.footer-about p { color: var(--light-on-dark); }
.footer-contact li { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer-contact .ico { color: var(--green-500); flex: 0 0 auto; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--green-500); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #a8b8ca;
}

/* 13. Misc
   -------------------------------------------------------------------------- */

/* Floating call button */
.float-call {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-500);
  color: var(--white);
  font-size: 1.45rem;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s ease;
}
.float-call:hover { background: #2cb166; color: var(--white); }
.float-call:active { background: var(--green-600); }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 300;
}
.skip-link:focus { left: 0; color: var(--white); }

/* Legacy ribbon */
.est-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-500);
  border: 1.5px solid rgba(242, 169, 31, 0.5);
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
}

/* Reduced motion — disable all decorative animation */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; }
}
