/* Add this at the very top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@900&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables for Light/Dark Theme */
:root {
  /* Add these font variables */
  --font-title: 'Noto Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --primary: #1a237e;
  --secondary: #f44336;
  --bg: #fff;
  --text: #222;
  --card-bg: #f5f5f5;
  --footer-bg: #181c2a;
  --footer-text: #fff;
}
[data-theme="dark"] {
  --primary: #90caf9;
  --secondary: #ef5350;
  --bg: #181c2a;
  --text: #f5f5f5;
  --card-bg: #23263a;
  --footer-bg: #10121a;
  --footer-text: #e0e0e0;
}
body, html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif; /* Consistent font */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Override container padding for header to avoid double padding */
.site-header .container {
  padding: 0.25rem;
}
.site-header {
  background: #fff;
  border-bottom: 0px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 1rem;
}
[data-theme="dark"] .site-header {
  background: var(--footer-bg);
  border-bottom: 1px solid #23263a;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  min-height: 60px;
  white-space: nowrap;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-logo {
  height: 50px;
  background: none;
  border-radius: 0;
  padding: 0;
  object-fit: contain;
  transition: height 0.3s ease;
}
/* Make both logos the same size */
.header-logo.secondary {
  height: 50px;
}
.main-nav {
  display: none;
}
@media (min-width: 992px) {
  .main-nav {
    display: block;
  }
}
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
  font-size: 1.1rem;
}
.main-nav a.active, .main-nav a:hover {
  color: #2563eb;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 80px;
  justify-content: flex-end;
}
#theme-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 0.5rem;
}
.catalogs-btn {
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  font-size: 0.9rem;
}
.catalogs-btn:hover {
  background: #1d4ed8;
}
/* Tablet and below - Fixed responsive scaling */
@media (max-width: 991px) {
  .site-header {
    padding: 0 1rem;
  }
  .header-flex {
    min-height: 70px;
  }
  .logo-group {
    flex: 1;
    max-width: 60%;
    gap: 0.5rem;
  }
  .header-logo {
    height: 42px;
  }
  .header-logo.secondary {
    height: 42px;
  }
  /* Hide catalog button on mobile when hamburger is visible */
  .catalogs-btn {
    display: none;
  }
  #theme-toggle {
    font-size: 1.4rem;
    padding: 0.5rem;
  }
  .mobile-only {
    font-size: 1.4rem;
    padding: 0.5rem;
  }
  .header-actions {
    flex-shrink: 0;
    gap: 0.5rem;
  }
}

/* Large mobile screens */
@media (max-width: 768px) {
  .site-header {
    padding: 0 1rem;
  }
  .header-flex {
    min-height: 65px;
  }
  .logo-group {
    max-width: 65%;
    gap: 0.4rem;
  }
  .header-logo {
    height: 38px;
  }
  .header-logo.secondary {
    height: 38px;
  }
  #theme-toggle {
    font-size: 1.3rem;
    padding: 0.4rem;
  }
  .mobile-only {
    font-size: 1.3rem;
    padding: 0.4rem;
  }
}

/* Medium mobile screens */
@media (max-width: 600px) {
  .site-header {
    padding: 0 0.8rem;
  }
  .header-flex {
    min-height: 60px;
  }
  .logo-group {
    max-width: 70%;
    gap: 0.3rem;
  }
  .header-logo {
    height: 34px;
  }
  .header-logo.secondary {
    height: 34px;
  }
  #theme-toggle {
    font-size: 1.2rem;
    padding: 0.3rem;
  }
  .mobile-only {
    font-size: 1.2rem;
    padding: 0.3rem;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .site-header {
    padding: 0 0.8rem;
  }
  .header-flex {
    min-height: 55px;
  }
  .logo-group {
    max-width: 70%;
    gap: 0.25rem;
  }
  .header-logo {
    height: 30px;
  }
  .header-logo.secondary {
    height: 30px;
  }
  #theme-toggle {
    font-size: 1.1rem;
    padding: 0.3rem;
  }
  .mobile-only {
    font-size: 1.1rem;
    padding: 0.3rem;
  }
}

