:root {
  --primary: #1f4fff;
  --primary-soft: rgba(31, 79, 255, 0.08);
  --primary-hover: #173bcc;
  --accent: #ffb547;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-soft: #f3f4f6;
  --border-soft: #e5e7eb;
  --card-radius: 1.4rem;
}

/* Global */

body {
  font-family: lato;
  color: var(--text-main);
  background-color: #f9fafb;
}

.Topic {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}


/* ===============================
   NAVBAR MAIN
================================ */
.nav-navbar {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand img {
  width: 130px;
  max-width: 100%;
  height: auto;
}

/* SEARCH ICON */
.nav-search-btn {
  padding: 3px 8px;
  background: #838485;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: .6s;
}

.nav-search-btn:hover {
  background: #beb6b6;
  color: black;
}

/* NAV LINKS */
.nav-menu .nav-link {
  font-size: 16px;
  padding: 8px 14px;
  color: #333;
}

.nav-menu .nav-link:hover {
  color: #111;
}

.nav-menu li:hover {
  font-weight: 600;
}

.navbar-nav {
  margin-right: 15px;
}

.navbar .d-flex.align-items-center {
  margin-left: 0;
}

/* MAIN BUTTONS */
.nav-main-btn, .nav-main-btn2 {
  display: inline-block;
  padding: 4px 6px;
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .3s ease;
}

.nav-main-btn {
  background: #cacaca;
  color: #333;
  border: 1px solid #000;
}

.nav-main-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background: #ababab;
  z-index: 0;
  transition: width .3s ease;
}

.nav-main-btn:hover::before {
  width: 100%;
}

.nav-main-btn span {
  position: relative;
  z-index: 1;
}

.nav-main-btn2 {
  background: #198754;
  color: #fff;
  border: 1px solid #000;
}

.nav-main-btn2::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background: #405a17;
  z-index: 0;
  transition: width .3s ease;
}

.nav-main-btn2:hover::before {
  width: 100%;
}

.nav-main-btn2 span {
  position: relative;
  z-index: 1;
}

/* ===============================
   RESPONSIVE FIXES
================================ */

/* Extra small devices (320px) */
@media (max-width: 360px) {
  .nav-brand img {
    width: 90px;
  }

  .nav-menu .nav-link {
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-main-btn, .nav-main-btn2 {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .nav-right {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-search-btn {
    display: none;
  }

  .nav-icon {
    display: block;
    margin: 5px auto 0;
    width: 30px;
  }
}

/* Small devices (up to 576px) */
@media (max-width: 576px) {
  .nav-brand img {
    width: 100px;
  }

  .nav-menu {
    text-align: center;
    margin-top: 10px;
  }

  .nav-main-btn, .nav-main-btn2 {
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
  }
}

/* Medium devices (up to 768px) */
@media (max-width: 768px) {
  .nav-brand img {
    width: 110px;
  }

  .nav-menu .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }

  .nav-right {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Large devices (up to 991px) */
@media (max-width: 991px) {
  .nav-search-btn {
    display: none;
  }

  .nav-icon {
    display: block;
    margin: 0 auto;
    width: 35px;
  }
}

/* Extra large devices (up to 1200px) */
@media (max-width: 1200px) {
  .nav-brand img {
    width: 120px;
  }

  .nav-menu .nav-link {
    font-size: 15px;
  }
}


/* ===============================
   NAVBAR BUTTONS & RIGHT ALIGN (LAPTOP 1024px)
================================ */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem; /* space between buttons */
  }

  .nav-main-btn,
  .nav-main-btn2 {
    padding: 6px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .nav-search-btn {
    margin-left: 1rem;
  }

  .nav-icon {
    margin-left: 1rem;
  }

  .nav-collapse .navbar-nav {
    margin-right: 2rem; /* push nav links away from buttons */
  }
}





/* ===================== HERO / TOP (TECH IMAGE + GLASS) ===================== */

.head {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
}

/* Tech background image */
.head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/1181671/pexels-photo-1181671.jpeg?auto=compress&cs=tinysrgb&w=1600") no-repeat center center / cover;
  opacity: 0.65;
  z-index: 0;
}

/* Dark + gradient overlay */
.head::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(31, 79, 255, 0.4), transparent 45%),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  z-index: 0;
}

/* Glass block */
.head-detail {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  padding: 2rem 2.3rem;
  border-radius: 1.6rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 60%);
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.head-detail h1 {
  letter-spacing: -0.03em;
}

.head-detail .lead {
  color: #e5e7eb;
  margin-bottom: 0;
}

/* Small badge like contact page */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #f9fafb;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.14),
      rgba(15, 23, 42, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-badge span {
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, var(--accent));
}

/* ===================== STORIES SECTION ===================== */

.stories {
  padding-bottom: 2rem;
}

