/* ============================================================
   CARGO.CSS — FedEx/DHL-Inspired Professional Logistics Design
   ============================================================ */

/* ----- CSS Custom Properties ----- */
:root {
  --navy: #0a1628;
  --navy-light: #132040;
  --navy-mid: #1b2d4f;
  --orange: #ff6b2c;
  --orange-dark: #e55a1b;
  --orange-glow: rgba(255, 107, 44, 0.3);
  --blue-accent: #2563eb;
  --blue-light: #60a5fa;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text-dark: #0f172a;
  --text-body: #334155;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', 'Source Sans Pro', -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

/* ----- Utility ----- */
.container-cargo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Top Contact Bar ----- */
.top-bar {
  background: var(--navy);
  color: var(--gray-400);
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}

.top-bar .container-cargo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-left li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left li i {
  color: var(--orange);
  font-size: 0.75rem;
}

.top-bar-left a {
  color: var(--gray-400);
  transition: var(--transition);
}

.top-bar-left a:hover {
  color: var(--orange);
}

.top-bar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-right a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-bar-right a:hover {
  color: var(--orange);
}

/* ----- Sticky Navbar ----- */
.cargo-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cargo-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cargo-nav .container-cargo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.cargo-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cargo-nav .nav-logo img {
  height: 50px;
  width: auto;
}

.cargo-nav .nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav-menu-items {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu-items a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-menu-items a:hover {
  color: var(--orange);
  background: rgba(255, 107, 44, 0.06);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.3px !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px var(--orange-glow);
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--orange-glow) !important;
}

.nav-partner {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
}

.nav-partner:hover {
  background: var(--navy-light) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}

/* ----- Mobile Nav Overlay ----- */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.97);
  z-index: 1050;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mobile-overlay.active {
  display: flex;
}

.mobile-overlay a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-overlay a:hover {
  background: rgba(255, 107, 44, 0.15);
  color: var(--orange);
}

.mobile-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ----- HERO SECTION ----- */
.cargo-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    rgba(10, 22, 40, 0.45) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 60px 40px 60px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 44, 0.15);
  border: 1px solid rgba(255, 107, 44, 0.3);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 550px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Tracking Box */
.track-box {
  display: flex;
  gap: 0;
  max-width: 560px;
  border-radius: 60px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  animation: fadeInUp 0.8s ease 0.45s both;
}

.track-box input {
  flex: 1;
  border: none;
  padding: 18px 28px;
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
}

.track-box input::placeholder {
  color: var(--gray-400);
}

.track-box button {
  background: var(--orange);
  color: var(--white);
  padding: 18px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.track-box button:hover {
  background: var(--orange-dark);
}

/* Hero floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--blue-accent);
  bottom: -60px;
  left: 10%;
}

/* ----- STATS STRIP ----- */
.stats-strip {
  background: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-200);
}

.stats-strip .container-cargo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----- SERVICE CARDS SECTION ----- */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 44, 0.1);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.read-more-link:hover {
  gap: 12px;
  color: var(--orange-dark);
}

/* ----- APP / PICKUP SECTION ----- */
.app-section {
  padding: 100px 0;
  background: var(--white);
}

.app-section .container-cargo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.app-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.app-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-badges img {
  height: 100px;
  width: auto;
  transition: var(--transition);
  border-radius: 10px;
}

.app-badges img:hover {
  transform: scale(1.05);
}

.app-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----- QUALITY PILLARS ----- */
.pillars-section {
  padding: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.pillar-card-1 { background: var(--navy); }
.pillar-card-2 { background: var(--orange); }
.pillar-card-3 { background: #991b1b; }

.pillar-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.pillar-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}

.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.85;
}

/* ----- LOCATIONS SECTION ----- */
.locations-section {
  padding: 100px 0;
  background: var(--off-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.75) 100%
  );
  transition: var(--transition);
}

.location-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.85) 100%
  );
}

.location-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: var(--white);
}

.location-card-content h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}

.location-card-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.location-card-content li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.location-card-content li i {
  color: var(--orange);
  font-size: 0.85rem;
}

/* ----- QUOTE / GET TRACKING SECTION ----- */
.quote-section {
  padding: 100px 0;
  background: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.quote-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.quote-form-container {
  padding: 10px 0;
}

.quote-form-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.quote-form-container > p {
  color: var(--gray-600);
  margin-bottom: 8px;
}

.quote-form-container .line {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.freight-options {
  margin: 16px 0;
}

.freight-options h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.freight-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
  font-size: 0.95rem;
  color: var(--gray-600);
  cursor: pointer;
  font-weight: 600;
}

.freight-options input[type="radio"] {
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--orange-glow);
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.btn-quote:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--orange-glow);
}

/* ----- FOOTER ----- */
.cargo-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-col a i {
  font-size: 0.75rem;
  color: var(--orange);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ----- WHATSAPP BUTTON ----- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* ----- SCROLL ANIMATIONS ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ----- VIEW MORE BUTTON ----- */
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-top: 40px;
}

.btn-view-more:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--orange-glow);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

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

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

  .quote-image {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .hamburger { display: flex; }

  .nav-menu-items { display: none; }

  .cargo-hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .track-box {
    flex-direction: column;
    border-radius: 16px;
  }

  .track-box input {
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
  }

  .track-box button {
    padding: 16px;
  }

  .stats-strip .container-cargo {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number { font-size: 2.2rem; }

  .services-grid,
  .pillars-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .app-section .container-cargo {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.78rem; }

  .pillar-card {
    padding: 35px 24px;
  }
}
