/**************************
  DEFENSE SECTIONS CSS
***************************/
@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --burgundy: #8B2635;
  --rust: #C4694F;
  --cream: #F5F0E8;
  --champagne: #E8DCC4;
  --rose-gold: #D4A574;
  --slate: #4A5568;
  --charcoal: #2D3748;
  --white: #FFFFFF;
  --light-gray: #F7FAFC;
  --light-saffron: #FFF4E6;
  --light-peach: #FFE8D6;
}

/* Prevent Horizontal Overflow Globally */
html, body, #wrapper {
  overflow-x: hidden;
  width: 100%;
}

/* HERO */
.hero-elite {
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 550px;
  max-height: 820px;
  background: linear-gradient(135deg, rgba(139, 38, 53, 0.85) 0%, rgba(45, 55, 72, 0.9) 100%),
              url('https://images.pexels.com/photos/3586966/pexels-photo-3586966.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 40px 30px 30px;
  box-sizing: border-box;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(196, 105, 79, 0.12) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content-box {
  max-width: 900px;
  text-align: center;
  padding: 0 30px;
  position: relative;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-badge-pill {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--rose-gold);
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid var(--rose-gold);
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-display-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.title-line-1, .title-line-2 {
  display: block;
  animation: fadeInUp 1s ease-out;
}

.title-line-2 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lead-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-elite {
  font-family: 'Russo One', sans-serif;
  padding: 15px 36px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  position: relative;
  z-index: 10;
}

.btn-hero-elite.primary {
  background: var(--rust);
  color: var(--white);
  border: 2px solid var(--rust);
}

.btn-hero-elite.primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(196, 105, 79, 0.3);
}

/* Floating Stats - centered flex layout */
.floating-stats {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  z-index: 5;
  width: min(850px, 90vw);
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: auto;
  margin-bottom: 10px;
}

.stat-float-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
  pointer-events: auto;
  flex: 1 1 180px;
  max-width: 240px;
  min-width: 140px;
  box-sizing: border-box;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.stat-number {
  font-family: 'Russo One', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--rose-gold);
  margin-bottom: 4px;
}

.stat-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VALUE PROPOSITION */
.value-prop-section {
  width: 100%;
  background: var(--cream);
  padding: 80px 0;
}

.value-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  box-sizing: border-box;
}

.value-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.value-heading {
  font-family: 'Russo One', sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.value-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--rust) 100%);
  margin-bottom: 30px;
}

.value-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 35px;
}

.value-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-pill {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--burgundy);
  background: var(--champagne);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--rose-gold);
}

.quote-card-modern {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--light-saffron) 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 5px solid var(--rust);
}

.quote-icon-modern {
  font-family: 'Russo One', sans-serif;
  font-size: 60px;
  color: rgba(139, 38, 53, 0.15);
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}

.quote-modern-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* CAPABILITIES MODERN */
.capabilities-modern {
  width: 100%;
  background: var(--white);
  padding: 70px 0;
}

.capabilities-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}

.section-head-modern {
  text-align: center;
  margin-bottom: 70px;
}

