/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
  background: #033051;
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ensure main content is pushed below the fixed header (matches home page spacing) */
main {
  padding-top: 88px;
}

@media (max-width: 768px) {
  main {
    padding-top: 120px;
  }
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #25d366;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #25d366;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.mobile-menu-toggle:hover {
  color: #25d366;
}

.mobile-menu-toggle.active {
  color: #25d366;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 100px 0 50px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #033051;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #25d366;
  color: white;
}

.btn-primary:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Primary button with consistent design */
.btn.btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(37,211,102,0.12) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #1ea952 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.2) !important;
  color: #fff !important;
}
.btn.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #033051;
  border: 2px solid #033051;
}

.btn-secondary:hover {
  background: #033051;
  color: white;
  transform: translateY(-2px);
}

/* Secondary (Download Brochure) button with consistent design */
.btn.btn-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: #033051 !important;
  border: 2px solid rgba(3,48,81,0.12) !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(3,48,81,0.06) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background: #033051 !important;
  color: #fff !important;
  border-color: #033051 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(3,48,81,0.14) !important;
}
.btn.btn-secondary:active {
  transform: translateY(-1px);
}

/* Outline button used as 'Learn More' on homepage slides */
.btn.btn-outline {
  display: inline-block;
  background: transparent !important;
  color: #033051 !important;
  border: 2px solid rgba(3,48,81,0.12) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(3,48,81,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn.btn-outline:hover,
.btn.btn-outline:focus {
  background: #033051 !important;
  color: #fff !important;
  border-color: #033051 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(3,48,81,0.14);
}
.btn.btn-outline:active {
  transform: translateY(-1px);
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
  position: relative;
  z-index: 2;
  clear: both;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #033051;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.about-features {
  display: grid;
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background: #f8f9fa;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 3rem;
  color: #25d366;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #033051;
}

/* Products Section */
.products {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.products::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(23,162,184,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.products h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #033051;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.products h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #25d366, #17a2b8);
  margin: 1rem auto 2.5rem;
  border-radius: 3px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Product Category Cards - Enhanced Design */
.product-category-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3,48,81,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(37,211,102,0.1);
  position: relative;
}

.product-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25d366, #17a2b8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
}

.product-category-card:hover::before {
  transform: scaleX(1);
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(3,48,81,0.15);
  border-color: rgba(37,211,102,0.3);
}

.product-category-card .product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(1);
  display: block;
}

.product-category-card:hover .product-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.product-category-card h3 {
  padding: 1.25rem 1rem 0.5rem;
  color: #033051;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-category-card p {
  padding: 0.5rem 1rem 1.25rem;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.4;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-category-card .btn {
  margin: 0 1rem 1.25rem 1rem;
  display: inline-flex;
  width: calc(100% - 2rem);
}

/* Product Category Cards - Enhanced Design */
.product-category-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3,48,81,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(37,211,102,0.1);
  position: relative;
}

.product-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25d366, #17a2b8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
}

.product-category-card:hover::before {
  transform: scaleX(1);
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(3,48,81,0.15);
  border-color: rgba(37,211,102,0.3);
}

.product-category-card .product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(1);
}

