/* Glotech IT Solutions - styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0A1E3C;      /* Dark blue from logo */
  --accent: #00A0E1;     /* Bright blue from logo */
  --accent-hover: #0088C2; /* Slightly darker blue for hover */
  --background: #FFFFFF;
  --light-bg: #F8FAFC;    /* Light background for sections */
  --text: #2D3748;        /* Dark gray for text */
  --text-light: #4A5568;  /* Lighter gray for secondary text */
  --shadow: 0 4px 24px rgba(10, 30, 60, 0.08);
  --radius: 12px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--background);
  color: var(--primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
  background-attachment: fixed;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  margin-bottom: -1px;
  padding-top: 70px; /* Reduced padding to match new navbar height */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-logo {
  margin-bottom: 2rem;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.hero-logo:hover img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 30, 60, 0.85) 0%, 
    rgba(10, 30, 60, 0.75) 50%,
    rgba(0, 160, 225, 0.6) 100%);
  z-index: 2;
  top: 0; 
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.subtitle {
  font-size: 1.35rem;
  margin: 0.25rem 0;
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.4;
}

.hero-content .subtitle:last-child {
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #00e0b2;
  color: #101820;
  box-shadow: 0 8px 32px rgba(0,255,208,0.10);
}

/* Navigation Bar */
/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; /* Reduced height */
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              background 0.3s ease,
              box-shadow 0.3s ease;
}

.navbar.visible {
  transform: translateY(0);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0 5%;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-logo img {
  height: 60px; /* Increased logo size */
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-logo:hover img {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px;
  margin-left: 0.5rem;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 160, 225, 0.3);
}

/* Services Section */
.services {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 5%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services h2 {
  text-align: center;
  margin: 0 auto 3.5rem;
  font-size: 2.25rem;
  color: var(--primary);
  position: relative;
  padding: 0 1rem;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 40px rgba(0, 160, 225, 0.12);
  transform: translateY(-5px);
  border-color: rgba(0, 160, 225, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.8rem;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.service-card:hover .service-icon {
  transform: translateY(-5px) scale(1.1);
}

.service-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent);
  opacity: 0.7;
}

.service-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Technologies Section */
.technologies {
  padding: 3rem 2rem 1rem;
  background-color: #f8f9fa;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.technologies h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
  z-index: 2;
}

.tech-scroll-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem 0 0.5rem;
}

.tech-logos {
  display: flex;
  gap: 2.5rem;
  padding: 1rem 0;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 160px;
  padding: 0 1.2rem;
}

.tech-logo:hover {
  transform: translateY(-5px);
}

.logo-container {
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.2rem;
  transition: all 0.3s ease;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.tech-logo:hover .logo-container {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.tech-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.tech-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-top: 0.6rem;
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-120px * 10)); /* Width of one set of logos */
  }
}

/* Pause animation on hover */
.tech-scroll-container:hover .tech-logos {
  animation-play-state: paused;
}

