/*-------------------------------------
  Root Variables
-------------------------------------*/
:root {
  --magtek-red: #d21242;
  --magtek-gray: #f8f9fa;
  --magtek-white: #ffffff;
  --light-neutral-gray: #f4f5f5;
  --medium-neutral-gray: #dbdbdb;
  --neutral-gray: #555454;
  --dark-neutral-black: #333132;
  --light-neutral-blue: #ced7df;
  --dark-neutral-blue: #263c50;
  --text-color: #333;
}

/*-------------------------------------
  Header Section
-------------------------------------*/
.header {
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--dark-neutral-blue) 0%,
    #1a2a3a 100%
  );
  color: var(--magtek-white);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.header h1 {
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out forwards;
}

.header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--magtek-red);
  margin: 2rem auto;
  border-radius: 2px;
}

.header p {
  font-size: 2.3rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 300;
  color: var(--magtek-white);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/*-------------------------------------
  Section Titles
-------------------------------------*/
.section-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  padding-bottom: 30px;
  margin-top: 40px;
}

/*-------------------------------------
  Features Section
  (First Features Block)
-------------------------------------*/
.features {

  border-radius: 8px;

  display: flex; /* duplicated in later code but keeping both */
  justify-content: center; /* duplicated in later code but keeping both */
}

.features p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.5em;
}

/*-------------------------------------
  Icon List Section
-------------------------------------*/
.processors-collage {
  /* Use CSS Grid with exactly 4 columns */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* space between grid items */
  justify-items: center;
  align-items: center;
  margin-top: 20px;
}

/* Basic styling for each logo tile */
.logo-item {
  background-color: #fff;  /* Optional background */
  border-radius: 4px;
  padding: 0px;
  margin: -10px;
  text-align: center;
  transition: .2s linear;

}

/* Hover effect to gently scale up the logo */
.logo-item:hover {
  transform: scale(1.03) translateY(-3px);
}

/* Styling for the logo images */
.logo-item img {
  max-height: 130px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.logo-item img:hover {
  opacity: 1;
}


/*-------------------------------------
  Why Choose / Reasons Section :hover
-------------------------------------*/
.why-choose .reasons p {
  font-size: 1.1em;
  line-height: 1.6em;
  margin-bottom: 20px;
}

/*-------------------------------------
  Buttons
-------------------------------------*/
.btn-get-started {
  background: var(--magtek-red);
  color: var(--magtek-white);
  border: none;
  font-size: 1.3em;
  padding: 15px 40px;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.btn-get-started:hover {
  background: var(--dark-neutral-blue);
  color: var(--magtek-white) !important;
}

/*-------------------------------------
  Misc Headings and Elements
-------------------------------------*/
.magtek-header {
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
}
.headline {
  left: 130px;
}
.clipped {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
}
.product-info {
  margin-top: 20px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
}

.product-title {
  font-size: 44px;
  font-weight: bold;
  color: #d11242;
}

.product-description {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-details {
  font-size: 16px;
}

strong {
  color: #d11242;
}

.industry-icon {
  color: #d11242;
}

.sub-title {
  color: #263c50;
  font-size: 20px;
}

/*-------------------------------------
  Hero Section
-------------------------------------*/
.hero-section {
  padding-top: 180px;
  padding-bottom: 0px;
}
.hero-text h1 {
  font-size: 7.5rem;
  font-weight: 900;
}
.hero-text p {
  font-size: 2.6rem;
}
.hero-text strong {
  font-weight: bold;
}
.hero-svg img {
  max-width: 100%;
  height: auto;
}
.hero-btn {
  z-index: 2;
  background-color: #d21242 !important;
  font-size: 2.2rem !important;
  border-radius: 15px !important;
  transition: all 0.3s;
  color: white !important;
  border: 2px solid #d21242 !important;
}
.hero-btn:hover {
  background-color: #ffffff !important;
  color: black !important;
}

/*-------------------------------------
  Processors Section
-------------------------------------*/
.processors-section {
  padding: 60px 20px;
  background: var(--magtek-gray);
}

.processors-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.processors-subtitle {
  font-size: 1.1em;
  color: var(--neutral-gray);
  margin-bottom: 30px;
  max-width: 80%;
}

.processors-collage {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* .logo-item img {
  max-height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.processors-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.processors-side-image {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/*-------------------------------------
  Industry Grid Section
-------------------------------------*/
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.industry-card {
  border: 0.5px solid var(--dark-neutral-black);
  border-radius: 10px;
  flex: 1 1 calc(33% - 20px);
  min-width: 280px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.industry-header {
  text-align: center;
  margin-bottom: 20px;
}

.industry-header .industry-icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.industry-header h4 {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--dark-neutral-blue);
  margin: 0 0 5px 0;
}

.industry-header p {
  font-size: 0.9em;
  color: var(--neutral-gray);
}

/*-------------------------------------
  Method Badges
-------------------------------------*/
.method-badge {
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--neutral-gray);
  font-size: 0.9em;
  font-weight: 500;
  border-radius: 20px;
  padding: 5px 10px;
  white-space: nowrap;
  border: solid 1px var(--neutral-gray);
}

.method-badge .method-icon {
  margin-right: 5px;
}

/*-------------------------------------
  Industry Processors
-------------------------------------*/
.industry-processors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
}

.industry-processors img {
  max-height: 20px;
  width: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.industry-processors img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.industry-methods li {
  font-size: 1.7rem;
}

/*-------------------------------------
  Features Section (Second Block)
  Note: Repeated code for .features from above, kept as is.
-------------------------------------*/
.features {
  display: flex; /* Duplicate but required to keep */
  justify-content: center; /* Duplicate but required to keep */
}

/*-------------------------------------
  Feature Cards
-------------------------------------*/
.feature-card {
  background: transparent;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-icon .glyphicon {
  font-size: 3.5rem;
  text-align: center;
  color: var(--magtek-red);
}

.feature-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.feature-card p {
  font-size: 1.6rem;
  opacity: 0.7;
  font-weight: 400;
}
