/* =========================
   GLOBAL + THEME
========================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #121212;
  --bg-soft: #1a1a1a;
  --secondary-color: #222222;
  --primary-color: #c0392b;   /* red accent */
  --accent-color: #113584;    /* blue accent */
  --text-color: #f0f0f0;
  --light-text: #cccccc;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* =========================
   HEADER / NAV
========================= */
/* =========================
   HEADER / NAV
========================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(5px);
}

.logo img {
  height: 50px;
}

/* NAV LINKS DESKTOP */
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
}

/* Nav base style */
.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

/* Hover underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown wrapper */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 220px;
  border-radius: 5px;
  padding: 10px 0;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
}

/* dropdown links */
.dropdown-content a {
  color: #fff;
  padding: 10px 18px;
  display: block;
}

/* Desktop hover only */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/*----------------------------------
         MOBILE NAVIGATION
----------------------------------*/

.mobile-menu-btn {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #111;
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
    transform: translateY(-120%);
    transition: 0.4s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  /* MOBILE DROPDOWN */
  .dropdown-content {
    position: static;
    transform: none;
    background-color: transparent;
    border: none;
    padding: 0;
    display: none; /* will control by JS */
  }

  .dropdown-content a {
    padding: 10px 0 10px 20px;
    border-left: 2px solid var(--primary-color);
  }

  .dropdown.open > .dropdown-content {
    display: block;
  }

  .nav-link::after {
    display: none;
  }
}



/* =========================
   BANNER SLIDER (MERGED)
========================= */

.banner-section {
  padding-top: 5rem;          /* Space for the fixed header */
  height: 100vh;              /* Hero takes full height */
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide.current {
  opacity: 1;
  z-index: 2;
}

/* Image + Ken Burns wrapper */
.slide-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional overlay content (currently commented out in HTML) */
.slide-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  border-radius: 10px;
}

.slide-category {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0;
  color: white;
  line-height: 1.1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.slide-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  border: 2px solid white;
  color: white;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 4px;
}

