* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #FF5F15;
  --secondary-orange: #FFA802;
  --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
  --bg-dark: #0d163e;
  --text-light: #ffffff;
  --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

body {
  background: var(--bg-dark);
  color: #fff;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}



.container-fluid {
  max-width: 1850px;
}

/* RESPONSIVE FIXES FOR MAIN CONTENT */

.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: linear-gradient(90deg, #111, #222) !important;
  color: #fff !important;
  font-size: clamp(12px, 2vw, 14px) !important;
  padding: 5px 0 !important;
  z-index: 1040 !important;
  letter-spacing: 0.3px !important;
}

.topbar-left span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 500 !important;
  color: #FFA802 !important;
}

.topbar-right span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: clamp(12px, 2vw, 14px) !important;
}

.topbar i {
  color: #FFA802 !important;
  font-size: clamp(12px, 2vw, 14px) !important;
}

/* Navbar */
.navbar {
  position: fixed !important;
  top: 30px !important;
  left: 0 !important;
  width: 100% !important;
  background: #0d163e !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 17px 0 !important;
  transition: all 0.3s ease !important;
  z-index: 1030 !important;
  color: #fff !important;
  border-bottom: 1px solid #FF5F15;

}

.navbar .navbar-brand img {
  height: clamp(40px, 6vw, 50px) !important;
}

.nav-link {
  font-weight: 500 !important;
  color: white !important;
  margin: 0 10px !important;
  padding: 8px 15px !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: clamp(14px, 2vw, 16px) !important;
}

.nav-link:hover {
  color: white !important;
  background: var(--gradient-primary) !important;
  transform: translateY(-2px) !important;
}

.btn-login,
.btn-register {
  padding: 8px 25px !important;
  border-radius: 25px !important;
  font-weight: 500 !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
  font-size: clamp(12px, 2vw, 14px) !important;
}

.btn-login {
  background: transparent !important;
  border: 2px solid var(--primary-orange) !important;
  color: var(--primary-orange) !important;
}

.btn-login:hover {
  background: var(--gradient-primary) !important;
  color: white !important;
  transform: translateY(-2px) !important;
}

.btn-register {
  background: var(--gradient-primary) !important;
  color: white !important;
}

.btn-register:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-hover) !important;
  color: white !important;
}


/* Toggle hamburger to X */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background: #FFA802 !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
  top: -8px !important;
  transform: rotate(0) !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
  top: 8px !important;
  transform: rotate(0) !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: transparent !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: 0 !important;
  transform: rotate(45deg) !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  top: 0 !important;
  transform: rotate(-45deg) !important;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}


/* Mobile Fixes */
@media (max-width: 991px) {
  .navbar {
    justify-content: space-between !important;
    top: 10px !important;
  }

  .navbar-collapse {
    background: #0d163e !important;
    border-radius: 12px !important;
    margin-top: 10px !important;
    padding: 10px 15px !important;
  }

  .navbar-toggler {
    margin-left: auto !important;
    /* right side fix */
    z-index: 1050 !important;
    /* upar rahe */
  }



  .topbar-right span {
    display: none !important;
  }



}


/* Custom hamburger */
.navbar-toggler-icon {
  display: block !important;
  width: 25px !important;
  height: 2px !important;
  background: #FFA802 !important;
  position: relative !important;
  border-radius: 2px !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '' !important;
  position: absolute !important;
  width: 25px !important;
  height: 2px !important;
  background: #FFA802 !important;
  left: 0 !important;
  border-radius: 2px !important;
}

.navbar-toggler-icon::before {
  top: -8px !important;
}

.navbar-toggler-icon::after {
  top: 8px !important;
}




/* Hero Section - Split Layout */


/* Hero Actions - Matched Layout */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideInLeft 1.2s ease-out 0.9s both;
}



.hero-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-3px);
  text-decoration: none;
}

.hero-btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white;
  text-decoration: none;
}

.hero-btn-primary:hover::before {
  left: 100%;
}


.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px) !important;
  align-items: center;
  overflow: hidden;
  margin-top: 5rem;
  background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
  border-bottom: 4px solid var(--primary-orange);
  border-radius: 0 0 30px 30px;
}


