/* Desktop-only design - Fixed layout for all devices */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-width: 1200px; /* Force minimum width */
}

.scroll-section {
  scroll-margin-top: 120px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 700px;
  text-align: center;
  padding-top: 120px;
}

/* Header - Desktop Only */
.fixed-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: #2c3e50;
  border-bottom: 3px solid #e74c3c;
}

.header {
  padding-top: 0;
  color: white;
}

.header-top-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.logo-img-large {
  height: 85px;
  width: auto;
}

.since {
  font-size: 16px;
  color: #ccc;
  margin-top: 1px;
}

.firm-name-wrap {
  text-align: center;
  flex: 1;
}

.firm-name-large {
  font-size: 40px;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.centered-info,
.contact-info {
  font-size: 14px;
  color: white;
  line-height: 1.3;
  text-align: left;
  margin: 0;
  margin-left: 40px;
}

.pushed-right {
  margin-left: auto;
}

.centered-info i,
.contact-info i {
  margin-right: 5px;
  color: #e74c3c;
}

/* Navbar - Desktop Style */
.navbar {
  background-color: #c0392b;
  padding: 8px 0;
  position: relative;
}

.nav-toggle {
  display: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 0;
}

.navbar li {
  margin: 0 10px;
}

.navbar a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  transition: background 0.3s ease;
  border-radius: 4px;
  display: block;
}

.navbar a:hover {
  background-color: #e74c3c;
}

/* Section */
.section {
  padding: 80px 20px;
}

.dark {
  background-color: #f4f4f4;
}

/* Enhanced About Us Section */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e74c3c" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e74c3c" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e74c3c" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e74c3c" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e74c3c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

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

.about-header h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  margin: 0 auto 20px;
  border-radius: 2px;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
}

.about-subtitle {
  font-size: 20px;
  color: #7f8c8d;
  font-weight: 500;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-card {
  background: white;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #e74c3c;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.card-icon i {
  font-size: 28px;
  color: white;
}

.about-card h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-card p {
  color: #5a6c7d;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  width: 100%;
  max-width: 300px;
}

.stat-item {
  text-align: center;
  padding: 30px 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 3px solid #e74c3c;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 15px;
  color: #7f8c8d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  background-color: #ecf0f1;
  text-align: center;
  padding: 60px 20px 40px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Grid System */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Cards */
.card {
  background: white;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  color: #333;
  background-color: rgba(255, 255, 255, 0.95);
  perspective: 1000px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Product Cards with Flip Effect */
.card-inner {
  position: relative;
  width: 100%;
  height: 240px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.card:hover .card-inner,
.card:focus-within .card-inner {
  transform: rotateY(180deg) scale(1.02);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  outline: 1px solid transparent;
}

.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card-back {
  transform: rotateY(180deg);
  text-align: center;
  background-color: #f1f1f1;
  overflow-y: auto;
}

.card-back ul {
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.card-back ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Channel Partner Cards */
.partner-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-radius: 10px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.partner-card img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 10px;
}

.partner-name {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #222;
}

/* Button */
.btn {
  background-color: #e74c3c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #c0392b;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

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

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #2c3e50;
  color: white;
  font-size: 14px;
}

/* Product Section */
.products-section {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('background.jpeg') center center / cover no-repeat;
  color: white;
}

.bg-overlay {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  border-radius: 15px;
  color: #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-title {
  color: #2c3e50;
  font-size: 32px;
  text-align: center;
  margin-bottom: 45px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

/* Image Slider */
.image-slider-section {
  background-color: #f4f4f4;
  padding: 30px 0;
  text-align: center;
}

.slider-container {
  position: relative;
  width: 95%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slider-img {
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #666;
  font-size: 36px;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn.left {
  left: 15px;
}

.slider-btn.right {
  right: 15px;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #333;
}

/* Certificates */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 50px;
  justify-content: center;
  margin-top: 30px;
}

.cert-card {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 8px solid #e74c3c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
  background: white;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.cert-card:hover {
  transform: scale(1.02);
}

.cert-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

/* Popup */
.cert-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.cert-popup img {
  max-width: 100%;
  max-height: 100%;
  border: 8px solid white;
  border-radius: 8px;
  background: white;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
}

/* Price List Cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 260px;
  margin: 0 auto;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.price-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.price-card h3 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.price-card .btn {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin: 5px;
  font-size: 14px;
}

.price-card .btn:hover {
  background-color: #c0392b;
}

/* Fade-in Animation */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-to-top button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #c0392b;
}

/* Remove ALL responsive media queries - Desktop layout only */