.stories>.container>p {
  max-width: 850px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Story cards */
.storyBox .sub-box {
  background-color: #ffffff;
  border-radius: 1.3rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.storyBox .sub-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(31, 79, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.storyBox .sub-box h3 span {
  font-size: 1.02rem;
  font-weight: 600;
}

.storyBox .sub-box p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.storyBox .sub-box:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 79, 255, 0.6);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
}

.storyBox .sub-box:hover::before {
  opacity: 1;
}

/* ===================== BRAND STORY ===================== */

.brandStory {
  background: radial-gradient(circle at top left, #020617, #020617 40%, #020817 100%);
  padding: 3.5rem 0;
  color: #e5e7eb;
}

/* Tabs */
.brand-tab {
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  background: transparent;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.brand-tab.active-tab {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border: none;
  color: #fff;
  box-shadow: 0 12px 35px rgba(79, 70, 229, 0.55);
}

/* Headings */
.brand-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 1.1rem;
  color: #c7d2fe;
  margin-bottom: 1.6rem;
}

/* Points Wrapper */
.brand-points {
  display: grid;
  gap: 1.2rem;
}

/* Cards */
.brand-card {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 3.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.brand-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Number Badge */
.badge-count {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

/* Divider */
.brand-divider {
  height: 1px;
  width: 100%;
  margin: 2rem 0 1.6rem;
  background: linear-gradient(
    to right,
    transparent,
    rgba(148, 163, 184, 0.5),
    transparent
  );
}

/* Footer Text */
.brand-footer-text {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
}


/* ===================== ADVANTAGE COUNTERS ===================== */
/* ================================
   SOF ADVANTAGE SECTION
================================ */

.advantage {
  padding: 4rem 0;
}

.advantage .Topic {
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

/* FLEX ROW: all cards in one line */
.adv-row {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between boxes */
  flex-wrap: nowrap; /* NO wrapping */
  overflow-x: auto; /* mobile scroll if needed */
  padding-bottom: 10px;
}

/* Boxes */
.sub-adv,
.sub-text {
  background-color: #ffffff;
  border-radius: 1.6rem;
  padding: 2.5rem 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
  min-width: 180px; /* width fix */
  flex: 1; /* flex grow equally */
  
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Text */
.sub-adv p,
.sub-text p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #6b7280;
}

/* Numbers */
.sub-adv .count,
.sub-text .count {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f4fff;
  margin-bottom: 0.3rem;
}

/* Hover effect */
.sub-adv:hover,
.sub-text:hover {
  transform: translateY(8px);
  border-color: rgba(31, 79, 255, 0.6);
}


/* ===================== PARTNER / CLIENT SLIDERS ===================== */
/* ============================
   PARTNER SECTION (UPDATED)
===============================*/

.partner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 35%, rgba(11, 17, 32, 0.95) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding-bottom: 2rem;
}

.partner h1 {
  letter-spacing: -0.03em;
  color: #0f172a;
}

/* Horizontal scroll */
.partner-scroll {
  overflow-x: auto;
  padding: 1rem 0 2.2rem;
  scroll-behavior: smooth;
  display: flex;
  gap: 1.25rem;
}

.partner-scroll::-webkit-scrollbar {
  height: 0;
}
.partner-box {
  min-width: 272px;
  max-width: 150px;
  height: 168px;
  border-radius: 1rem;
  padding: 0.75rem;

  /* Dark gradient with transparency */
/* background: linear-gradient(
  135deg,
  rgba(200, 200, 200, 0.3) 0%,  
  rgba(120, 120, 120, 0.6) 100% 
);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); */
  background-color:white;

  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.partner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);  
  background-color: rgba(245, 245, 245, 0.167);
}

.partner-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Arrows */
.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  border: 1px solid rgba(100, 116, 139, 0.45);
  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.arrow-btn:hover {
  background: rgba(30, 41, 59, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}


/* ===================== OUR VALUES ===================== */

.OurValues {
  padding: 3.5rem 0;
  background-color: #f3f4f6;
}

.OurValues .Topic {
  text-align: center;
}

.OurValues>.container>p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.value-box {
  background-color: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  height: 100%;
}

.value-span span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.value-box p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.value-box:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 79, 255, 0.6);
}

/* ===================== TEAM SECTION ===================== */
.team-wrapper {
  padding: 3.5rem 0 3rem;
  background: #ffffff;
  position: relative;
  /* ⭐ IMPORTANT */
}

/* Heading */
.Topic {
  /* text-align: center; */
  /* font-size: 24px; */
  margin-bottom: 2.2rem;
}

/* Scroll Row */
.team-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
  position: relative;
  /* ⭐ keeps scroll under buttons */
  z-index: 1;
}

.team-scroll::-webkit-scrollbar {
  display: none;
}

/* Cards */
.team-card {
  min-width: 190px;
  max-width: 190px;
  background: #f9fafb;
  border-radius: 1.4rem;
  border: 1px solid var(--border-soft);
  padding: 1rem 0.8rem 1.3rem;
  text-align: center;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

/* Images */
.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

.team-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* Line */
.team-line {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0.3rem auto 0.5rem;
}

/* BUTTONS */
.team-nav-btn {
  position: absolute;
  top: 60%;
  /* perfectly centered */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  z-index: 50;
  /* ⭐ stays above everything */
}

/* Left & Right */
.team-left {
  left: -25px;
}

.team-right {
  right: -25px;
}

/* Hover */
.team-nav-btn:hover {
  background: var(--primary);
  color: white;
}



/* ===================== MEDIA COVERAGE ===================== */

.media-box {
  background-color: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.3rem 1.6rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.med-img {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.med-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.media-box h5 {
  font-size: 1rem;
}

.media-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

@media (max-width: 767.98px) {
  .head-detail {
    padding: 1.4rem 1.4rem;
    margin-inline: 1rem;
  }

  .head-detail h1 {
    font-size: 1.9rem;
  }

  .Topic {
    font-size: 1.6rem;
  }

  .nav-btn {
    display: none;
  }
}




/* ================================
   TEAM CARDS
==================================*/
.ts-section {
  color: #000;
}

.ts-card {
  position: relative;
  border-radius: 15px;
  height: 400px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  min-height: 300px;
  /* Your Glass Effect */
  border: 2px solid #ffffff80;
  background: rgba(6, 5, 5, 0.05);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.ts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* optional – gives clean black background */
}


.ts-card:hover {
  transform: translateY(-8px);
  border-color: #fff;
  box-shadow: 0 10px 25px rgba(9, 9, 9, 0.3);
}

.ts-info {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.ts-info h5 {
  margin: 0;
  font-weight: 600;
}

.ts-info p {
  font-size: 14px;
  margin-top: 3px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 576px) {
  .ts-card {
    height: 360px;
  }
}
/* ===============================
   FOOTER SECTION
================================ */
.footer-section {
  background: #ffffff;
  color: #000;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden; /* mobile horizontal scroll fix */
  padding: 60px 0;
}

/* Footer Links */
.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #555;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #000;
  margin-left: 3px;
}

/* ===============================
   SOCIAL ICONS
================================ */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Social Media Icons with Background Circle */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000; /* black background */
  color: #fff; /* white icon */
  width: 30px;
  height: 30px;
  font-size: 19px;
  text-decoration: none;
  border-radius: 8%; /* perfect circle */
  transition: transform 0.3s, background 0.3s;
}

.footer-social a:hover {
  transform: scale(1.2);
  background: #111; /* subtle dark hover */
}

/* ===============================
   APP STORE BADGES
================================ */
.badge-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.store-badge {
  height: 52px;
  width: auto;
  transition: transform 0.3s;
}

.store-badge:hover {
  transform: scale(1.05);
}

/* ===============================
   TABLET VIEW (768px–992px)
================================ */
@media (max-width: 991px) and (min-width: 768px) {
  .footer-section {
    padding: 50px 30px;
  }

  .footer-section .row > div {
    margin-bottom: 25px;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-logo {
    height: 70px;
    display: block;
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: center;
  }

  .badge-container {
    justify-content: center;
    margin-top: 15px;
  }

  .store-badge {
    height: 50px;
  }

  .footer-links li a:hover {
    margin-left: 0;
  }

  .footer-section .col-md-4.text-center {
    text-align: center;
    margin-top: 15px;
  }
}

/* ===============================
   LAPTOP VIEW (992px–1200px)
================================ */
@media (min-width: 992px) and (max-width: 1200px) {
  .footer-section {
    padding: 60px 40px;
  }

  .footer-section .row > div {
    margin-bottom: 20px;
  }

  .footer-section .col-md-4.text-center {
    text-align: center;
  }

  .footer-section .col-md-4.d-flex.gap-3 {
    align-items: center;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .store-badge {
    height: 50px;
  }

  .footer-logo {
    height: auto;
  }
}

/* ===============================
   MOBILE VIEW (≤576px)
================================ */
@media (max-width: 576px) {
  .footer-section {
    padding: 40px 15px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .store-badge {
    height: 46px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES (≤360px)
================================ */
@media (max-width: 360px) {
  .footer-logo {
    display: block;
    margin: 0 auto 10px auto;
    height: 65px;
  }

  .badge-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }

  .store-badge {
    height: 46px;
    width: auto;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .footer-section a:hover {
    transform: none;
  }

  .footer-links {
    text-align: center;
    padding: 0;
    margin-bottom: 10px;
  }
}