/* Typography */
:root {
  --primary-red: #d8231d;
  --accent-red: #fa6f60;
  --text: #111827;
  --background: #fff;
  --gray-light: #f3f4f6;
  --gray: #e5e7eb;
  --font-main: 'Inter', 'DM Sans', 'Poppins', Arial, sans-serif;
  --border: #000000;
}

html {
  font-size: 16px;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
p, li, a, span {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  position: relative;
  top: 0;
  background: var(--background);
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.03);
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 0;
}
.logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 1px;
  margin-left: 2rem;
}
.logo img{
  max-height: 4rem;
  width: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary-red);
}

/* Hero Section */
.hero {
  padding: 4em 0 3em 0;
  background: linear-gradient(rgba(17,24,39,0.55), rgba(17,24,39,0.45)), url('Res/truck.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1 1 350px;
  z-index: 1;
}
.hero-image {
  flex: 1 1 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.18);
  border-radius: 1.125rem;
  box-shadow: 0 0.5rem 2rem 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
  padding: 1em;
  margin-left: 1em;
  max-width: 13.75rem;
}
.hero-image img {
  max-width: 10rem;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1.5rem rgba(218,35,29,0.08);
}
.hero-cta {
  margin-top: 2em;
  display: flex;
  gap: 1em;
  
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85em 2em;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(218,35,29,0.08);
}
.btn-primary:hover {
  background: var(--accent-red);
}
.btn-secondary {
  background: #fff;
  color: var(--primary-red);
}
.btn-secondary:hover {
  background: var(--gray);
}

/* Logo Strip */
.logo-strip {
  padding: 2em 0;
  background: var(--background);
  max-width: 100vw;
}
.logos {
  display: flex;
  justify-content: center;
  gap: 3em;
  align-items: center;
}
.trusted-logo {
  filter: grayscale(1);
  opacity: 0.7;
  max-height: 2rem;
  width: auto;
  transition: filter 0.3s, transform 0.3s, opacity 0.3s;
}
.trusted-logo:hover {
  filter: grayscale(0);
  transform: scale(1.05);
  opacity: 1;
}

/* Feature Blocks */
.features {
  padding: 4em 0;
  background: var(--background);
}
.feature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3em;
  gap: 1em;
}
.feature-block.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1 1 5rem;
}
.feature-icon {
  flex: 1 1 5rem;
  display: flex;
  justify-content: center;
}
.feature-icon img {
  max-width: auto;
  max-height: 10rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.04);
}

/* Benefits Grid */
.benefits {
  padding: 4em 0;
  background: var(--gray-light);
}
.benefit-grid {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}
.benefit-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0,0,0,0.06);
  padding: 2em 1.5em;
  text-align: center;
  flex: 1 1 13.75rem;
  max-width: 18.75rem;
  margin: 1em 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  box-shadow: 0 0.375rem 1.5rem rgba(218,35,29,0.10);
  transform: translateY(-0.25rem) scale(1.03);
}
.benefit-card img {
  max-width: auto;
  max-height: 5rem;
  margin-bottom: 1em;
}

/* Testimonials */
.testimonials {
  padding: 4em 0;
  background: var(--background);
}
.testimonial-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0,0,0,0.06);
  padding: 2em 1.5em;
  text-align: center;
  flex: 1 1 13.75rem;
  max-width: 18.75rem;
  margin: 1em 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 0.375rem 1.5rem rgba(218,35,29,0.10);
  transform: translateY(-0.25rem) scale(1.03);
}
.testimonial-photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
  border: 0.125rem solid var(--primary-red);
}

/* CTA Section */
.cta-section {
  padding: 4em 0;
  background: var(--background);
  color: var(--primary-red);
  text-align: center;
}
.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5em;
}
.cta-content .btn-primary {
  background: var(--primary-red);
  color: var(--background);
  border: 2px solid #fff;
}
.cta-content .btn-primary:hover {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

/* Footer */
.footer {
  background: var(--gray-light);
  padding: 2em 0;
  margin-top: 4em;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 4em;
}

.footer .logo {
  margin: 0;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 4em;
  margin: 0;
}

.footer-links h4 {
  margin: 0 0 0.5em 0;
  font-size: 1.125rem;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}

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

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero, .feature-block, .benefit-card, .testimonial-card, .cta-section {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}
.hero { animation-delay: 0.1s; }
.feature-block { animation-delay: 0.2s; }
.benefit-card { animation-delay: 0.3s; }
.testimonial-card { animation-delay: 0.4s; }
.cta-section { animation-delay: 0.5s; }

/* Responsive Design */

@media (max-aspect-ratio: 986/1000) {
  .hero-content, .feature-block, .footer-container {
    flex-direction: column;
  }

  .hero-image, .feature-icon {
    margin: 2em 0 0 0;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2em;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.5rem; }
  .container { width: 98%; }
  .hero, .features, .benefits, .testimonials, .cta-section, .footer {
    padding: 2em 0;
  }
  .nav-links { 
    gap: 1em;
  }
  .logos { 
    flex-wrap: wrap;
    gap: 2em;
  }
  .benefit-grid, .testimonial-cards {
    gap: 1em;
  }
  .feature-block {
    text-align: center;
  }
  .feature-text {
    margin-bottom: 1em;
  }
  .hero-cta {
    justify-content: center;
  }
  .logo{
    margin-left: 0;
  }
}

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

.form-container {
  margin-left: 10vw;
  margin-right: 10vw;
  display: flex;
  justify-content: center;
}

form {
  width: 100%;
  max-width: 600px; /* Adjust as needed */
}

.feedback-input {
  color: black;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 0.625rem;
  line-height: 1.375rem;
  background-color: transparent;
  border: 0.1875rem solid black;
  transition: all 0.3s;
  padding: 0.8125rem;
  margin-bottom: 0.9375rem;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
}

.feedback-input:focus { 
  border: 0.1875rem solid var(--primary-red); 
}

textarea {
  height: 9.375rem;
  line-height: 150%;
  resize: vertical;
}

.honey{
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* Slider Styles */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7))}
}

.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
  background: linear-gradient(to right, white, transparent);
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 100px;
  width: 250px;
}