/* Very small screens */
@media (max-width: 390px) {
  .site-header {
    padding: 0 0.6rem;
  }
  .header-flex {
    min-height: 50px;
  }
  .logo-group {
    max-width: 72%;
    gap: 0.2rem;
  }
  .header-logo {
    height: 28px;
  }
  .header-logo.secondary {
    height: 28px;
  }
  #theme-toggle {
    font-size: 1rem;
    padding: 0.25rem;
  }
  .mobile-only {
    font-size: 1rem;
    padding: 0.25rem;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .site-header {
    padding: 0 0.5rem;
  }
  .header-flex {
    min-height: 48px;
  }
  .logo-group {
    max-width: 75%;
    gap: 0.15rem;
  }
  .header-logo {
    height: 26px;
  }
  .header-logo.secondary {
    height: 26px;
  }
  #theme-toggle {
    font-size: 0.9rem;
    padding: 0.2rem;
  }
  .mobile-only {
    font-size: 0.9rem;
    padding: 0.2rem;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 90%;
  max-width: 1200px;
  margin-left: 2%;
  padding-right: 2rem;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-weight: 900; /* Black weight */
  font-size: 5rem;
  line-height: 1.1;
  margin-top: 0; /* Resets any default spacing */
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content h1 span {
  display: block;
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #1d4ed8;
  transform: translateX(5px);
}

.cta-btn::after {
  content: "";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover::after {
  transform: translateX(3px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero - Mobile font scaling */
@media (max-width: 1200px) {
  .hero-content h1 { 
    font-size: 4.5rem !important; 
  }
}

@media (max-width: 1024px) {
  .hero-content h1 { 
    font-size: 4rem !important; 
  }
}

@media (max-width: 900px) {
  .hero-content h1 { 
    font-size: 3.5rem !important; 
  }
  .hero-content p { 
    font-size: 1.4rem !important; 
  }
}

@media (max-width: 768px) {
  .hero-content h1 { 
    font-size: 3.2rem !important; 
  }
  .hero-content p { 
    font-size: 1.3rem !important; 
  }
}

@media (max-width: 650px) {
  .hero-content h1 { 
    font-size: 3rem !important; 
  }
  .hero-content p { 
    font-size: 1.25rem !important; 
  }
}

@media (max-width: 600px) {
  .hero-content h1 { 
    font-size: 2.8rem !important; 
  }
  .hero-content p { 
    font-size: 1.2rem !important; 
  }
  .hero-content { 
    margin-left: 1rem; 
    padding-right: 1rem; 
  }
}

@media (max-width: 520px) {
  .hero-content h1 { 
    font-size: 2.6rem !important; 
  }
  .hero-content p { 
    font-size: 1.15rem !important; 
  }
}

@media (max-width: 480px) {
  .hero-content h1 { 
    font-size: 2.4rem !important; 
  }
  .hero-content p { 
    font-size: 1.1rem !important; 
  }
}

@media (max-width: 400px) {
  .hero-content h1 { 
    font-size: 2.2rem !important; 
  }
  .hero-content p { 
    font-size: 1.05rem !important; 
  }
}

@media (max-width: 360px) {
  .hero-content h1 { 
    font-size: 2rem !important; 
  }
  .hero-content p { 
    font-size: 1rem !important; 
  }
}
.services-section {
  background: var(--card-bg);
  padding: 3rem 0 2rem;
  text-align: center;
}
.services-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  max-width: 260px;
  flex: 1 1 220px;
  min-width: 200px;
  text-align: center;
  transition: box-shadow 0.2s;
}
[data-theme="dark"] .service-card {
  background: var(--card-bg);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.categories-section {
  background: #fff;
  padding: 80px 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.text-center {
  text-align: center;
}
.mb-12 {
  margin-bottom: 48px;
}
.mt-12 {
  margin-top: 48px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.category-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover .category-image img {
  transform: scale(1.05);
}
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  color: white;
  padding: 32px 24px 24px;
  transform: translateY(0);
  transition: all 0.3s ease;
}
.category-overlay h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.6), transparent);
}
.view-all-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}
.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}
.view-all-btn::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;
}
.view-all-btn:hover::before {
  left: 100%;
}
/* Dark mode support for categories */
.dark .categories-section {
  background: #1e293b;
}
.dark .section-title {
  color: #f8fafc;
}
.dark .section-subtitle {
  color: #cbd5e1;
}
.dark .category-card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.dark .category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
/* Mobile optimizations */
@media (max-width: 768px) {
  .categories-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  .category-image {
    height: 240px;
  }
  .view-all-btn {
    padding: 14px 36px;
    font-size: 1rem;
  }
}
.site-footer {
  background: #18181b;
  color: #fff;
  padding: 64px 0 32px 0;
  font-family: inherit;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-brand p {
  color: #a1a1aa;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center; /* Ensures vertical alignment */
}

.footer-social a {
  color: #a1a1aa;
  transition: color 0.2s;
  text-decoration: none;
  width: 24px;
  height: 24px;
  display: flex; /* Makes the anchor a flex container */
  align-items: center; /* Centers icon vertically */
  justify-content: center; /* Centers icon horizontally */
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 100%; /* Makes SVG fill the container */
  height: 100%; /* Makes SVG fill the container */
  flex-shrink: 0; /* Prevents SVG from shrinking */
}
.footer-links ul,
.footer-products ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-products li,
.footer-contact li {
  margin-bottom: 8px;
}
.footer-links a,
.footer-products a,
.footer-contact a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-products a:hover,
.footer-contact a:hover {
  color: #fff;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  min-height: 30px;
}
.footer-contact svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #3b82f6;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid #27272a;
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  color: #71717a;
  font-size: 0.95rem;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  padding: 10px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.whatsapp-float img {
  width: 36px;
  height: 36px;

}
.whatsapp-float:hover {
  background: #128c7e;
}
@media (max-width: 900px) {
  .footer-flex, .services-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .category-card {
    width: 100%;
    min-width: 0;
  }
  .footer-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}
/* Testimonials Section */
.testimonials-section {
  background: var(--card-bg);
  padding: 3rem 1.5rem 4rem; /* Equal padding on all sides */
  text-align: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  padding: 0 1rem; /* Equal padding */
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2rem 1.8rem;
  text-align: left;
  transition: transform 0.3s ease;
  margin: 0 0.5rem; /* Equal side margins */
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

[data-theme="dark"] .testimonial-card {
  background: var(--card-bg-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  left: -15px;
  top: -20px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.testimonial-company {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 3rem 1.25rem 4rem;
  }
  .testimonial-card {
    margin: 0 0.4rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 1rem 4rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .testimonial-card {
    margin: 0 0.3rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2.5rem 0.75rem 3.5rem;
  }
  .testimonials-section h2 {
    font-size: 1.8rem;
    padding: 0 0.5rem;
  }
  .testimonial-card {
    padding: 1.8rem 1.25rem;
    margin: 0 0.2rem;
  }
  .testimonial-photo {
    width: 48px;
    height: 48px;
  }
}
/* Mobile navigation styles - only show hamburger when nav items are hidden */
.mobile-only {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  font-size: 1.5rem;
}

@media (max-width: 991px) {
  .mobile-only {
    display: inline-block;
  }
}

.dark .mobile-only { 
  color: #e5e7eb; 
}

.mobile-nav {
  display: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 40;
  transition: all 0.2s;
}

.dark .mobile-nav { 
  background: #18181b; 
}

.mobile-nav.open { 
  display: block; 
}

.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 20px;
  list-style: none;
}

.mobile-nav nav a {
  color: #222;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: block;
}

.mobile-nav nav a.active,
.mobile-nav nav a:hover {
  background: #f3f4f6;
  color: #2563eb;
}

/* Special styling for catalog button in mobile menu */
.mobile-nav nav a.catalogs-btn {
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  margin-top: 8px;
}

.mobile-nav nav a.catalogs-btn:hover {
  background: #1d4ed8;
  color: #fff;
}

.dark .mobile-nav nav a { 
  color: #e5e7eb; 
}

.dark .mobile-nav nav a.active,
.dark .mobile-nav nav a:hover { 
  background: #27272a; 
  color: #60a5fa; 
}

.dark .mobile-nav nav a.catalogs-btn {
  background: #2563eb;
  color: #fff;
}

.dark .mobile-nav nav a.catalogs-btn:hover {
  background: #1d4ed8;
  color: #fff;
}

.features-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 16px; /* Changed from 0 to 16px for side padding */
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; /* Reduced from 20px to 16px to account for section padding */
  box-sizing: border-box;
}

.features-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
  position: relative;
  padding-bottom: 15px;
}

.features-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #2563eb;
  margin: 15px auto 0;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin: 0 8px; /* Added side margins */
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  stroke: white;
}