.product-category-card:hover .product-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.product-category-card h3 {
  padding: 1.5rem 1.5rem 0.75rem;
  color: #033051;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.product-category-card p {
  padding: 0 1.5rem 1.5rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-category-card .btn {
  margin: 0 1.5rem 1.5rem 1.5rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card h3 {
  padding: 1rem 1rem 0.5rem;
  color: #033051;
  font-size: 1.25rem;
}

.product-card p {
  padding: 0 1rem 1rem;
  color: #666;
}

.products-cta {
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #033051 0%, #1a5a7a 50%, #0d4a63 100%);
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37,211,102,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact > .container::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #25d366, #20a853);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info {
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #033051;
  font-weight: 600;
  border-left: 4px solid #25d366;
  padding-left: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  padding: 1rem;
  background: rgba(37,211,102,0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(37,211,102,0.15);
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: #25d366;
  margin-right: 1rem;
  width: 30px;
}

.contact-link {
  color: #033051;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.contact-link:hover {
  color: #25d366;
  border-bottom-color: #25d366;
  transform: translateY(-1px);
}

.contact-form {
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.1);
  transform: translateY(-2px);
}

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

/* Footer */
.main-footer {
  background: #033051;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #25d366;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #25d366;
}

.footer-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-link:hover {
  color: #1ea952;
  border-bottom-color: #1ea952;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Styles */
.main-nav.active {
  display: block;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-header .container {
    flex-wrap: wrap;
  }

  .logo {
    flex-grow: 0;
    text-align: left;
  }

  .logo img {
    height: 60px;
    width: auto;
  }

  .social-media-bar {
    position: fixed;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    padding: 15px 8px;
    background: linear-gradient(135deg, #033051 0%, #1a4a6b 100%);
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.15);
  }
  
  .social-links {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .social-link {
    padding: 8px 6px;
    font-size: 1rem;
    width: 36px;
    height: 36px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #033051;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    margin: 0;
  }
  
  .main-nav ul li {
    width: 100%;
    margin: 0;
  }
  
  .main-nav ul li a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s ease;
    color: white;
    text-decoration: none;
  }
  
  .main-nav ul li a:hover {
    background-color: rgba(37, 211, 102, 0.1);
  }
  
  .main-nav ul li:last-child a {
    border-bottom: none;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 0 50px;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Product Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 1% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 900px;
  max-height: 98vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #25d366;
  background: white;
  transform: scale(1.1);
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

.modal-info {
  padding: 2rem;
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
}

.modal-info h3 {
  font-size: 1.8rem;
  color: #033051;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.modal-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

/* Modal Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Product Image Hover Effect */
.product-image {
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 100%;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 2% auto;
    max-height: 95vh;
  }
  
  .modal-content img {
    height: auto;
    max-height: 200px;
  }
  
  .modal-info {
    padding: 1.5rem;
    min-height: 150px;
    max-height: 300px;
  }
  
  .modal-info h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .modal-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .modal-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .modal-actions .btn {
    flex: none;
    width: 100%;
    padding: 12px 20px;
  }
  
  .modal-close {
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 25px;
  }

  .hero-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  transition: opacity 0.5s ease;
}

.slide.active {
  display: block;
}

}

/* Extra small screens */
@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 1% auto;
    max-height: 98vh;
  }
  
  .modal-content img {
    max-height: 180px;
  }
  
  .modal-info {
    padding: 1rem;
    min-height: 120px;
    max-height: 250px;
  }
  
  .modal-info h3 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  .modal-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .modal-actions .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

.product-description-color {
  color: #d32525;
  font-weight: 600;
}

/* Maintenance Modal Styles */
.maintenance-modal {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.maintenance-content {
  background: linear-gradient(135deg, #033051 0%, #1a4a6b 100%);
  color: white;
  text-align: center;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.maintenance-close-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.maintenance-close-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.maintenance-close-icon i {
  font-size: 18px;
  color: white;
}

.maintenance-header {
  padding: 3rem 2rem 2rem;
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
  position: relative;
}

.maintenance-header::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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.maintenance-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.maintenance-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: white;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.maintenance-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.maintenance-body {
  padding: 2.5rem 2rem;
}

.maintenance-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e8f4f8;
}

.maintenance-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.maintenance-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.maintenance-feature:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.maintenance-feature i {
  font-size: 1.5rem;
  color: #25d366;
  width: 24px;
  text-align: center;
}

.maintenance-feature span {
  font-weight: 500;
  color: white;
}

.maintenance-actions {
  padding: 0 2rem 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.maintenance-actions .btn {
  min-width: 200px;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.maintenance-explore-btn {
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.maintenance-explore-btn:hover {
  background: linear-gradient(135deg, #1ea952 0%, #25d366 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.maintenance-explore-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.maintenance-explore-btn i {
  margin-right: 8px;
}

/* Responsive Maintenance Modal */
@media (max-width: 768px) {
  .maintenance-content {
    max-width: 95%;
    margin: 5% auto;
  }
  
  .maintenance-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .maintenance-header h2 {
    font-size: 1.8rem;
  }
  
  .maintenance-subtitle {
    font-size: 1rem;
  }
  
  .maintenance-body {
    padding: 2rem 1.5rem;
  }
  
  .maintenance-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .maintenance-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .maintenance-actions .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .maintenance-content {
    max-width: 98%;
    margin: 2% auto;
  }
  
  .maintenance-header {
    padding: 1.5rem 1rem 1rem;
  }
  
  .maintenance-icon {
    font-size: 3rem;
  }
  
  .maintenance-header h2 {
    font-size: 1.5rem;
  }
  
  .maintenance-body {
    padding: 1.5rem 1rem;
  }
  
  .maintenance-text {
    font-size: 1rem;
  }
}

/* Modern IndexMaster Styles */

/* Social Media Bar */
.social-media-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  background: linear-gradient(135deg, #033051 0%, #1a4a6b 100%);
  padding: 20px 12px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: white;
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
}

.social-link i {
  margin: 0;
}

.social-link span {
  display: none;
}

.social-link:hover {
  transform: translateX(-5px) scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.social-link.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.social-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
}

.social-link.email {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link.email:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-link.phone {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.social-link.phone:hover {
  background: rgba(255, 193, 7, 0.3);
}

.social-link.linkedin {
  background: rgba(0, 119, 181, 0.2);
  border: 1px solid rgba(0, 119, 181, 0.3);
}

.social-link.linkedin:hover {
  background: rgba(0, 119, 181, 0.3);
}

/* Modern Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.slider-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.slide-text {
  z-index: 2;
}

.slide-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #033051;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.slide-subtitle {
  font-size: 1.3rem;
  color: #25d366;
  font-weight: 600;
  margin-bottom: 1rem;
}

.slide-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.slide-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.slide-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}

.slide-ctas .btn {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.18s ease;
}

.slide-image {
  position: relative;
  z-index: 1;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.slide-image img:hover {
  transform: scale(1.02);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #033051;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-btn:hover {
  background: #25d366;
  color: white;
  transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #25d366;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(37, 211, 102, 0.7);
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .slide-text h1 {
    font-size: 2rem;
  }
  
  .slide-subtitle {
    font-size: 1.1rem;
  }
  
  .slide-description {
    font-size: 1rem;
  }
  
  .slide-image img {
    height: 300px;
  }
  
  .slider-nav {
    padding: 0 1rem;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slide-image img {
        width: 95%;      /* Slight margin for better look */
        height: auto;
    }

    .slide-image {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .slide-text h1 {
    font-size: 1.5rem;
  }
  
  .slide-features {
    justify-content: center;
  }
  
  .slide-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* IndexMaster Specific Styles */

/* Pain Points Section */
.pain-points {
  padding: 80px 0;
  background: #f8f9fa;
}

.pain-points h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #033051;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pain-point-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pain-point-card:hover {
  transform: translateY(-5px);
}

.pain-point-card i {
  font-size: 3rem;
  color: #d32525;
  margin-bottom: 1rem;
}

.pain-point-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #033051;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: white;
}

.process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #033051;
}

.process-timeline {
  display: flex;
  gap: 24px;
  align-items: stretch;
  position: relative;
  padding: 20px 0 40px;
}

.process-timeline .process-line {
  position: absolute;
  left: 84px;
  right: 84px;
  top: 50%;
  height: 4px;
  background: linear-gradient(90deg, rgba(37,211,102,0.9), rgba(23,162,184,0.85));
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 3px;
}

.process-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 18px 18px 96px;
  box-shadow: 0 10px 30px rgba(3,48,81,0.06);
  position: relative;
  flex: 1 1 0;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(3,48,81,0.12);
}

.process-step .step-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #25d366 0%, #17a2b8 100%);
  box-shadow: 0 6px 18px rgba(37,211,102,0.12);
}

.process-step .step-number {
  position: absolute;
  left: 12px;
  top: -20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #25d366;
  color: #25d366;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(3,48,81,0.06);
}

.process-step .step-content h3 {
  margin: 0 0 6px 0;
  font-size: 1.15rem;
  color: #033051;
}

.process-step .step-content p {
  margin: 0 0 10px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.process-step .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .process-timeline {
    flex-direction: column;
    padding: 10px 0 20px;
  }

  .process-timeline .process-line {
    left: 50%;
    top: 84px;
    width: 4px;
    height: calc(100% - 168px);
    transform: translateX(-50%);
  }

  .process-step {
    padding: 20px 18px 18px 92px;
  }

  .process-step .step-icon {
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
  }

  .process-step .step-number {
    left: calc(50% - 21px);
    top: 80px;
  }
}

@media (max-width: 480px) {
  .process-step {
    padding-left: 78px;
  }

  .process-step .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.05rem;
  }
}

/* Testimonials Section - box inside box style */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg,#071933 0%, #0b2340 100%);
  color: #ecf8f7;
  position: relative;
}
.testimonials h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-weight: 800;
}
.testimonials .section-sub {
  text-align: center;
  color: rgba(234,248,247,0.8);
  margin-bottom: 1.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 50px 20px 24px; /* top padding shows avatars in cards */
  display: flex;
  align-items: center;
  flex-direction: column;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  overflow-y: visible;
  scroll-behavior: smooth;
  width: 100%;
}
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 16px;
  padding: 18px;
  min-height: 240px;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  scroll-snap-align: start;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(2,6,23,0.7); }

/* Avatar sits above the inner panel */
.testi-avatar-wrap {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(3,48,81,0.18);
}

/* Inner panel -- the "box inside box" */
.testi-inner {
  position: relative;
  background: linear-gradient(180deg, #f8fcff 0%, #eaf6ff 100%);
  color: #033051;
  border-radius: 12px;
  padding: 28px 20px 20px 116px; /* increased left padding for avatar inside */
  min-height: 160px;
  box-shadow: 0 10px 30px rgba(3,48,81,0.06);
}
.testi-quote {
  color: #033051;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.testi-meta { display:flex; gap:8px; align-items:center; margin-top:6px; }
.testi-info strong { display:block; color:#033051; font-size:1rem; }
.testi-info span { color: #405b6b; font-size:0.92rem; }

.testi-btn {
  display: block;
  background: transparent;
  color: rgba(255,255,255,0.95);
  border: none;
  font-size: 28px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testi-btn:hover {
  color: #25d366;
  transform: scale(1.15);
}

/* Pagination dots */
.testimonials-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: #25d366;
  border-color: #25d366;
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); max-width: calc((100% - 24px) / 2); }
}

@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 100%; max-width: 100%; padding: 14px; min-height: 220px; }
  .testi-avatar-wrap { top: -26px; left: 14px; width:56px; height:56px; }
  .testi-avatar { width:56px; height:56px; border-width:3px; }
  .testi-inner { padding: 22px 16px 16px 70px; }
}

/* Company Profile Section */
.company-profile {
  padding: 80px 0;
  background: #f8f9fa;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.company-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #033051;
}

.company-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #666;
}

.achievements h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #033051;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.achievement-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.achievement-item i {
  font-size: 2.5rem;
  color: #25d366;
  margin-bottom: 1rem;
}

