/* ==========================================================================
   SAJID TECH — DESIGN SYSTEM & NEW HOMEPAGE STYLESHEET
   Theme: Emerald Teal (#0d9488), Deep Slate (#0f172a), Soft Mint (#f4fbf7)
   ========================================================================== */

:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-bright: #14b8a6;
  --teal-light: #e6f4f1;
  --teal-soft: #f0fdf4;
  --slate: #0f172a;
  --slate-soft: #475569;
  --slate-muted: #64748b;
  --bg-mint: #f4fbf7;
  --bg-white: #ffffff;
  --line: #e2e8f0;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 36px rgba(13, 148, 136, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: "Hind Siliguri", "Manrope", system-ui, sans-serif;
  color: var(--slate);
  background-color: var(--bg-mint);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container-max), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--slate);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.announcement-bar strong {
  color: var(--teal-bright);
}
.announcement-phone {
  color: var(--teal-bright);
  font-weight: 700;
}
.announcement-phone:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 76px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark-wrapper {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover .brand-mark-wrapper {
  transform: scale(1.08) rotate(-3deg);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: var(--slate);
}
.brand-highlight {
  color: var(--teal);
}
.brand-copy small {
  font-size: 11px;
  color: var(--slate-muted);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  color: var(--slate-soft);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition);
}
.desktop-nav a:hover, .desktop-nav a.nav-highlight {
  color: var(--teal);
}
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
}

.mobile-menu {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.35);
}
.btn-outline {
  background: #ffffff;
  color: var(--slate);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-soft);
}
.btn-header {
  background: var(--teal-soft);
  color: var(--teal);
  border-color: rgba(13, 148, 136, 0.2);
}
.btn-header:hover {
  background: var(--teal);
  color: #ffffff;
}
.btn-large {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}
.btn-small {
  padding: 8px 14px;
  font-size: 13px;
}
.btn-block {
  width: 100%;
}

/* Hero Section New */
.hero-new {
  padding: 64px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbf7 60%, #e6f4f1 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--teal-soft);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2);
}
.hero-left h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--slate);
  margin-bottom: 20px;
}
.highlight-text {
  color: var(--teal);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--slate-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions-new {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-soft);
}
.check-icon {
  color: var(--teal);
  font-weight: 800;
}