.section-label-modern {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading-modern {
  font-family: 'Russo One', sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-desc-modern {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
}

.capabilities-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.cap-card-modern {
  background: var(--light-saffron);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #FFE4C4;
}

.cap-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.cap-visual {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.cap-card-modern:hover .cap-visual {
  transform: scale(1.05);
}

.cap-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.defense-bg-modern {
  background: linear-gradient(135deg, rgba(139, 38, 53, 0.3) 0%, rgba(45, 55, 72, 0.35) 100%),
              url('/Images/defence/support.webp') center/cover;
}

.surveillance-bg-modern {
  background: linear-gradient(135deg, rgba(196, 105, 79, 0.3) 0%, rgba(74, 85, 104, 0.35) 100%),
              url('/Images/defence/cybersecurity.webp') center/cover;
}

.deterrence-bg-modern {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(45, 55, 72, 0.35) 100%),
              url('/Images/defence/deterrencesolution.webp') center/cover;
}

.cap-body-modern {
  padding: 36px 32px;
}

.cap-title-modern {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.cap-summary-modern {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cap-features-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cap-features-modern li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dot-accent {
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* TECH SHOWCASE */
.tech-showcase-modern {
  width: 100%;
  background: var(--light-peach);
  overflow-x: hidden;
}

.tech-container-wide {
  max-width: 100%;
  width: 100%;
}

.section-header-center {
  text-align: center;
  padding: 60px 5% 50px;
}

.section-header-center.white-text {
  padding: 60px 5% 50px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-eyebrow.white {
  color: var(--rust);
}

.section-title {
  font-family: 'Russo One', sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title.white {
  color: var(--charcoal);
}

.tech-row-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 92%;
  max-width: 1300px;
  margin: 0 auto 50px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.15);
}

.tech-row-layout.reverse {
  direction: rtl;
}

.tech-row-layout.reverse > * {
  direction: ltr;
}

.tech-image-col {
  width: 100%;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tech-img-1-modern {
  background-image: linear-gradient(135deg, rgba(139, 38, 53, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
                    url('/Images/defence/autosystems.webp');
}

.tech-img-2-modern {
  background-image: linear-gradient(135deg, rgba(196, 105, 79, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
                    url('/Images/defence/maritimesecurity.webp');
}

.tech-content-col {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.tech-badge-modern {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 2px;
  margin-top: 0;
}

.tech-heading-modern {
  font-family: 'Russo One', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-top: 0;
  margin-bottom: 12px;
}

.tech-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
}

.tech-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-points li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.tech-points li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-size: 18px;
}

/* PARTNERS SECTION */
.partners-section {
  width: 100%;
  background: var(--cream);
  padding: 70px 0;
}

.content-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}

.section-title-pro {
  font-family: 'Russo One', sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
}

.partners-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-box {
  background: var(--white);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--rust);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.partner-box:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.partner-logo-text {
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 15px;
}

.partner-heading {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.partner-description {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* CTA ELEGANT */
.cta-elegant {
  width: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, rgba(139, 38, 53, 0.92) 0%, rgba(45, 55, 72, 0.92) 100%),
              url('https://images.pexels.com/photos/163726/belgium-antwerp-shipping-container-163726.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
  box-sizing: border-box;
}

.cta-elegant-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.cta-elegant-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  width: 100%;
}

.cta-elegant-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.btn-cta-elegant {
  font-family: 'Russo One', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  background: var(--white);
  color: var(--burgundy);
  text-transform: uppercase;
  transition: all 0.4s ease;
  border: 3px solid var(--white);
  border-radius: 6px;
}

.btn-cta-elegant:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE - FIXED */
@media (max-width: 1200px) {
  .value-container { 
    grid-template-columns: 1fr; 
    gap: 50px; 
  }
  
  .tech-row-layout, .tech-row-layout.reverse { 
    display: flex;
    flex-direction: column;
    direction: ltr;
  }
  
  .tech-image-col { 
    min-height: 400px; 
    order: 1;
  }
  
  .tech-content-col {
    order: 2;
  }
  
  .hero-elite {
    height: auto;
    min-height: 80vh;
    padding-bottom: 40px;
  }
  
  .floating-stats { 
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    margin: 30px auto 0;
    max-width: calc(100vw - 60px);
    width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-elite {
    height: auto;
    min-height: 80vh;
    padding-bottom: 40px;
  }
  
  .hero-content-box {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-display-title { 
    font-size: 36px;
    max-width: 100%;
    word-wrap: break-word;
  }
  
  .hero-lead-text {
    font-size: 15px;
    padding: 0 10px;
    max-width: 100%;
  }
  
  .hero-button-row {
    justify-content: center;
  }
  
  .value-heading { 
    font-size: 32px; 
  }
  
  .section-heading-modern, .section-title-pro, .section-title { 
    font-size: 32px; 
  }
  
  .tech-content-col { 
    padding: 40px 24px;
    order: 2;
  }

  .tech-image-col {
    order: 1;
    min-height: 280px;
  }
  
  .capabilities-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .partners-grid-layout { 
    grid-template-columns: 1fr; 
  }
  
  .cta-elegant {
    padding: 40px 20px;
    min-height: auto;
  }
  
  .cta-elegant-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .cta-elegant-title { 
    font-size: 26px;
    padding: 0 10px;
  }
  
  .btn-cta-elegant {
    padding: 12px 28px;
    font-size: 12px;
  }
  
  .floating-stats { 
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    margin: 30px auto 0;
    max-width: calc(100vw - 40px);
    width: 90%;
  }
  
  .stat-float-card {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero-elite {
    height: auto;
    min-height: 80vh;
    padding-bottom: 30px;
  }
  
  .hero-content-box {
    padding: 0 15px;
  }
  
  .hero-display-title { 
    font-size: 28px;
    gap: 4px;
    max-width: 100%;
  }
  
  .hero-lead-text {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0 5px;
  }
  
  .hero-badge-pill {
    font-size: 10px;
    padding: 6px 14px;
    margin-bottom: 18px;
  }
  
  .btn-hero-elite.primary {
    padding: 10px 24px;
    font-size: 11px;
  }
  
  .cta-elegant {
    padding: 40px 15px;
    min-height: auto;
  }
  
  .cta-elegant-content {
    padding: 0 10px;
  }
  
  .cta-elegant-title { 
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .btn-cta-elegant {
    padding: 10px 24px;
    font-size: 11px;
  }
  
  .value-heading {
    font-size: 24px;
  }
  
  .section-heading-modern, .section-title-pro, .section-title {
    font-size: 24px;
  }
  
  .floating-stats {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    margin: 24px auto 0;
    max-width: calc(100vw - 30px);
    width: 95%;
  }
  
  .stat-float-card {
    padding: 8px 12px;
    min-width: auto;
  }
  
  .stat-icon {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .stat-number {
    font-size: 18px;
  }
  
  .stat-text {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
}


/* Hero Harmonization */
.portfolio-hero--defense {
  height: calc(100vh - 80px);
  min-height: 550px;
  max-height: 820px;
  padding: 40px 5% 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.portfolio-hero--defense .portfolio-hero__badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.portfolio-hero--defense .portfolio-hero__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.portfolio-hero--defense .portfolio-hero__subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.portfolio-hero--defense .portfolio-hero__actions {
  margin-top: 6px;
}

.portfolio-hero--defense .portfolio-hero__stats {
  border-top: none;
  padding-top: 0;
  margin: 0;
}

/* Floating stat cards - perfectly centered in flex flow */
.portfolio-hero--defense .floating-stats {
  position: relative;
  left: auto;
  transform: none;
  bottom: auto;
  width: min(850px, 88vw);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: auto;
  margin-bottom: 10px;
}

.portfolio-hero--defense .stat-float-card {
  flex: 1 1 180px;
  max-width: 240px;
  min-width: 140px;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 1023px) {
  .portfolio-hero--defense {
    height: auto;
    min-height: 80vh;
    padding-bottom: 40px;
  }
  .portfolio-hero--defense .floating-stats {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
