/* ============================================================
   Backup Supplies LLC — Shared Stylesheet
   All shared styles for the entire website live here.
   Pages: index.html | about.html | contact.html | brands.html | quote.html
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:      #0e7bb5;
  --dark-red: #0b6492;
  --navy:     #002147;
  --dark:     #111111;
  --mid:      #444444;
  --light:    #f5f5f5;
  --white:    #ffffff;
  --border:   #e0e0e0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* ── TOP TICKER BAR ── */
.topbar {
  background: var(--navy);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 34px;
}

.topbar-ticker-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.topbar-ticker {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.topbar-ticker:hover {
  animation-play-state: paused;
}

.topbar-ticker-item {
  font-size: 11px;
  color: #ddd;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.topbar-ticker-item i {
  color: #ff6666;
  font-size: 10px;
}

.topbar-ticker-sep {
  color: #334;
  font-size: 16px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.topbar-contact {
  background: var(--red);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  flex-shrink: 0;
}

.topbar-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.topbar-contact a:hover {
  opacity: 0.8;
}

.topbar-contact i {
  font-size: 10px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -1px;
  text-decoration: none;
}

.logo-text span {
  color: var(--red);
}

/* ── NAV ── */
nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}

nav a:hover,
nav a.active {
  background: var(--red);
  color: var(--white);
}

nav a.quote-btn {
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
}

nav a.quote-btn:hover {
  background: var(--dark-red);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

/* ── HERO (Home) ── */
.hero {
  background: linear-gradient(90deg, rgba(0,33,71,.92) 0%, rgba(0,33,71,.55) 55%, rgba(0,33,71,.35) 100%), url(../images/hero/hero.jpg) center/cover no-repeat;
  color: var(--white);
  padding: 80px 20px;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #7fb3f5;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 .highlight {
  color: var(--red);
  display: block;
}

.hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-red:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 14px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--red);
  padding: 28px 20px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  text-align: center;
  color: var(--white);
}

.feature-item i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.feature-item h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 4px;
}

/* ── SECTIONS ── */
section {
  padding: 70px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--mid);
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header .underline {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 14px auto 0;
  border-radius: 2px;
}

section.alt-bg {
  background: var(--light);
}

/* ── CLIENTS GRID ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.client-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.client-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.client-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
}

.client-item span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  color: var(--mid);
}

/* ── ABOUT STRIP (Home) ── */
.about-strip {
  background: var(--navy);
  color: var(--white);
  padding: 70px 20px;
}

.about-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text h2 span {
  color: var(--red);
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.88;
}

.about-img-placeholder {
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, #003580, #001a3a);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.15);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-thumb {
  width: 100%;
  height: 190px;
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid);
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-info .brand {
  font-size: 11px;
  color: var(--mid);
  margin-bottom: 12px;
}

.product-info .brand span {
  font-weight: 700;
}

.product-info a {
  margin-top: auto;
}

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* ── BRANDS SLIDER ── */
.brands-slider-wrap {
  overflow: hidden;
}

.brands-slider {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: slide 22s linear infinite;
  width: max-content;
}

.brands-slider:hover {
  animation-play-state: paused;
}

.brand-logo-box {
  width: 130px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}

.brand-logo-box:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.brand-logo-box span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── INDUSTRIES ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.industry-card:hover {
  transform: scale(1.04);
}

.industry-card .ind-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.industry-card .label {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(0, 33, 71, 0.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  letter-spacing: 0.5px;
}

/* ── PRODUCT CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.12);
}

.cat-card .cat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.cat-card h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #003580);
  padding: 60px 20px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumb {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

/* ── ABOUT PAGE ── */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.about-box {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: 8px;
}

.about-box h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff8888;
  margin-bottom: 10px;
}

.about-box p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  border-top: 4px solid var(--red);
}

.testimonial p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid);
  font-style: italic;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial .author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial .author strong {
  font-size: 13px;
  color: var(--navy);
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 36px;
  border-radius: 8px;
}

.contact-info-card h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .icon i {
  color: var(--white);
  font-size: 16px;
}

.contact-detail h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  line-height: 1.5;
}

.contact-detail a {
  color: var(--white);
  text-decoration: none;
}

.contact-detail a:hover {
  color: #7fb3f5;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 8px;
}

.contact-form-card h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 24px;
}

/* ── FORMS ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

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

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: #e8edf2;
  border-radius: 8px;
  margin-top: 40px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mid);
}

.map-placeholder i {
  font-size: 40px;
  color: var(--red);
}

.map-placeholder p {
  font-size: 14px;
  font-weight: 600;
}

.map-placeholder small {
  font-size: 12px;
  opacity: 0.7;
}

/* ── BRANDS FULL PAGE ── */
.brands-full-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.brand-full-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.brand-full-card .brand-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.brand-full-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ── QUOTE PAGE ── */
.quote-card {
  max-width: 750px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px;
}

.quote-card h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quote-card > p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 28px;
}

/* ── SUCCESS ALERT ── */
.alert-success {
  display: none;
  margin-top: 14px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: var(--red);
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 20px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

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

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--red);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact-item a {
  color: #aaa;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  margin-top: 14px;
}

