:root {
  --navy: #0b1f4d;
  --navy-2: #12306f;
  --navy-3: #0f274f;
  --red: #b31217;
  --red-dark: #8f0f13;
  --gold: #c7a86b;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f6f8fc;
  --white: #ffffff;
  --border: #e6ebf2;
  --shadow: 0 12px 34px rgba(15, 30, 60, 0.08);
  --shadow-lg: 0 22px 60px rgba(8, 20, 48, 0.18);
  --radius: 20px;
  --transition: all 0.28s ease;
  --container: 1220px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.06rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #d51b21);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(179, 18, 23, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(11, 31, 77, 0.18);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--navy-2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230,235,242,0.95);
}

.navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand img {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.08;
  color: var(--navy);
}

.brand-text span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: inline-block;
  padding: 12px 12px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--red);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  overflow: hidden;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f3f8;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: #f8fbff;
  color: var(--red);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: var(--navy);
  cursor: pointer;
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(8, 22, 54, 0.90) 0%, rgba(8, 22, 54, 0.82) 48%, rgba(8, 22, 54, 0.68) 100%),
    url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding: 68px 0 78px;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-content p {
  max-width: 700px;
  color: #dbe7ff;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  max-width: 620px;
}

.hero-point {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px 16px;
}

.hero-point strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.98rem;
}

.hero-point span {
  color: #dbe7ff;
  font-size: 0.92rem;
}

.hero-panel {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-panel-logo {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
}

.hero-panel-logo img {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.hero-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-stat span {
  color: #e8f0ff;
  font-size: 0.88rem;
  font-weight: 500;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(8,22,54,0.92), rgba(18,48,111,0.86)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 90px 0;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-bottom: 14px;
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  color: #dbe7ff;
  font-size: 1.05rem;
}

.trust-strip {
  position: relative;
  margin-top: -42px;
  z-index: 2;
}

.trust-grid {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.trust-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid #edf2f7;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-grid,
.contact-grid,
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.about-image,
.side-image {
  position: relative;
}

.about-image img,
.side-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 280px;
  color: var(--navy);
  font-weight: 700;
}

.about-content h2,
.text-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-content p,
.text-block p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #f8fbff;
  border: 1px solid #ecf1f7;
  border-radius: 16px;
}

.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(179,18,23,0.1);
  color: var(--red);
  font-weight: 900;
  margin-top: 1px;
}

.services,
.process,
.contact,
.alt-bg {
  background: var(--bg);
}

.services-grid,
.why-grid,
.process-grid,
.projects-grid,
.footer-grid,
.cards-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1600px;
  margin: 0 auto;
}

.service-card,
.info-card,
.process-card,
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 228px;
  object-fit: cover;
  object-position: center;
}

.service-content {
  padding: 26px;
}

.service-content h3,
.info-card h3,
.process-card h3,
.why-card h3 {
  color: var(--navy);
  font-size: 1.36rem;
  margin-bottom: 10px;
}

.service-content p,
.info-card p,
.process-card p,
.why-card p {
  color: var(--muted);
}

.service-content p {
  margin-bottom: 20px;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  padding: 28px 24px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  padding: 28px;
}

.step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #db4d38);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  padding: 28px;
}

.projects-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(8,22,54,0.88), transparent);
  color: var(--white);
}

.cta-box {
  background:
    linear-gradient(120deg, rgba(11,31,77,0.96), rgba(18,48,111,0.94)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  border-radius: 28px;
  padding: 52px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #d9e5ff;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-card h3,
.form-card h3 {
  color: var(--navy);
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-list li {
  background: #f8fbff;
  border: 1px solid #ecf1f7;
  border-radius: 16px;
  padding: 15px 16px;
}

.contact-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8e1ec;
  border-radius: 14px;
  font-size: 1rem;
  outline: none;
  background: var(--white);
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(179,18,23,0.08);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

footer {
  background: var(--navy);
  color: #dbe5ff;
  padding: 70px 0 28px;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  margin-bottom: 36px;
}

.footer-brand img {
  width: 82px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #c6d5f5;
  max-width: 360px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.04rem;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.94rem;
  color: #c6d5f5;
}

.center-text {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .services-grid,
  .why-grid,
  .process-grid,
  .projects-grid,
  .footer-grid,
  .cards-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap.active {
    display: flex;
  }

  .nav-links,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links > li > a {
    padding: 12px 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    border: 1px solid var(--border);
    margin-top: 8px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hero-inner,
  .about-grid,
  .contact-grid,
  .two-col-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .projects-grid,
  .footer-grid,
  .form-row,
  .hero-panel-stats,
  .trust-grid,
  .cards-grid.three,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid #edf2f7;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 70px 0 86px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 60px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text span {
    font-size: 0.74rem;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .contact-card,
  .form-card,
  .hero-panel,
  .info-card,
  .process-card,
  .why-card {
    padding: 24px;
  }

  .cta-box {
    padding: 34px 24px;
  }
}

/* Shows the full Emergency Voice image without cutting off the bottom */
#voice-communication img {
  height: 360px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

/* Shows the full Commissioning image without cutting off the top or bottom */
#commissioning img {
  height: 420px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

/* ============================================
   Improvements: accessibility, motion, forms
   ============================================ */

/* Visually hidden but available to screen readers (form labels) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  z-index: 1001;
}

.skip-link:focus {
  left: 0;
}

/* Visible focus outline for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* Honeypot anti-spam field: hidden from humans */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Form alerts (replaces inline styles) */
.form-alert {
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.form-alert.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-alert.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

/* Thank-you page (replaces inline styles) */
.thanks-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.thanks-copy {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* If JavaScript never runs, don't leave .reveal content invisible */
html:not(.js) .reveal {
  opacity: 1;
  transform: none;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============================================
   Professional polish: typography, depth,
   multi-screen refinements
   ============================================ */

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
  font-weight: 800;
}

.eyebrow {
  letter-spacing: 2.2px;
}

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

/* Consistent hover lift across all cards */
.info-card,
.process-card,
.why-card {
  transition: var(--transition);
}

.info-card:hover,
.process-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #dfe7f2;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Subtle zoom on service imagery */
.service-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.footer-col a {
  transition: var(--transition);
}

/* Large desktop and wide monitors */
@media (min-width: 1600px) {
  :root {
    --container: 1360px;
  }

  .section {
    padding: 110px 0;
  }

  body {
    font-size: 1.03rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 64px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-box {
    padding: 34px 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================
   New brand logo + photo layout
   ============================================ */

/* Wide banner logo in the header (name is part of the logo now) */
.brand {
  min-width: 0;
}

.brand img.brand-logo {
  width: auto;
  height: 54px;
}

@media (max-width: 920px) {
  .brand img.brand-logo {
    height: 40px;
  }
}

/* Footer logo sits on a white chip so it reads on the navy background */
.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 240px;
  height: auto;
  margin-bottom: 0;
}

/* Clean branded gradient for inner-page heroes (replaces stock photo) */
.page-hero {
  background: linear-gradient(115deg, #081636 0%, var(--navy-2) 55%, #17408f 100%);
}

/* --- Text-only service cards (home page) --- */
.service-card.text-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card.text-card::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--navy));
}

.service-card.text-card .service-content {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card.text-card .service-content p {
  flex: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(11, 31, 77, 0.22);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card.text-card .btn {
  align-self: flex-start;
}