/* Different icon colors for each feature */
.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 6px rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 4px 6px rgba(236, 72, 153, 0.2);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
}

.feature-desc {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 480px) {
  .feature-card {
    margin: 0; /* Remove side margins on larger screens */
  }
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}
.cta-section {
  background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .cta-buttons { flex-direction: row; }
}
.cta-btn-white {
  background: #fff;
  color: #2563eb;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cta-btn-white:hover { background: #f3f4f6; }
.cta-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta-btn-outline:hover { background: rgba(255,255,255,0.1); }

.whatsapp-float-btn {
  position: fixed;
  z-index: 9999;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  padding: 18px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 60px;
}
.whatsapp-float-btn:hover {
  background: #128c7e;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  max-width: 200px;
  padding-right: 24px;
}
.whatsapp-float-label {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.whatsapp-float-btn:hover .whatsapp-float-label {
  opacity: 1;
  max-width: 120px;
  margin-left: 12px;
}

/* Products Page */
.products-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}
.products-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}
.products-hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.search-filter-bar {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.search-box {
  flex: 1;
  min-width: 300px;
  display: flex;
  background: white;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.search-box input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}
.search-box button {
  padding: 16px 20px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}
.search-box button:hover {
  color: #2563eb;
}
.filter-btn {
  display: inline-flex; /* Better for buttons with fixed content */
  align-items: center;
  justify-content: center; /* Center contents horizontally */
  gap: 8px;
  padding: 12px 24px; /* Slightly reduced vertical padding */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
  line-height: 1; /* Prevents vertical spacing issues */
}

.filter-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: currentColor; /* Ensures color consistency */
  vertical-align: middle; /* Better alignment with text */
}
/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  padding: 32px 0;
}
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.product-image {
  height: 200px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-content {
  padding: 20px;
}
.product-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.product-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-category {
  font-size: 0.9rem;
  color: #64748b;
}
.view-details {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Product Details Page */
.product-details {
  padding: 32px 0;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  color: #64748b;
  margin-bottom: 32px;
}
.breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.product-images {
  position: sticky;
  top: 32px;
}
.main-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.main-image img {
  width: 100%;
  height: auto;
}
.image-thumbnails {
  display: flex;
  gap: 8px;
}
.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}
.thumbnail.active {
  border-color: #2563eb;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.specifications table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.specifications th,
.specifications td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}
.specifications th {
  color: #64748b;
  font-weight: normal;
  width: 40%;
}
.features ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.features li {
  padding: 8px 0 8px 24px;
  position: relative;
}
.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
}
.product-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.inquiry-btn {
  flex: 1;
  background: #2563eb;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.inquiry-btn:hover {
  background: #1d4ed8;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
}