.achievement-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #033051;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background: white;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #033051;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  color: #25d366;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #033051;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background: #f8f9fa;
}

.industries h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #033051;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
}

.industry-card i {
  font-size: 2.5rem;
  color: #25d366;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #033051;
}

.industry-card p {
  color: #666;
  font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #033051 0%, #1a4a6b 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

/* Resources Section */
.resources {
  padding: 80px 0;
  background: white;
}

.resources h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #033051;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card i {
  font-size: 3rem;
  color: #25d366;
  margin-bottom: 1rem;
}

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #033051;
}

.resource-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Trust Strip */
.trust-strip {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
}

.metric .number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #25d366;
}

.metric .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: #25d366;
}

.trust-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.05));
  border-left: 4px solid #25d366;
  border-radius: 8px;
  color: #25d366;
  font-weight: 600;
  animation: slideIn 0.6s ease-out;
}

.trust-message i {
  font-size: 1.3rem;
  color: #25d366;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.08));
  border-left: 4px solid #25d366;
  border-radius: 8px;
  animation: slideIn 0.7s ease-out 0.2s backwards;
}

.business-hours i {
  font-size: 1.5rem;
  color: #25d366;
}

.business-hours h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #033051;
}

.business-hours p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

.business-hours span {
  color: #25d366;
  font-weight: 600;
}

.business-hours .sunday {
  color: #e74c3c;
  font-style: italic;
}

/* Responsive Design for IndexMaster */
@media (max-width: 768px) {
  .company-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .trust-metrics {
    gap: 1.5rem;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .achievement-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  /* Mobile button layout */
  .slide-ctas {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .slide-ctas .btn {
    flex: 1 1 100%;
    min-width: auto;
    width: 100%;
  }

  /* Mobile products grid layout */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .product-category-card h3 {
    font-size: 1rem;
    padding: 1rem 0.75rem 0.4rem;
    min-height: 50px;
  }

  .product-category-card p {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem 1rem;
    min-height: 60px;
  }

  .product-category-card .btn {
    margin: 0 0.75rem 1rem 0.75rem;
    width: calc(100% - 1.5rem);
  }
}