@charset "utf-8";
/* CSS Document */

/* Import DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');


:root {
  /* Colors */
--primary: #2655a6;
    --secondary: #113f8d;
    --dark: #1a1e21;
    --light: #e3ebf3;
    --gray: #6c7a88;
  
  /* Typography */
   --heading-font: 'Industry', sans-serif;
    --body-font: 'DM Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem;
  --section-padding-sm: 3rem;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.4s ease;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.5;
  color: var(--dark);
  overflow-x: hidden;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

.display-1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.display-2 {
  font-size: 3rem;
  font-weight: 600;
}

.display-3 {
  font-size: 2.5rem;
}

.section-title {
  font-family: var(--heading-font);
    font-weight: 600;
    font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Buttons */
.btn {
  font-family: var(--body-font);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: white;
  color: white;
}

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

/* Sections */
section {
  padding: var(--section-padding) 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-text {
  font-size: 1.5rem;
  margin: 2rem 0;
}

/* Services Section */
.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.service-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-medium);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  padding: 1.5rem;
}

/* Manufacturers Section */
.manufacturers-section {
  background: #f8f9fa;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.logo-item img {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: filter var(--transition-fast);
}

.logo-item:hover img {
  filter: grayscale(0%);
}

/* Contact Form */
.contact-form .form-control {
	font-family: var(--body-font);
  height: 54px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 150px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--light);
  padding: 2rem 0;
}

.site-footer a {
  color: var(--light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --section-padding: 4rem;
  }
  
  .display-1 {
    font-size: 3.5rem;
  }
  
  .display-2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 3rem;
  }
  
  .hero-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 2.5rem;
  }
  
  .display-1 {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
}

@media (max-width: 576px) {
  .display-1 {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1.5rem;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Form Styles */
.contact-form {
    position: relative;
}

.form-messages {
    margin: 1rem 0;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Honeypot field - using multiple techniques to hide */
.d-none,
[name="website"] {
    display: none !important;
    opacity: 0;
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: -1;
}