/* Desktop padding fix for consistency */
@media (min-width: 1200px) and (max-width: 1900px) {
  .hero-section {
    padding: 72px 20px !important;
  }
}


/* Hero Content Wrapper - Matched Structure */
.hero-section .container-fluid {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1850px;
  margin: 0 auto;
  padding: 0 max(40px, 3vw);
}

/* Hero Grid - Matched Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  min-height: 56.5vh;
  /* Exact match to other pages */
}


.hero-left {
  position: relative;
  z-index: 3;
  animation: slideInLeft 1s ease-out;
  margin-top: 0;
  max-width: 700px;
  width: 100%;
}


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Title - Matched Font Sizing */
.hero-left .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 750;
  line-height: 1.1;
  margin-bottom: 25px;
  animation: slideInLeft 1.2s ease-out 0.3s both;
}


.highlight-text {

  color: #FF5F15;

}

/* Hero Subtitle - Matched Spacing */
.hero-left .hero-subtitle {
  text-align: left;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6 !important;
  margin: 0 0 35px !important;
  animation: slideInLeft 1.2s ease-out 0.6s both !important;
}

/* Stats Vertical */
.stats-vertical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.stat-card-left {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 95, 21, 0.2);
  border-radius: 18px;
  padding: 22px 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}




/* Hero Badge - CRITICAL FIX - Exact Match */
.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: rgba(255, 95, 21, 0.1) !important;
  border: 2px solid rgba(255, 95, 21, 0.3) !important;
  color: var(--secondary-orange) !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 30px !important;
  backdrop-filter: blur(10px) !important;
  animation: slideInLeft 1s ease-out !important;
  width: fit-content !important;
}

.hero-badge i {
  font-size: 16px !important;
}

@keyframes pulseBadge {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 95, 21, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(255, 95, 21, 0);
  }
}



@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.stat-card-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.15), transparent);
  transition: left 0.6s;
}

.stat-card-left:hover {
  transform: translateX(8px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 35px rgba(255, 95, 21, 0.25);
}

.stat-card-left:hover::before {
  left: 100%;
}

.stat-card-left .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
  transition: var(--transition);
}

.stat-card-left:hover .stat-icon {
  transform: scale(1.1) rotate(8deg);
}

.stat-info {
  flex: 1;
}

.stat-card-left .stat-number {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-card-left .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Right Side - Visual */
.hero-right {
  position: relative;
  animation: slideInRight 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  max-height: calc(100vh - 200px);
  width: 100%;
  max-width: 700px;
  justify-self: end;
}


@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Logo Visual Container - Matched Size */
.logo-visual-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative Circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 95, 21, 0.2);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.circle-2 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 168, 2, 0.15);
  animation-delay: 1s;
}

.circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(59, 130, 246, 0.1);
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
}

/* Logo Stack */
.logo-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.logo-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 95, 21, 0.25);
  border-radius: 25px;
  padding: 30px 50px;
  width: 320px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.logo-box.featured {
  background: linear-gradient(135deg, rgba(255, 95, 21, 0.15), rgba(255, 168, 2, 0.1));
  border: 3px solid rgba(255, 95, 21, 0.4);
  width: 340px;
  height: 200px;
  box-shadow: 0 25px 60px rgba(255, 95, 21, 0.3);
}

.logo-box:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 50px rgba(255, 95, 21, 0.35);
}

.logo-box img {
  height: 80px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.logo-badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo-badge.primary {
  font-size: 14px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo Shine Effect */
.logo-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Connector Line */
.connector-line {
  width: 4px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary-orange), var(--secondary-orange));
  border-radius: 2px;
  position: relative;
  margin: -10px 0;
}

.connector-dot {
  width: 12px;
  height: 12px;
  background: var(--secondary-orange);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255, 168, 2, 0.8);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.connector-flow {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, white, transparent);
  border-radius: 2px;
  animation: flow 2s infinite;
}

@keyframes flow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Feature Pills */
.feature-pills {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 95, 21, 0.3);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floatPill 4s ease-in-out infinite;
  z-index: 999;
}