/* Products Page Categories Grid */
.product-categories {
  padding: 80px 0;
  background: #f8fafc;
}
.categories-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .categories-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .categories-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}
.category-card-large {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.category-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.category-card-large .category-image {
  height: 220px;
  overflow: hidden;
}
.category-card-large .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card-large:hover .category-image img {
  transform: scale(1.05);
}
.category-card-large .category-content {
  padding: 24px;
}
.category-card-large .category-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
}
.category-card-large .category-content p {
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}
.category-card-large .view-more {
  color: #2563eb;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.category-card-large:hover .view-more {
  color: #1d4ed8;
}

/* Dark mode support for products page */
.dark .products-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.dark .product-categories {
  background: #0f172a;
}
.dark .category-card-large {
  background: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.dark .category-card-large:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
.dark .category-card-large .category-content h3 {
  color: #f8fafc;
}
.dark .category-card-large .category-content p {
  color: #cbd5e1;
}

/* Dark mode for category products */
.dark .category-products {
  background: #0f172a;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .products-hero {
    padding: 60px 0 40px;
  }
  
  .products-hero h1 {
    font-size: 2.5rem;
  }
  
  .search-filter-bar {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  
  .search-box {
    min-width: auto;
    width: 100%;
  }
  
  .product-categories {
    padding: 60px 0;
  }
  
  .categories-grid-full {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  
  .category-card-large .category-image {
    height: 200px;
  }
  
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px 16px;
  }
}

/* Category Hero Section */
.category-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 20px; /* Added side padding */
}

