:root {
  --bg: #f8fbf7;
  --surface: #ffffff;
  --surface-strong: #e6f1e9;
  --text: #11221f;
  --muted: #4f645d;
  --accent: #2d8b4f;
  --accent-dark: #20673a;
  --accent-light: #57b96d;
  --border: rgba(45, 139, 79, 0.12);
  --shadow: 0 18px 48px rgba(27, 62, 44, 0.08);
  --shadow-hover: 0 28px 64px rgba(27, 62, 44, 0.15);
  --gradient-primary: linear-gradient(135deg, #2d8b4f, #57b96d);
  --gradient-secondary: linear-gradient(135deg, #f8fbf7, #e6f1e9);
  --radius: 24px;
  --radius-large: 32px;
}

* {
  box-sizing: border-box;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

html {
  scroll-behavior: smooth;
}

/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(45, 139, 79, 0.4) 100%);
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.carousel-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.carousel-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 0 0 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 3;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
  display: flex;
  gap: 0.75rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #fff;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .hero-carousel {
    height: 70vh;
    min-height: 500px;
  }

  .carousel-content {
    padding: 0 1rem;
  }

  .carousel-content h1 {
    font-size: 2.5rem;
  }

  .carousel-content p {
    font-size: 1.1rem;
  }

  .carousel-nav {
    bottom: 1rem;
    gap: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 60vh;
    min-height: 400px;
  }

  .carousel-content h1 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f9fbf7 0%, #f2f7f1 50%, #e8f5e8 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(45, 139, 79, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  /* background: var(--gradient-primary); */
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(45, 139, 79, 0.2);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand:hover .brand-mark {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(45, 139, 79, 0.3);
}

.brand-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.main-nav ul li a:hover {
  color: var(--accent-dark);
}

/* Submenu styling */
.main-nav ul li.has-submenu > a::after {
  content: '▾';
  margin-left: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(45, 139, 79, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.submenu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--muted);
  font-weight: 500;
}

.submenu li a:hover {
  background: transparent;
  color: var(--accent-dark);
}

/* Show submenu on hover */
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.main-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 1.3rem;
}

.section {
  padding: 5rem 0;
}

.section-gradient {
  background: linear-gradient(135deg, #f8fbf7 0%, #e6f1e9 25%, #d4e8db 50%, #c2dfcd 75%, #b0d6bf 100%);
  position: relative;
}

.section-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(45, 139, 79, 0.05) 0%, rgba(87, 185, 109, 0.08) 50%, rgba(45, 139, 79, 0.05) 100%);
  pointer-events: none;
}

.hero {
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.services-list li {
  margin: 0.4rem 0;
  font-weight: 500;
  color: var(--muted);
}

.services-list li i {
  margin-right: 8px;
  color: var(--accent-dark);
}
.hero-copy h1,
.section-header h2,
.about-copy h2,
.certification-card h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 2.8vw, 3.8rem);
  line-height: 1.03;
}

.hero-text,
.about-copy p,
.certification-card p,
.contact-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  margin: 2rem 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(45, 139, 79, 0.3);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 139, 79, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(45, 139, 79, 0.4);
}

.btn-secondary {
  background: rgba(45, 139, 79, 0.08);
  color: var(--accent-dark);
  border-color: rgba(45, 139, 79, 0.2);
}

.btn-secondary:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-meta div {
  background: #fff;
  border: 1px solid rgba(45, 139, 79, 0.12);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  min-width: 180px;
}

.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-meta strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  min-height: 500px;
  background: url('../images/man.png') center/cover no-repeat;
  background-size: 100% 100%;

  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.hero-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 40%);
  z-index: 1;
}

.image-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: #fff;
  border: 1px solid rgba(45, 139, 79, 0.16);
  color: var(--accent-dark);
  padding: 0.95rem 1rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(21, 59, 36, 0.08);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('unsplash.com/photo-1582139329536-e7284fece509?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.1) brightness(1.05);
  transition: transform 0.5s ease;
}

.hero-image-card:hover .hero-image {
  transform: scale(1.05);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(12, 37, 25, 0.3));
  z-index: 1;
}

.services-section {
  padding-top: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  position: relative;
  margin-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(45, 139, 79, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(45, 139, 79, 0.2);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  margin: 0 0 1rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
}

.gallery-section {
  background: var(--gradient-secondary);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.gallery-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-overlay h3 i {
  color: #fff;
  font-size: 1rem;
  opacity: 0.9;
  flex-shrink: 0;
}

/* Inline service icons */
.hero-text i,
.about-copy p i {
  color: var(--accent);
  margin: 0 0.3rem;
  font-size: 1rem;
  opacity: 0.8;
}

.gallery-overlay p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.about-section {
  background: #f4faf4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  min-height: 420px;
  border-radius: var(--radius-large);
  background-image: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.about-section:hover .about-image {
  transform: scale(1.02);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 1rem;
      color: var(--muted);
}

.about-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.about-list i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.certification-section {
  padding: 4rem 0;
}

.certification-card {
  background: linear-gradient(135deg, #fff, #eef7ee);
  border: 1px solid rgba(45, 139, 79, 0.12);
  border-radius: 32px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 24px 50px rgba(40, 96, 55, 0.08);
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(45, 139, 79, 0.12);
}

.certification-badge i {
  color: var(--accent);
  font-size: 2rem;
}

.certification-badge strong {
  display: block;
  font-size: 1.1rem;
}

.certification-badge span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-copy {
  max-width: 660px;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  gap: 1rem;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(45, 139, 79, 0.2);
}

.contact-card i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.contact-card:hover i {
  transform: scale(1.1);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.contact-card a {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.contact-form-card {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f2f7f1);
  box-shadow: var(--shadow);
}

.contact-image-placeholder {
  min-height: 320px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.contact-image-placeholder span {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .certification-card {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(45, 139, 79, 0.08);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul li a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 139, 79, 0.08);
  }

  .main-nav ul li.has-submenu > a::after {
    float: right;
    margin-right: 0.5rem;
  }

  .main-nav ul li.has-submenu .submenu {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul li.has-submenu .submenu li a {
    padding-left: 1.5rem;
    border-bottom: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-image-card {
    min-height: 360px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .contact-image-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .hero-copy h1,
  .section-header h2,
  .about-copy h2,
  .certification-card h2,
  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .hero-meta {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card i {
    justify-self: start;
  }
}
