/* ========================================
   FILTERDYN - UNIFIED STYLESHEET
   All pages use this single CSS file for consistency
   ======================================== */

/* 1. BASE STYLES */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7fafd;
  color: #1a2636;
  line-height: 1.6;
}

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

/* 2. HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5vw;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f4f8a;
  letter-spacing: 1px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1001;
}

.nav-link {
  color: #1a2636;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s, transform 0.18s cubic-bezier(.4,0,.2,1);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.nav-link:hover,
.nav-link.active {
  background: #e6f2fb;
  color: #0070d2;
}

.nav-dropdown {
  position: relative;
  outline: none;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3em;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 2.2rem;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  border-radius: 12px;
  min-width: 210px;
  z-index: 1002;
  flex-direction: column;
  padding: 0.5rem 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1);
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  color: #1a2636;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: block;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #e6f2fb;
  color: #0070d2;
}

.header-cta {
  margin-left: 2rem;
  background: linear-gradient(90deg, #0070d2 0%, #00aaff 100%);
  color: #fff;
  padding: 0.7rem 1.7rem;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.header-cta:hover {
  background: linear-gradient(90deg, #005fa3 0%, #00aaff 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(0,112,210,0.18);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  margin-left: 1.5rem;
  color: #0070d2;
  cursor: pointer;
}

/* 3. BREADCRUMB NAVIGATION */
.breadcrumb-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #64748b;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: #0070d2;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #005bb5;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #1a2636;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #94a3b8;
  margin: 0 0.25rem;
  font-size: 0.8rem;
}

.breadcrumb-icon {
  margin-right: 0.25rem;
  font-size: 0.8rem;
}

/* 4. HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, #e6f2fb 0%, #f7fafd 100%);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem 4rem 1rem;
  position: relative;
}

.hero h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a2636;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  color: #2d3a4a;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-small {
  background: linear-gradient(120deg, #e6f2fb 0%, #f7fafd 100%);
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
}

.hero-small h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a2636;
}

.hero-small p {
  font-size: 1.15rem;
  color: #2d3a4a;
  max-width: 600px;
  margin: 0 auto;
}

/* 5. BUTTONS & CTAs */
.cta-btn {
  background: #0070d2;
  color: #fff;
  padding: 0.95rem 2.3rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,112,210,0.2);
}

.cta-btn.secondary {
  background: #fff;
  color: #0070d2;
  border: 2px solid #0070d2;
}

.cta-btn.secondary:hover {
  background: #e6f2fb;
  color: #005fa3;
}

/* 6. SECTIONS & CARDS */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem 1.5rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a2636;
  text-align: center;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.two-col .col-img {
  flex: 1 1 260px;
  min-width: 220px;
  text-align: center;
}

.two-col .col-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(31,79,138,0.07);
}

.two-col .col-text {
  flex: 2 1 340px;
  min-width: 260px;
}

/* 7. GRID LAYOUTS */
.features-grid,
.industries-grid,
.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid > *,
.industries-grid > *,
.grid-cards > * {
  flex: 0 0 auto;
  width: 280px;
}

.feature-card,
.industry-card,
.product-card,
.highlight-card {
  background: #eaf1fb;
  border-radius: 12px;
  padding: 1rem 0.8rem 1.5rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(31,79,138,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 180px;
}

.feature-card:hover,
.industry-card:hover,
.product-card:hover,
.highlight-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(31,79,138,0.13);
}

.feature-card i,
.industry-card i,
.product-card i {
  font-size: 2.2rem;
  color: #1a4e8a;
  margin-bottom: 1rem;
}

.feature-card h3,
.industry-card h3,
.product-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a2636;
}

.feature-card p,
.industry-card p,
.product-card p {
  color: #2d3a4a;
  font-size: 0.95rem;
}

/* 8. ABOUT PAGE STYLES */
.about-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a4e8a;
}

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

.value-card,
.team-member {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}

.value-card i {
  font-size: 2.5rem;
  color: #0070d2;
  margin-bottom: 1rem;
}

