/* =============================================
   SHREE SIDH DATA PACKAGING — MAIN STYLESHEET
   Color Palette: Warm Ivory, Deep Navy, Gold
   ============================================= */

:root {
  --gold: #C9962A;
  --gold-light: #E4B84A;
  --gold-pale: #F5E9C8;
  --navy: #1A2744;
  --navy-mid: #243357;
  --slate: #3D4F6B;
  --cream: #FAF7F2;
  --warm-white: #FDF9F4;
  --mid-gray: #8A95A3;
  --text: #2A2E38;
  --text-light: #5A6270;
  --border: rgba(201,150,42,0.2);
  --shadow: rgba(26,39,68,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --max-width: 1240px;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; }
em { font-style: italic; color: var(--gold); }
p { font-size: 1rem; line-height: 1.75; color: var(--text-light); }

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

.section { padding: 6rem 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 1.2rem;
  background: rgba(201,150,42,0.04);
}
.section-tag.light {
  color: var(--gold-light);
  border-color: rgba(228,184,74,0.4);
  background: rgba(228,184,74,0.08);
}

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header .link-arrow { margin-top: 1rem; display: inline-block; }
.link-arrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.8; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary.large { padding: 1rem 2.5rem; font-size: 1rem; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,247,242,0.5);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); }

.center-link { text-align: center; margin-top: 3rem; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(26,39,68,0.15);
  backdrop-filter: blur(4px);
}
#navbar.scrolled {
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px var(--shadow);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 56px; object-fit: contain; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(250,247,242,0.9);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
  border-radius: 3px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

/* ---- HAMBURGER BUTTON ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
  z-index: 1100;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
              opacity 0.25s ease,
              width 0.3s ease;
  transform-origin: center;
}
/* ---- X ANIMATION WHEN OPEN ---- */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.04); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,39,68,0.88) 0%, rgba(26,39,68,0.75) 50%, rgba(26,39,68,0.55) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: calc(var(--nav-h) + 4rem) 2rem 8rem 4rem;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(228,184,74,0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--cream);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--gold-light); }
.hero-sub {
  color: rgba(250,247,242,0.78);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(201,150,42,0.94);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(26,39,68,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(26,39,68,0.25);
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--navy);
  padding: 3.5rem 2rem;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: rgba(250,247,242,0.85);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
}
.intro-text em { color: var(--gold-light); font-style: italic; }

/* ---- ABOUT TEASER ---- */
.about-teaser { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 50px var(--shadow);
}
.about-img-secondary {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 45%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid var(--cream);
  box-shadow: 0 10px 30px var(--shadow);
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .link-arrow { margin-top: 1.5rem; font-size: 1rem; display: inline-block; }

/* ---- CORPORATE VIDEO ---- */
.corporate-video {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.corporate-video h2 { color: var(--cream); }
.corporate-video h2 em { color: var(--gold-light); }
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(201,150,42,0.2);
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- WHY US ---- */
.why-us { background: var(--warm-white); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: var(--gold);
}
.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.pillar-card p { font-size: 0.9rem; }

/* ---- PRODUCTS PREVIEW ---- */
.products-preview { background: var(--cream); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  height: 400px;
}
.product-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover { transform: scale(1.02); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(26,39,68,0.9) 100%);
}
.product-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.product-info h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.3rem; }
.product-info p { color: rgba(250,247,242,0.7); font-size: 0.8rem; line-height: 1.4; }

/* ---- SEGMENTS ---- */
.segments { background: var(--navy); }
.segments h2 { color: var(--cream); }
.segments h2 em { color: var(--gold-light); }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.seg-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,150,42,0.2);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(250,247,242,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.seg-item:hover { background: rgba(201,150,42,0.1); border-color: var(--gold); }
.seg-icon { font-size: 1.4rem; }
.segments .btn-secondary {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.segments .btn-secondary:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ---- INFRA TEASER ---- */
.infra-teaser {
  position: relative;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.infra-bg { position: absolute; inset: 0; overflow: hidden; }
.infra-bg img { width: 100%; height: 100%; object-fit: cover; }
.infra-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,39,68,0.92) 0%, rgba(26,39,68,0.7) 60%, rgba(26,39,68,0.3) 100%);
}
.infra-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 6rem 2rem;
}
.infra-content h2 { color: var(--cream); margin-bottom: 1rem; }
.infra-content h2 em { color: var(--gold-light); }
.infra-content p { color: rgba(250,247,242,0.75); margin-bottom: 2rem; }

/* ---- GALLERY STRIP ---- */
.gallery-strip-section { background: var(--warm-white); padding: 5rem 0; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.gallery-strip-item {
  overflow: hidden;
  border-radius: 4px;
}
.gallery-strip-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-strip-item:hover img { transform: scale(1.06); }

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 3px solid var(--gold);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--cream); }
.cta-text h2 em { color: var(--gold-light); }
.cta-text p { color: rgba(250,247,242,0.7); max-width: 480px; margin-top: 0.8rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: #111827;
  color: rgba(250,247,242,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
}
.footer-logo { height: 52px; object-fit: contain; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 280px; }
.footer h4 { color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; font-family: var(--font-mono); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; font-size: 0.88rem; }
.footer ul a { color: rgba(250,247,242,0.65); text-decoration: none; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.4);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: calc(var(--nav-h) + 3rem) 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3.5rem); position: relative; z-index: 1; }
.page-hero p { color: rgba(250,247,242,0.65); max-width: 560px; margin: 1rem auto 0; position: relative; z-index: 1; }
.page-hero .breadcrumb { font-size: 0.78rem; color: rgba(250,247,242,0.5); margin-bottom: 0.8rem; position: relative; z-index: 1; }
.page-hero .breadcrumb a { color: var(--gold-light); text-decoration: none; }
.page-hero .section-tag { position: relative; z-index: 1; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- FORM STYLES ---- */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--navy); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .product-card { height: 260px; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Layout */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-secondary { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { height: 220px; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .page-hero { padding: calc(var(--nav-h) + 2rem) 1.5rem 2.5rem; }
  .hero-content { padding: calc(var(--nav-h) + 2rem) 1.5rem 6rem; }
  .hero-stat-bar { flex-wrap: wrap; gap: 0.5rem; padding: 1.2rem 1.5rem; }
  .stat-divider { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  /* Always-on solid navbar on mobile */
  #navbar { background: rgba(26,39,68,0.98); backdrop-filter: blur(12px); }

  /* Show hamburger */
  .nav-toggle { display: flex; }

  /* Mobile menu — hidden off-screen top, slides down when .open */
  .nav-links {
    display: flex !important;          /* always in DOM so transitions work */
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(20,31,58,0.98);
    backdrop-filter: blur(16px);
    padding: 0 1.5rem;
    gap: 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    /* Slide-up hidden state */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1),
                padding 0.3s ease;
    border-top: 1px solid rgba(201,150,42,0.15);
  }
  .nav-links.open {
    max-height: 520px;
    padding: 1rem 1.5rem 1.5rem;
  }

  /* Each link row */
  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 0.9rem 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(250,247,242,0.88);
    border-radius: 0;
    letter-spacing: 0.03em;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--gold-light);
  }
  /* CTA button in mobile menu */
  .nav-links .nav-cta {
    display: inline-block;
    margin: 0.8rem 0 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}