.slide-button:hover {
  background-color: white;
  color: #111;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Banner responsiveness */
@media (max-width: 1024px) {
  .slide-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .banner-section {
    height: 60vh;
    min-height: 400px;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-overlay {
    padding: 1.5rem;
    margin: 0 1.5rem;
  }
}

/* =========================
   ANIMATIONS (FADE-IN)
========================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.image-fade-in.visible {
  opacity: 1;
}

/* =========================
   AGENCY SECTION (ABOUT)
========================= */

.agency-section {
  padding: 80px 20px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  max-width: 1200px;
}

.agency-video {
  width: 100%;
  max-width: 771px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
}

.agency-image {
  width: 100%;
  max-width: 771px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
}

.heading-container {
  max-width: 800px;
  margin: 0 auto 20px;
}

.heading-container h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .heading-container h2 {
    font-size: 3rem;
  }
}

.agency-section p {
  max-width: 1000px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.start-project-button {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  margin-bottom: 40px;
}

.start-project-button:hover {
  background-color: #e34b26;
  transform: translateY(-3px);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  gap: 30px;
  padding: 20px 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.stat-item p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 5px 0 0;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 5%;
  background-color: #1a1a1a;
}

.why-choose-us-image {
  flex: 1 1 280px;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.why-choose-us-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose-us-text {
  flex: 1 1 280px;
}

.why-choose-us-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-us-text p {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 30px;
  line-height: 1.6;
}

.benefit-card {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  font-size: 28px;
  color: #f0f0f0;
}

.benefit-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.4;
}

/* =========================
   OUR CORE SERVICES
========================= */

.our-core-services-section-container {
  padding: 80px 5%;
  background-color: #111;
}

.our-core-services-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.our-core-services-image {
  flex: 1 1 280px;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.our-core-services-image img {
  width: 100%;
  height: auto;
  display: block;
}

.our-core-services-cards {
  flex: 1 1 280px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.service-card .icon {
  font-size: 40px;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .our-core-services-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SECTION TITLE (shared)
========================= */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 50px;
  color: var(--primary-color);
  text-align: center;
}

/* =========================
   PRODUCT CAROUSEL
========================= */

.product-carousel-container {
  position: relative;

  background-color: var(--bg-soft);
  text-align: center;
}

.product-carousel-container .section-title {
  color: var(--text-color);
}

.product-cards-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 3rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 2rem;
}

.product-cards-container::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  background-color: var(--secondary-color);
  border-radius: 12px;
  padding: 24px 24px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.product-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-card .view-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.1s ease;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.product-card .view-button:hover {
  background-color: #0c2861;
  transform: translateY(-1px);
}

/* Dots for product carousel (JS adds .carousel-dot elements) */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background-color: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(30, 30, 30, 0.7);
  border: none;
  color: var(--text-color);
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.1s ease, opacity 0.2s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

@media (max-width: 768px) {
  .product-carousel-container {
    padding: 60px 0 120px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .product-cards-container {
    padding-left: 20px;
  }

  .product-card {
    flex: 0 0 85vw;
    margin-right: 4vw;
  }

  .carousel-arrow.left {
    left: 0px;
  }

  .carousel-arrow.right {
    right: 0px;
  }
}

/* =========================
   WHAT WE OFFER (ACCORDION)
========================= */

.offer-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.container-main {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .offer-container {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .offer-heading {
    font-size: 3rem;
    line-height: 1;
  }
}

.offer-paragraph {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
}

.offer-button {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  align-self: flex-start;
  transition: background-color 0.3s ease-in-out;
  background: var(--accent-color);
}

/* Accordion styles */

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5),
              0 4px 6px -4px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease-out;
  background-color: #222;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.5rem;
  background-color: #222;
  border-radius: 0.5rem;
}

.accordion-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.accordion-arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
  transition: transform 0.3s ease-in-out;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 1.5rem;
  background-color: #222;
}

.accordion-text {
  color: #fff;
}

/* =========================
   PRODUCT SPECIFICATIONS (TABS)
========================= */

.specifications {
  padding: 100px 5%;
  background: #1a1a1a;
}

.spec-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: #333333;
  border: 2px solid #555555;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #cccccc;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-color);
  border-color: #e34b26;
  color: white;
}

.tab-content {
  display: none;
  background: #222222;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tab-content.active {
  display: block;
}

.spec-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.spec-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.spec-image img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.spec-info h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.spec-table {
  background: #333333;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #444444;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: #fff;
  flex: 1;
  text-align: left;
}

.spec-value {
  color: #cccccc;
  flex: 1;
  text-align: right;
}

@media (min-width: 768px) {
  .spec-details {
    grid-template-columns: 1fr 1fr;
  }
  .tab-buttons {
    flex-wrap: nowrap;
  }
  .spec-image {
    height: 400px;
  }
}

/* =========================
   REVIEW SECTION
========================= */

.review-section {
  background-color: #121212;
  padding: 6rem 2rem;
  text-align: center;
}

.review-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
}

.review-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-text {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #ffffff;
  max-width: 800px;
  transition: opacity 0.5s ease-in-out;
}

.review-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.review-nav-btn svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  transition: transform 0.3s;
}

.review-nav-btn:hover svg {
  transform: scale(1.1);
}

/* =========================
   BRAND CAROUSEL
========================= */

.brand-carousel-section {
  background-color: #222222;
  padding: 60px 0;
  overflow: hidden;
}

.brand-logo-carousel {
  display: flex;
  animation: carousel-scroll 40s linear infinite;
}

.brand-logo-carousel img {
  height: 80px;
  margin: 0 40px;
  filter: grayscale(100%) brightness(200%);
  opacity: 0.6;
  transition: opacity 0.3s, filter 0.3s;
}

.brand-logo-carousel img:hover {
  filter: none;
  opacity: 1;
}

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background-color: #000;
  color: #cccccc;
  padding: 60px 20px 20px;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 5px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-socials a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #ffffff;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--primary-color);
}

.footer-newsletter input {
  background: #333333;
  border: none;
  padding: 12px 15px;
  border-radius: 5px;
  width: 100%;
  max-width: 250px;
  color: #fff;
}

.footer-newsletter button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #e74c3c;
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333333;
}

/* Footer responsive */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    text-align: center;
  }

  .footer-socials {
    margin-top: 20px;
  }
}