.newsletter-form input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: var(--white);
  font-size: 12px;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.newsletter-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 0 3px 3px 0;
  font-weight: 700;
}

.newsletter-form button:hover {
  background: var(--dark-red);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  border-top: 1px solid #222;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 11px;
  color: #666;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-inner       { grid-template-columns: repeat(2, 1fr); }
  .about-flex           { grid-template-columns: 1fr; }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .about-boxes          { grid-template-columns: 1fr; }
  .testimonials         { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  nav {
    display: none;
  }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px;
    border-bottom: 3px solid var(--red);
    z-index: 999;
  }
  header {
    position: relative;
  }
  .hamburger              { display: block; }
  .footer-inner           { grid-template-columns: 1fr; }
  .products-grid          { grid-template-columns: repeat(2, 1fr); }
  .topbar-contact         { display: none; }
}


/* ==========================================================
   Backup Supplies LLC — logo, buttons, modal, media sections
   ========================================================== */
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}

.logo-link{display:inline-block;line-height:0;}
.site-logo{height:46px;width:auto;display:block;}
.footer-logo-link{display:inline-block;line-height:0;margin-bottom:16px;}
.footer-logo-img{height:40px;width:auto;display:block;}
nav a.store-btn{background:var(--navy);color:var(--white);border-radius:4px;}
nav a.store-btn:hover{background:#001a3a;color:var(--white);}

/* brand logos in marquee */
.brand-logo-box{width:150px;background:#fff;}
.brand-logo-box img{max-width:120px;max-height:46px;width:auto;height:auto;object-fit:contain;display:block;filter:grayscale(100%);opacity:.72;transition:filter .3s,opacity .3s;}
.brand-logo-box:hover img{filter:none;opacity:1;}

/* Industries — circular photos with hover zoom */
.industries-grid{gap:34px 20px;}
.industry-circle{text-align:center;padding:4px;}
.ind-photo{width:185px;height:185px;max-width:100%;border-radius:50%;overflow:hidden;margin:0 auto 16px;border:4px solid #e6eef5;box-shadow:0 8px 22px rgba(0,0,0,.08);transition:transform .4s ease,box-shadow .4s ease,border-color .4s ease;}
.ind-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease;}
.industry-circle:hover .ind-photo{transform:scale(1.05);box-shadow:0 16px 34px rgba(14,123,181,.28);border-color:var(--red);}
.industry-circle:hover .ind-photo img{transform:scale(1.08);}
.ind-name{font-family:'Roboto',sans-serif;font-weight:700;text-transform:uppercase;color:var(--navy);font-size:15px;letter-spacing:.5px;}

/* Famous Categories — product images */
.cat-card{padding:22px 16px;}
.cat-card .cat-img{height:96px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.cat-card .cat-img img{max-height:96px;max-width:130px;width:auto;object-fit:contain;transition:transform .3s ease;}
.cat-card:hover .cat-img img{transform:scale(1.07);}

/* balanced grid responsiveness */
@media (max-width:1000px){
  .clients-grid,.categories-grid,.brands-full-grid{grid-template-columns:repeat(3,1fr);}
  .industries-grid{grid-template-columns:repeat(2,1fr);}
  .ind-photo{width:155px;height:155px;}
}
@media (max-width:600px){
  .clients-grid,.categories-grid,.brands-full-grid,.industries-grid{grid-template-columns:repeat(2,1fr);}
  .ind-photo{width:135px;height:135px;}
}

/* Our Store modal */
.bs-modal{position:fixed;inset:0;background:rgba(0,20,45,.6);display:none;align-items:center;justify-content:center;z-index:99999;padding:20px;}
.bs-modal.open{display:flex;}
.bs-modal-card{background:#fff;border-radius:10px;max-width:420px;width:100%;padding:38px 30px;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.3);position:relative;}
.bs-modal-icon{font-size:46px;color:var(--red);margin-bottom:14px;}
.bs-modal-card h3{font-family:'Roboto',sans-serif;color:var(--navy);font-size:22px;margin-bottom:10px;}
.bs-modal-card p{color:#555;font-size:14px;margin-bottom:22px;line-height:1.5;}
.bs-modal-ok{background:var(--red);color:#fff;border:none;padding:11px 30px;border-radius:5px;font-weight:700;cursor:pointer;font-size:14px;}
.bs-modal-ok:hover{background:var(--dark-red);}
.bs-modal-x{position:absolute;top:12px;right:16px;font-size:24px;color:#999;cursor:pointer;line-height:1;border:none;background:none;}
@media(max-width:768px){nav a.store-btn{margin-top:4px;}}

/* Brands page — logo images */
.brand-full-card .brand-icon{height:58px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.brand-full-card .brand-icon img{max-height:52px;max-width:135px;width:auto;object-fit:contain;}

/* brand text fallback (shown only if a logo image fails to load) */
.brand-logo-box .brand-txt{width:100%;height:100%;align-items:center;justify-content:center;font-family:'Roboto',sans-serif;font-weight:700;color:var(--navy);font-size:14px;text-align:center;}