.category-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.category-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.category-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px; /* Added inner padding */
  box-sizing: border-box;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb span {
  color: rgba(255,255,255,0.6);
}

.category-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.2;
}

.category-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-hero {
    height: 350px;
    padding: 0 16px;
  }
  
  .category-hero-content {
    padding: 0 16px;
  }
  
  .category-hero h1 {
    font-size: 2.2rem;
  }
  
  .category-hero p {
    font-size: 1.1rem;
  }
  
  .breadcrumb {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .category-hero {
    height: 300px;
    padding: 0 12px;
  }
  
  .category-hero-content {
    padding: 0 12px;
  }
  
  .category-hero h1 {
    font-size: 1.8rem;
  }
  
  .category-hero p {
    font-size: 1rem;
  }
}

/* Products Listing Section */
.products-listing,
.category-products {
  padding: 80px 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.products-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
  margin: 0 0 8px 0; /* Added margin */
}

.products-count {
  color: #64748b;
  font-size: 1rem;
  margin: 0; /* Reset margin */
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2563eb;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #1e293b;
}

.product-short-desc {
  color: #64748b;
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 20px 0;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  margin-left: 2px;
  margin-right: 2px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box; /* Ensure consistent sizing */
}

.btn-primary {
  background: #2563eb;
  color: white;
  border: 1px solid #2563eb;
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.btn-secondary {
  background: white;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.btn-secondary:hover {
  background: #f8fafc;
  color: #1d4ed8;
}

.btn-secondary svg {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  
  .product-info {
    padding: 16px;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    margin-left: 2px;
    margin-right: 2px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .products-listing {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .product-info {
    padding: 16px;
  }
  
  .product-image {
    height: 180px;
  }
  
  .product-actions {
    margin-top: 12px;
    gap: 8px;
    margin-left: 2px;
    margin-right: 2px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
/* Product Details Page Styles */
.product-details-page {
  padding: 40px 0 80px;
}

.navigation-breadcrumb {
  margin-bottom: 40px;
}

.navigation-breadcrumb .back-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.navigation-breadcrumb .back-link:hover {
  color: #1d4ed8;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.product-images .main-image {
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
}

.product-images .main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-category-badge {
  background: #e0e7ff;
  color: #3730a3;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.product-info h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1e293b;
  line-height: 1.2;
}

.product-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.product-price {
  margin-bottom: 32px;
}

.product-price .price {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
}

.product-benefits {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.benefit-item svg {
  color: #22c55e;
  flex-shrink: 0;
}

.benefit-item span {
  color: #64748b;
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.request-quote-btn {
  background: #2563eb;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  flex: 1;
  text-align: center;
  min-width: 180px;
}

.request-quote-btn:hover {
  background: #1d4ed8;
}

.whatsapp-inquiry-btn {
  background: #25d366;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  flex: 1;
  text-align: center;
  min-width: 180px;
}

.whatsapp-inquiry-btn:hover {
  background: #128c7e;
}

.product-features-section,
.specifications-section,
.related-products-section {
  margin-bottom: 60px;
}

.product-features-section h2,
.specifications-section h2,
.related-products-section h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 32px;
  color: #1e293b;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item svg {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  color: #64748b;
  line-height: 1.5;
}

.specifications-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.specifications-table table {
  width: 100%;
  border-collapse: collapse;
}

.specifications-table th,
.specifications-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.specifications-table th {
  background: #f8fafc;
  color: #374151;
  font-weight: 600;
  width: 35%;
}

.specifications-table td {
  color: #64748b;
}

.specifications-table tr:last-child th,
.specifications-table tr:last-child td {
  border-bottom: none;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.related-product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.related-product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.05);
}

.related-product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2563eb;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: capitalize;
}

.related-product-content {
  padding: 20px;
}

.related-product-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.related-product-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.learn-more {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Dark mode support */
.dark .category-hero h1,
.dark .category-hero p {
  color: white;
}

.dark .products-listing {
  background: #0f172a;
}

.dark .products-header h2 {
  color: #f8fafc;
}

.dark .product-card {
  background: #1e293b;
}

.dark .product-card .product-content h3 {
  color: #f8fafc;
}

.dark .product-details-page {
  background: #0f172a;
}

.dark .product-info h1 {
  color: #f8fafc;
}

.dark .specifications-table {
  background: #1e293b;
}

.dark .specifications-table th {
  background: #334155;
  color: #f8fafc;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .category-hero {
    height: 300px;
  }
  
  .category-hero h1 {
    font-size: 2rem;
  }
  
  .products-listing {
    padding: 60px 0;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-details-page {
    padding: 20px 0 60px;
  }
  
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-info h1 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Company Overview Section */
.company-overview {
  padding: 80px 0;
  background: white;
}

[data-theme="dark"] .company-overview {
  background: var(--bg);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.overview-content h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 24px;
}

[data-theme="dark"] .overview-content h2 {
  color: var(--text);
}

.overview-content p {
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 1rem;
}

[data-theme="dark"] .overview-content p {
  color: #cbd5e1;
}

.overview-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.overview-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Core Values Section */
.core-values {
  padding: 80px 0;
  background: #f1f5f9;
}

[data-theme="dark"] .core-values {
  background: #0f172a;
}

.core-values h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

[data-theme="dark"] .core-values h2 {
  color: var(--text);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.value-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

[data-theme="dark"] .value-card {
  background: var(--card-bg);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-icon {
  color: #2563eb;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

[data-theme="dark"] .value-icon {
  color: #60a5fa;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1e293b;
}

[data-theme="dark"] .value-card h3 {
  color: var(--text);
}

.value-card p {
  color: #64748b;
  line-height: 1.5;
}

[data-theme="dark"] .value-card p {
  color: #cbd5e1;
}

/* Company Timeline Section */
.company-timeline {
  padding: 80px 0;
  background: white;
}

[data-theme="dark"] .company-timeline {
  background: var(--bg);
}

.company-timeline h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #1e293b;
  margin-bottom: 16px;
}

[data-theme="dark"] .company-timeline h2 {
  color: var(--text);
}

.timeline-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .timeline-subtitle {
  color: #cbd5e1;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

[data-theme="dark"] .timeline::before {
  background: #475569;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: #2563eb;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.125rem;
  min-width: 80px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.timeline-content {
  flex: 1;
  max-width: 350px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin: 0 24px;
}

[data-theme="dark"] .timeline-content {
  background: var(--card-bg);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 24px;
  margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: 24px;
  margin-left: 0;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 8px;
}

[data-theme="dark"] .timeline-content h3 {
  color: var(--text);
}

.timeline-content p {
  color: #64748b;
  line-height: 1.5;
}

[data-theme="dark"] .timeline-content p {
  color: #cbd5e1;
}

/* Leadership Section */
.leadership {
  padding: 80px 0;
  background: #f1f5f9;
}

[data-theme="dark"] .leadership {
  background: #0f172a;
}

.leadership h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

[data-theme="dark"] .leadership h2 {
  color: var(--text);
}

.leadership-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 32px;
}

[data-theme="dark"] .leadership-card {
  background: var(--card-bg);
}

.leader-photo {
  width: auto;
  height: 192px;
  border-radius: 8px; /* Changed from 50% to make it square with slightly rounded corners */
  overflow: hidden;
  flex-shrink: 0;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to show the full face without cropping */
}

.leader-info h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 8px;
}

[data-theme="dark"] .leader-info h3 {
  color: var(--text);
}

.leader-title {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 1.125rem;
}

[data-theme="dark"] .leader-title {
  color: #60a5fa;
}

.leader-info p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

[data-theme="dark"] .leader-info p {
  color: #cbd5e1;
}

.leader-info p:last-child {
  margin-bottom: 0;
}

/* Location Section */
.location {
  padding: 80px 0;
  background: white;
}

[data-theme="dark"] .location {
  background: var(--bg);
}

.location h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #1e293b;
  margin-bottom: 48px;
}

[data-theme="dark"] .location h2 {
  color: var(--text);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .contact-info {
  background: var(--card-bg);
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 16px;
}

[data-theme="dark"] .contact-info h3 {
  color: var(--text);
}

.contact-items {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item svg {
  width: 24px; /* Explicit width */
  height: 24px; /* Explicit height */
  flex-shrink: 0;
  color: #2563eb;
  margin-top: 3px; /* Better vertical alignment */
}

/* Update your existing dark mode colors */
[data-theme="dark"] .contact-item svg {
  color: #60a5fa;
}

/* Ensure text elements align properly */
.contact-item p,
.contact-item a {
  color: #64748b;
  line-height: 1.5;
  text-decoration: none;
  margin: 0;
  flex: 1; /* Takes remaining space */
  min-width: 0; /* Allows text wrapping */
}
[data-theme="dark"] .contact-item p,
[data-theme="dark"] .contact-item a {
  color: #cbd5e1;
}

.contact-item a:hover {
  color: #2563eb;
}

[data-theme="dark"] .contact-item a:hover {
  color: #60a5fa;
}

.business-hours p {
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.5;
}

[data-theme="dark"] .business-hours p {
  color: #cbd5e1;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: 400px;
}

/* About CTA Section */
.about-cta {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.about-cta h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.about-cta p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #2563eb;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.2s;
}

.cta-button:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }
  
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-hero-content p {
    font-size: 1.125rem;
  }
  
  .company-overview,
  .core-values,
  .company-timeline,
  .leadership,
  .location,
  .about-cta {
    padding: 60px 0;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .overview-content h2,
  .core-values h2,
  .company-timeline h2,
  .leadership h2,
  .location h2,
  .about-cta h2 {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    align-items: flex-start;
  }
  
  .timeline-year {
    min-width: 60px;
    font-size: 1rem;
    padding: 8px 12px;
  }
  
  .timeline-content {
    margin-left: 24px !important;
    margin-right: 0 !important;
    max-width: none;
  }
  
  .leadership-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .leader-photo {
    width: 150px;
    height: 150px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .overview-content h2,
  .core-values h2,
  .company-timeline h2,
  .leadership h2,
  .location h2,
  .about-cta h2 {
    font-size: 1.75rem;
  }
  
  .value-card,
  .timeline-content,
  .leadership-card,
  .contact-info {
    padding: 20px;
  }
  
  .timeline-year {
    min-width: 50px;
    font-size: 0.9rem;
    padding: 6px 10px;
  }
  
  .leader-photo {
    width: 120px;
    height: 120px;
  }
}

/* Catalogs Page Styles */

/* Catalogs Hero Section */
.catalogs-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.catalogs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.catalogs-hero-content {
  position: relative;
  z-index: 1;
}

.catalogs-hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.catalogs-hero-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* Catalogs Section */
.catalogs-section {
  padding: 80px 0;
  background: #f8fafc;
}

[data-theme="dark"] .catalogs-section {
  background: #0f172a;
}

.catalogs-header {
  text-align: center;
  margin-bottom: 60px;
}

.catalogs-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 16px;
}

[data-theme="dark"] .catalogs-header h2 {
  color: var(--text);
}

.catalogs-count {
  color: #64748b;
  font-size: 1.125rem;
  margin: 0;
}

[data-theme="dark"] .catalogs-count {
  color: #cbd5e1;
}

/* Catalogs Grid */
.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

[data-theme="dark"] .catalog-card {
  background: var(--card-bg);
  border-color: #374151;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .catalog-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

/* Catalog Image/Icon Section */
.catalog-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

[data-theme="dark"] .catalog-image {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
}

.catalog-icon {
  color: #2563eb;
  transition: all 0.3s ease;
}

[data-theme="dark"] .catalog-icon {
  color: #60a5fa;
}

.catalog-card:hover .catalog-icon {
  transform: scale(1.1);
  color: #1d4ed8;
}

[data-theme="dark"] .catalog-card:hover .catalog-icon {
  color: #3b82f6;
}

.catalog-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
}

.catalog-badge {
  background: #dc2626;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Catalog Content */
.catalog-content {
  padding: 24px;
}

.catalog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

[data-theme="dark"] .catalog-content h3 {
  color: var(--text);
}

.catalog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

[data-theme="dark"] .catalog-content p {
  color: #cbd5e1;
}

/* Catalog Meta Info */
.catalog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

[data-theme="dark"] .catalog-meta {
  border-top-color: #374151;
}

.file-size,
.file-pages {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

[data-theme="dark"] .file-size,
[data-theme="dark"] .file-pages {
  color: #9ca3af;
}

.file-size::before {
  content: "📄";
  margin-right: 6px;
}

.file-pages::before {
  content: "📋";
  margin-right: 6px;
}

/* Catalog Actions */
.catalog-actions {
  display: flex;
  gap: 12px;
}

.btn-view,
.btn-download {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-view {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.btn-view:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
}

.btn-download {
  background: transparent;
  color: #2563eb;
  border-color: #2563eb;
}

[data-theme="dark"] .btn-download {
  color: #60a5fa;
  border-color: #60a5fa;
}

.btn-download:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-1px);
}

[data-theme="dark"] .btn-download:hover {
  background: #60a5fa;
  color: #1e293b;
}

/* Help Section */
.catalogs-help {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  text-align: center;
}

.help-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.help-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.help-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-contact,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-contact {
  background: white;
  color: #2563eb;
  border-color: white;
}

.btn-contact:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .catalogs-hero {
    padding: 60px 0;
  }
  
  .catalogs-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .catalogs-hero-content p {
    font-size: 1.125rem;
  }
  
  .catalogs-section,
  .catalogs-help {
    padding: 60px 0;
  }
  
  .catalogs-header h2,
  .help-content h2 {
    font-size: 2rem;
  }
  
  .catalogs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .catalog-image {
    height: 150px;
  }
  
  .catalog-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-view,
  .btn-download {
    width: 100%;
    justify-content: center;
  }
  
  .help-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-contact,
  .btn-whatsapp {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .catalogs-hero-content h1 {
    font-size: 2rem;
  }
  
  .catalogs-header h2,
  .help-content h2 {
    font-size: 1.75rem;
  }
  
  .catalog-content {
    padding: 20px;
  }
  
  .catalog-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .help-content p {
    font-size: 1.125rem;
  }
  
  .btn-contact,
  .btn-whatsapp {
    padding: 14px 24px;
    font-size: 1rem;
  }
}


/* Our Business Section */
.our-business {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.business-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.business-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.business-points {
  margin: 30px 0;
}

.business-point {
  margin-bottom: 25px;
}

.business-point h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .business-grid {
    grid-template-columns: 1fr;
  }
  
  .business-image {
    order: 2;
  }
  
  .business-content {
    order: 1;
  }
}



/* BK Enterprise Logo - Optimized Responsive Styles */
.footer-logo {
  margin: 25px 0 15px;
  text-align: center;
}

.footer-logo img {
  max-width: 100%;
  width: 180px; /* Ideal desktop size */
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-logo img {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    margin: 20px 0;
  }
  .footer-logo img {
    width: 150px;
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    width: 130px;
  }
}

@media (max-width: 400px) {
  .footer-logo img {
    width: 110px;
  }
}