.about-certifications {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.certification {
  background: #eaf1fb;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
}

.certification i {
  font-size: 2rem;
  color: #1a4e8a;
  margin-bottom: 0.5rem;
}

/* 9. PARTNERS SECTION */
.partners-section {
  background: #f8fafc;
  padding: 3rem 0;
  margin: 2rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.partner-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.partner-logo .partner-name {
  font-weight: 600;
  color: #1f4f8a;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* 10. FOOTER */
footer,
.site-footer {
  background: linear-gradient(180deg, #1a2636 0%, #0f1821 100%);
  color: #ffffff;
  padding: 4rem 0 0 0;
  margin-top: 0;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

.footer-logo {
  margin-bottom: 1.2rem;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #3fa9f5 0%, #0070d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: #b8c5d1;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0070d2 0%, #3fa9f5 100%);
  border-radius: 2px;
}

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

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

.footer-section a {
  color: #b8c5d1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: #3fa9f5;
  transform: translateX(3px);
}

.footer-contact-info {
  margin: 1.5rem 0;
}

.footer-contact-info div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #b8c5d1;
  font-size: 0.95rem;
}

.footer-contact-info i {
  color: #3fa9f5;
  font-size: 1.1rem;
  width: 20px;
}

.footer-certifications {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.footer-cert {
  background: rgba(63, 169, 245, 0.1);
  border: 1px solid rgba(63, 169, 245, 0.3);
  color: #3fa9f5;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: #3fa9f5;
  background: rgba(255,255,255,0.08);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #0070d2 0%, #3fa9f5 100%);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.footer-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 169, 245, 0.4);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #b8c5d1;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #0070d2 0%, #3fa9f5 100%);
  border-color: #3fa9f5;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(63, 169, 245, 0.3);
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 2rem;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #8a9ba8;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #8a9ba8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #3fa9f5;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* 11. CONTACT PAGE */
.contact-main {
  padding: 4rem 1rem;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
  background: #f7fafd;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.contact-form-card {
  background: #fff;
  border: 1px solid #e6f2fb;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-method i {
  font-size: 1.5rem;
  color: #0070d2;
  margin-top: 0.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a2636;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #e6f2fb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0070d2;
  box-shadow: 0 0 0 3px rgba(0,112,210,0.1);
}

.submit-btn {
  background: linear-gradient(90deg, #0070d2 0%, #00aaff 100%);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,112,210,0.2);
}

/* 12. FAQ PAGE */
.faq-search {
  background: #fff;
  padding: 2rem 1rem;
  border-bottom: 1px solid #e6f2fb;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e6f2fb;
  border-radius: 25px;
  font-size: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

/* 13. ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* 14. RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 2000;
    padding-top: 90px;
  }
  
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .two-col {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section h2 {
    font-size: 1.5rem;
  }
  
  .features-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
}


/* 15. CTA BANNER */
.cta-banner {
  background: #fff;
  color: #1a2636;
  text-align: center;
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 2px solid #e6f2fb;
}

.cta-banner i {
  color: #0070d2;
  margin-bottom: 1rem;
  display: block;
}

.cta-banner b {
  font-size: 1.5rem;
  color: #1a2636;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cta-banner a {
  color: #0070d2;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #0070d2;
  transition: all 0.2s;
  padding-bottom: 2px;
}

.cta-banner a:hover {
  color: #005fa3;
  border-bottom-color: #005fa3;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.cta-banner p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btn {
  background: #0070d2;
  color: #fff !important;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 112, 210, 0.12);
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  line-height: 1.2;
  vertical-align: middle;
  min-height: 48px;
}

.cta-banner-btn:hover {
  background: #005fa3;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 112, 210, 0.2);
}

/* 16. HERO CTAS */
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 17. ABOUT SECTION (Homepage) */
.about {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  margin-top: -3rem;
  margin-bottom: 2rem;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #2d3a4a;
}

.about .certs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.about .certs img {
  height: 38px;
  background: #f7fafd;
  border-radius: 8px;
  padding: 0.3rem 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about a {
  color: #0070d2;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #0070d2;
  transition: color 0.2s;
}

.about a:hover {
  color: #005fa3;
  border-bottom: 1px solid #005fa3;
}

/* 18. HIGHLIGHTS SECTION */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.highlight-card {
  background: #eaf1fb;
  border-radius: 12px;
  min-height: 70px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1a4e8a;
  font-size: 0.9rem;
  margin: 0;
  box-shadow: 0 2px 8px rgba(31,79,138,0.04);
  padding: 1rem 0.8rem 1rem 0.8rem;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: visible;
}

.highlight-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(31,79,138,0.13);
}

.highlight-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: #0070d2;
}

.highlight-title {
  font-weight: bold;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* 19. INDUSTRIES SECTION */
.industries {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.industries h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0070d2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
}

.industry-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* 20. TESTIMONIALS */
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  background: #e6f2fb;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-style: italic;
  color: #444;
  text-align: center;
}

.testimonial-author {
  font-weight: bold;
  color: #0070d2;
}

/* 21. CONTACT SECTION (Homepage) */
.contact-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 1.5rem;
  color: #2d3a4a;
}

.contact-btn {
  background: linear-gradient(90deg, #0070d2 0%, #00aaff 100%);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #005fa3 0%, #00aaff 100%);
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(0,112,210,0.18);
}

/* 22. ABOUT SNAPSHOT */
.about-snapshot {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 3rem 1rem;
  text-align: center;
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 3rem 1rem;
}

.cert-badge {
  height: 60px;
  background: #f0f8ff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #1f4f8a;
}

/* 23. CUSTOMER CAROUSEL */
.customer-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
}

.customer-carousel::-webkit-scrollbar {
  height: 8px;
  background: #f0f0f0;
}

.customer-carousel::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 4px;
}

/* 24. PARTNER LOGOS */
.partner-logos {
  margin: 1.5rem 0 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 48px;
  filter: grayscale(0.2);
  opacity: 0.85;
}

/* 25. TECHNICAL TABLE */
table.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

table.tech-table th,
table.tech-table td {
  border: 1px solid #d1e3f8;
  padding: 0.7rem 0.5rem;
  text-align: left;
}

table.tech-table th {
  background: #eaf1fb;
  color: #1a4e8a;
  font-weight: 700;
}

/* 26. EMERGENCY CONTACT */
.emergency-contact {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.emergency-contact h3 {
  color: #856404;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.emergency-contact i {
  color: #f39c12;
  margin-right: 0.5rem;
}

/* 27. FORM ROW */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* 28. WHY CHOOSE US */
.why-choose-us {
  background: #f7fafd;
  padding: 4rem 1rem;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s;
}

.benefit:hover {
  transform: translateY(-4px);
}

.benefit i {
  font-size: 2.5rem;
  color: #0070d2;
  margin-bottom: 1rem;
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1a2636;
}

.benefit p {
  color: #666;
  line-height: 1.5;
}

/* 29. COOKIE CONSENT */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #1a2636;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  z-index: 9999;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.08rem;
  transition: transform 0.3s;
}

#cookie-consent-banner.hide {
  transform: translateY(120%);
}

#cookie-consent-banner .cookie-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

#cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  background: #0070d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn.secondary {
  background: #eaf1fb;
  color: #0070d2;
  border: 1px solid #0070d2;
}

.cookie-btn:hover,
.cookie-btn:focus {
  background: #005fa3;
  color: #fff;
  outline: none;
}

#cookie-consent-banner .cookie-link {
  color: #0070d2;
  text-decoration: underline;
  font-weight: 500;
}

/* 30. ADDITIONAL RESPONSIVE ADJUSTMENTS */
@media (max-width: 700px) {
  .highlight-card {
    height: 220px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  #cookie-consent-banner {
    font-size: 0.98rem;
    padding: 1.1rem 0.5rem 1rem 0.5rem;
  }
  
  #cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 0.7rem;
  }
}


/* 31. CHALLENGE CARDS WITH HOVER DETAILS */
.challenge-card {
  background: #eaf1fb;
  border-radius: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1a4e8a;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(31,79,138,0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.challenge-title {
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  color: #1a2636;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.challenge-details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a4e8a;
  color: #fff;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31,79,138,0.15);
}

.challenge-card:hover .challenge-title {
  opacity: 0;
}

.challenge-card:hover .challenge-details {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .challenge-card {
    min-height: 160px;
  }
  
  .challenge-details {
    font-size: 0.9rem;
    padding: 1.5rem 1rem;
  }
}


/* 32. SOLUTION CARDS WITH HOVER DETAILS */
.solution-card {
  background: #e6f7ed;
  border-radius: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2d8a3e;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(45,138,62,0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.solution-title {
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  color: #1a2636;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.solution-details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2d8a3e;
  color: #fff;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,138,62,0.15);
}

.solution-card:hover .solution-title {
  opacity: 0;
}

.solution-card:hover .solution-details {
  opacity: 1;
  transform: translateY(0);
}

/* Solution Link Wrapper */
.solution-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-link:hover .solution-card {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(45,138,62,0.2);
}

.solution-link:hover .solution-title {
  color: #2d8a3e;
}

/* 33. APPLICATION CARDS WITH HOVER DETAILS */
.application-card {
  background: #eef2ff;
  border-radius: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(79,70,229,0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.application-title {
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  color: #1a2636;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.application-details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #4f46e5;
  color: #fff;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.application-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.15);
}

.application-card:hover .application-title {
  opacity: 0;
}

.application-card:hover .application-details {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .solution-card,
  .application-card {
    min-height: 160px;
  }
  
  .solution-details,
  .application-details {
    font-size: 0.9rem;
    padding: 1.5rem 1rem;
  }
}


/* Why Choose Grid - Responsive */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* Products Grid - Responsive */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