/* Gradient fade effect on the sides */
.tech-scroll-container::before,
.tech-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.tech-scroll-container::before {
  left: 0;
  background: linear-gradient(90deg, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
}

.tech-scroll-container::after {
  right: 0;
  background: linear-gradient(270deg, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-logo {
    width: 100px;
  }
  
  .logo-container {
    width: 70px;
    height: 70px;
  }
  
  .tech-name {
    font-size: 0.75rem;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100px * 10)); /* Adjusted for smaller logos */
    }
  }
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  min-height: 50px;
}
.tech-badge.aws { background: #FF9900; }
.tech-badge.kubernetes { background: #326CE5; }
.tech-badge.terraform { background: #7B42BC; }
.tech-badge.prometheus { background: #E6522C; }
.tech-badge.grafana { background: #F46800; }
.tech-badge.docker { background: #2496ED; }
.tech-badge.python { background: #3776AB; }
.tech-badge.github { background: #181717; }
.tech-badge:hover {
  background: #f0fffa;
  box-shadow: 0 4px 18px rgba(0,255,208,0.10);
}

/* AI & LLM Capabilities Section */
.ai-capabilities {
  padding: 6rem 5%;
  text-align: center;
  background: var(--light-bg);
}

.ai-capabilities h2 {
  font-size: 2.3rem;
  margin: 0 auto 3.5rem;
  font-weight: 700;
  max-width: 800px;
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.ai-capabilities h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* How We Work Section */
.how-we-work {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2vw 3rem 2vw;
  text-align: center;
}
.how-we-work h2 {
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
}
.work-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.work-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.work-item:hover {
  box-shadow: 0 8px 32px rgba(0,255,208,0.10);
  transform: translateY(-6px) scale(1.02);
}
.work-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
}
.work-title {
  font-size: 1.08rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  max-width: 540px;
  margin: 0 auto;
  padding: 5rem 2vw 3rem 2vw;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 1.5rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1.5px solid #e7e7e7;
  font-size: 1.08rem;
  font-family: var(--font-main);
  outline: none;
  transition: border var(--transition), box-shadow var(--transition);
  background: #fafbfc;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 10px rgba(0,255,208,0.09);
}
.contact-form button {
  align-self: flex-end;
}
.contact-email {
  font-size: 1.03rem;
  color: #333;
  margin-top: 0.7rem;
}
.contact-email a {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #f7fafd;
  color: #222;
  text-align: center;
  padding: 2rem 0 1.2rem 0;
  font-size: 1.01rem;
  margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .services-grid, .work-columns {
    grid-template-columns: 1fr 1fr !important;
    flex-direction: row;
  }
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none; /* Hidden by default on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  position: relative;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Active state for hamburger */
.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Our Approach Section */
.our-approach {
  padding: 6rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.our-approach h2 {
  text-align: center;
  margin: 0 auto 3.5rem;
  font-size: 2.25rem;
  color: var(--primary);
  position: relative;
  padding: 0 1rem;
  width: 100%;
}

.our-approach h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.work-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  justify-content: center;
}

.work-item {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.work-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.work-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.work-item:hover .work-icon {
  transform: scale(1.1);
}

.work-item h3 {
  margin: 0 0 1rem 0;
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1.4;
}

.work-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for Our Approach */
@media (max-width: 1199px) {
  .work-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .work-columns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 767px) {
  .our-approach {
    padding: 4rem 1.5rem;
  }
  
  .work-columns {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .work-item {
    max-width: 100%;
  }
}

/* Trustworthy AI Section */
.trustworthy-ai {
  padding: 6rem 2rem;
  background: var(--primary);
  color: white;
  text-align: center;
  overflow: hidden;
}

.trustworthy-ai h2 {
  font-size: 2.25rem;
  margin: 0 auto 1rem;
  color: white;
  position: relative;
  display: inline-block;
  padding: 0 1rem;
}

.trustworthy-ai h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 1rem;
}

.ai-practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ai-practice {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 180px;
  justify-content: center;
}

.ai-practice:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ai-practice-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.ai-practice:hover .ai-practice-icon {
  transform: scale(1.1);
}

.ai-practice h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: white;
  line-height: 1.4;
}

/* Responsive Adjustments */
@media (min-width: 1600px) {
  .ai-practices-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .ai-practice {
    min-height: 200px;
  }
}

@media (max-width: 1199px) {
  .ai-practices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ai-practices-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .services,
  .our-approach,
  .trustworthy-ai {
    padding: 4rem 1.5rem;
  }
  
  .services-grid,
  .ai-practices-grid,
  .work-columns {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .section-subtitle {
    padding: 0 1rem;
  }
}

/* Menu open state */
.menu-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  /* Show mobile menu button on mobile */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide regular nav links by default on mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    margin: 0;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  /* Show nav links when menu is active */
  .nav-links.active {
    right: 0;
  }

  /* Style nav links for mobile */
  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    text-align: center;
  }

  /* Adjust CTA button for mobile */
  .nav-cta {
    margin: 1rem 0 0;
    width: 100%;
    text-align: center;
  }

  .services-grid, .work-columns {
    grid-template-columns: 1fr !important;
    flex-direction: column;
    gap: 1.3rem;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .navbar {
    font-size: 1rem;
    padding: 0.9rem 3vw;
  }
}
@media (max-width: 500px) {
  .hero-content {
    padding: 0 1vw;
  }
  .services, .technologies, .how-we-work, .contact, .ai-capabilities {
    padding: 3rem 1vw 2rem 1vw;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.4rem;
  }
}