.pill i {
  color: var(--secondary-orange);
  font-size: 16px;
}

.pill-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.pill-2 {
  bottom: 35%;
  left: -5%;
  animation-delay: 1s;
}

.pill-3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 40px;
  }

  .logo-visual-container {
    height: 550px;
  }

  .circle-1 {
    width: 350px;
    height: 350px;
  }

  .circle-2 {
    width: 450px;
    height: 450px;
  }

  .circle-3 {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-left .hero-title,
  .hero-left .hero-subtitle {
    text-align: center;
  }

  .stats-vertical {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-visual-container {
    height: 500px;
  }
}

/* Responsive updates */
/* Responsive - Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left {
    text-align: center;
    order: 2;
    margin-top: 1rem;
    max-width: 100%;
    justify-self: center;
  }

  .hero-right {
    order: 1;
    max-height: none;
    justify-self: center;
  }

  .logo-visual-container {
    max-width: 450px;
  }
}


@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: 60vh;
  }

  .hero-grid {
    gap: 20px;
    min-height: auto;
  }

  .hero-left {
    margin-top: 0.5rem;
  }

  .hero-badge {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }

  .logo-visual-container {
    max-width: 380px;
  }

  .feature-pills {
    display: none;
  }

  .stats-vertical {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .logo-visual-container {
    height: 450px;
  }

  .logo-box {
    width: 280px;
    height: 160px;
    padding: 25px 40px;
  }

  .logo-box.featured {
    width: 300px;
    height: 180px;
  }

  .logo-box img {
    height: 70px;
  }

  .circle-1 {
    width: 280px;
    height: 280px;
  }

  .circle-2 {
    width: 350px;
    height: 350px;
  }

  .circle-3 {
    width: 200px;
    height: 200px;
  }

  .pill {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-section {
    padding: 60px 0 40px;
  }

  .logo-visual-container {
    max-width: 320px;
  }

  .logo-box {
    width: 250px;
    height: 140px;
    padding: 20px 30px;
  }

  .logo-box.featured {
    width: 270px;
    height: 160px;
  }

  .logo-box img {
    height: 60px;
  }
}

/* Services Section */
.services-section {
  padding: 60px 0 80px;
}

.categories-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.category-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition);
}

.category-section:hover {
  border-color: rgba(255, 95, 21, 0.3);
  box-shadow: 0 10px 30px rgba(255, 95, 21, 0.15);
  transform: translateY(-5px);
}

.category-header {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  padding-bottom: 12px;
  display: inline-block;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
}

.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.subcategory-card {
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.subcategory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
  opacity: 0;
  z-index: 0;
}

.subcategory-card:hover::before {
  left: 0;
  opacity: 0.15;
}

.subcategory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 95, 21, 0.25);
  background: linear-gradient(135deg, rgba(255, 95, 21, 0.15) 0%, rgba(255, 168, 2, 0.1) 100%);
}

.subcategory-content {
  position: relative;
  z-index: 1;
}

.subcategory-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  transition: var(--transition);
  filter: brightness(1);
}

.subcategory-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.3) saturate(1.3);
}

.subcategory-card span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .top-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .subcategories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .top-row {
    grid-template-columns: 1fr;
  }

  .bottom-row {
    grid-template-columns: 1fr;
  }

  .logos-container {
    gap: 30px;
  }

  .logo-box {
    padding: 20px 30px;
  }

  .logo-box img {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .category-section {
    padding: 20px;
  }

  .subcategories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .subcategory-card {
    padding: 15px 10px;
  }

  .subcategory-card img {
    width: 50px;
    height: 50px;
  }

  .subcategory-card span {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .logos-container {
    gap: 20px;
  }

  .logo-box {
    padding: 15px 20px;
  }

  .logo-box img {
    height: 50px;
  }

  .subcategory-card {
    padding: 12px 8px;
  }

  .subcategory-card img {
    width: 45px;
    height: 45px;
  }

  .subcategory-card span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {

  .logo-visual-container {
    max-width: 280px;
  }
}