/* Mockup Frame */
.mockup-container {
  position: relative;
  width: 100%;
}
.mockup-browser {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-bar {
  height: 40px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
}
.m-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.m-dot.red { background: #ef4444; }
.m-dot.yellow { background: #f59e0b; }
.m-dot.green { background: #10b981; }
.m-url {
  margin-left: auto;
  font-size: 11px;
  color: var(--slate-muted);
  background: #ffffff;
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.mockup-content {
  padding: 24px;
  background: #fafafa;
}
.mockup-header-stub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.stub-brand {
  width: 90px;
  height: 14px;
  background: var(--teal);
  border-radius: 4px;
}
.stub-nav {
  width: 120px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 4px;
}
.mockup-banner-stub {
  background: linear-gradient(135deg, #f0fdf4, #e6f4f1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}
.stub-tag {
  font-size: 11px;
  color: var(--teal-dark);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}
.mockup-banner-stub h4 {
  font-size: 20px;
  color: var(--slate);
  margin-bottom: 12px;
}
.stub-btn {
  display: inline-block;
  padding: 6px 14px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}
.mockup-grid-stub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stub-card {
  height: 80px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.float-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-1 {
  top: -16px;
  right: -16px;
}
.badge-2 {
  bottom: -20px;
  left: -20px;
}
.badge-icon {
  font-size: 22px;
}
.float-badge strong {
  display: block;
  font-size: 14px;
  color: var(--slate);
}
.float-badge small {
  font-size: 11px;
  color: var(--slate-muted);
}

/* Stats Bar */
.stats-bar {
  background: #ffffff;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  padding: 12px;
}
.stat-number {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
}
.stat-label {
  font-size: 14px;
  color: var(--slate-muted);
  font-weight: 600;
}

/* Shared Section */
.section {
  padding: 88px 0;
}
.section-alt {
  background: #ffffff;
  border-block: 1px solid var(--line);
}
.section-head-new {
  max-width: 680px;
  margin: 0 auto 52px;
}
.text-center {
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  margin-bottom: 12px;
}
.section-head-new h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 12px;
}
.section-head-new p {
  color: var(--slate-soft);
  font-size: 17px;
}

/* Services 4-Grid */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.featured-box {
  position: relative;
  background: linear-gradient(135deg, #081a17 0%, #0f2b25 100%);
  color: #ffffff;
  border-color: #081a17;
}
.featured-box h3, .featured-box p {
  color: #ffffff;
}
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.service-icon-new {
  font-size: 36px;
  margin-bottom: 18px;
}
.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-box p {
  font-size: 14px;
  color: var(--slate-soft);
  margin-bottom: 18px;
}
.service-bullets {
  list-style: none;
}
.service-bullets li {
  font-size: 13px;
  padding: 4px 0;
  color: var(--slate-muted);
}
.featured-box .service-bullets li {
  color: rgba(255,255,255,0.75);
}

/* Demos Grid */
.demos-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.demo-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.demo-thumb {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.thumb-shop { background: linear-gradient(135deg, #10b981, #0d9488); }
.thumb-clean { background: linear-gradient(135deg, #0284c7, #0369a1); }
.thumb-food { background: linear-gradient(135deg, #f59e0b, #d97706); }
.thumb-biz { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.thumb-boutique { background: linear-gradient(135deg, #ec4899, #be185d); }
.thumb-ai { background: linear-gradient(135deg, #0f172a, #1e293b); }
.demo-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}
.demo-details {
  padding: 20px;
}
.demo-details h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.demo-details p {
  font-size: 13px;
  color: var(--slate-soft);
  margin-bottom: 16px;
}
.demo-btn-group {
  display: flex;
  gap: 8px;
}

/* Guarantee Banner */
.guarantee-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #e6f4f1 100%);
  border: 2px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.guarantee-icon {
  font-size: 42px;
}
.guarantee-banner h3 {
  font-size: 20px;
  color: var(--slate);
  margin-bottom: 4px;
}
.guarantee-banner p {
  font-size: 15px;
  color: var(--slate-soft);
}

/* Pricing 3-Box */
.pricing-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.popular-price-box {
  position: relative;
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.popular-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}
.price-header {
  margin-bottom: 24px;
}
.package-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--slate);
  display: block;
}
.price-header p {
  font-size: 13px;
  color: var(--slate-muted);
  margin-top: 4px;
}
.price-tag {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
}
.currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
}
.amount {
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--slate);
  line-height: 1;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: var(--slate-soft);
}

/* Process 4-Steps */
.process-steps-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(13,148,136,0.2);
  font-weight: 800;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--slate-soft);
}

/* FAQ Accordion */
.faq-accordion-container {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--slate);
  cursor: pointer;
}
.faq-icon {
  font-size: 20px;
  color: var(--teal);
}
.faq-content {
  padding: 0 24px 20px;
  display: none;
  font-size: 15px;
  color: var(--slate-soft);
}
.faq-item.active .faq-content {
  display: block;
}

/* Contact Box */
.contact-box-wrapper {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow-md);
}
.contact-left h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-left p {
  color: var(--slate-soft);
  margin-bottom: 32px;
}
.contact-info-list {
  display: grid;
  gap: 16px;
}
.c-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-icon {
  font-size: 28px;
}
.c-info-item strong {
  display: block;
  font-size: 14px;
  color: var(--slate-muted);
}
.c-info-item a {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
}

.quick-form {
  background: var(--bg-mint);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.quick-form h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.quick-form p {
  font-size: 13px;
  color: var(--slate-muted);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--slate);
}
.form-group input, .form-group select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  background: #ffffff;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}

/* Footer */
.site-footer {
  background: var(--slate);
  color: #ffffff;
  padding-top: 64px;
}
.footer-inner-new {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand-footer .brand-copy strong {
  color: #ffffff;
}
.footer-desc {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}
.footer-col-links h5, .footer-col-contact h5 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--teal-bright);
}
.footer-col-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
}
.footer-col-links a:hover {
  color: #ffffff;
}
.footer-col-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
}
.footer-bottom-bar {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Floating WhatsApp Widget */
.floating-whatsapp-new {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  z-index: 999;
  transition: transform var(--transition);
}
.floating-whatsapp-new:hover {
  transform: scale(1.1);
}

/* Apps Showcase 3-Grid */
.apps-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition);
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.app-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.app-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 24px;
  border-radius: 12px;
}
.icon-green { background: #f0fdf4; }
.icon-emerald { background: #ecfdf5; }
.icon-blue { background: #eff6ff; }
.app-card-header h4 {
  font-size: 18px;
  margin-bottom: 2px;
  color: var(--slate);
}
.app-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-muted);
}
.app-card p {
  font-size: 14px;
  color: var(--slate-soft);
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid-new, .contact-box-wrapper {
    grid-template-columns: 1fr;
  }
  .services-grid-4, .stats-grid, .process-steps-4, .apps-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .demos-grid-container, .pricing-cards-3 {
    grid-template-columns: 1fr;
  }
  .popular-price-box {
    transform: none;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .services-grid-4, .stats-grid, .process-steps-4, .footer-inner-new, .apps-grid-3 {
    grid-template-columns: 1fr;
  }
  .announcement-inner {
    justify-content: center;
  }
}