@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2'),
        url('fonts/ttf/JetBrainsMonoNL-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/*Github hub pushnn */

:root {
  --primary-color: #9b111e;
  --bg-color: #1D1D1D;
  --section-bg: #232025;
  --text-color: whitesmoke;
   font-family: 'JetBrains Mono', Menlo, Consolas, 'Courier New', monospace;
}
body{
  font-family: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === HERO / WAITLIST SECTION === */
.welcome-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("siteimg/wbscale4.jpg") no-repeat center center/cover; /* Use your 1080x1080 image here */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  color: white;
}

.welcome-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* subtle dark overlay */
  z-index: 1;
}

.welcome-section .left {
  position: relative;
  z-index: 2;
  max-width: 450px;
  color: #fff;
  margin-left: -65px;
  padding-right: 20px;
}

.welcome-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #9b111e;
}

.welcome-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #000000;
}

.welcome-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}

.welcome-section label{
  color:#000000;
}

.welcome-section input,
.welcome-section select {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  width: 100%;
  font-size: 1rem;
}

.welcome-section button {
  background-color: #9b111e; /* your brand red */
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.welcome-section button:hover {
  background-color: #b71c25;
}

#message {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #fff;
}
html, body {
  height: 100%;
 
  width: 100%;
  margin: 0; /* remove browser default margin */
  padding: 0;
}
section{
  margin-bottom: 4rem;
}


/* Customer Benefits CSS Code*/

.grid-container {
  width: min(75rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 2rem;
}
.card {
  --grad: #9b111e, #9b111e;
  padding: 2.5rem;
  background-image: linear-gradient(to bottom right, #fdfdfd, #e6e6e6);
  border-radius: 2rem;
  border: 2px solid #9b111e; /* light maroon border */
  gap: 1.5rem;
  display: grid;
  grid-template: 'title icon' 'content content' 'bar bar' / 1fr auto;
  font-family: system-ui, sans-serif;
  color: #444447;
  width: 525px;
  height: 700px;
  margin: 2rem;
  box-shadow: 
    inset -2px 2px hsl(0 0 100% / 1),
    -20px 20px 40px hsl(0 0 0 / .25) ;
  font-family: 'JetBrains Mono', monospace;

}
  .card ul{
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
  .card li{
    margin-bottom: 0.5rem;
  }
  
  .title {
    font-size: 1.5rem;
    grid-area: title;
    align-self: end;
    text-transform: uppercase;
    font-weight: 500;
    word-break: break-all;
    
  }
  .content {
    grid-area: content;
    & > *:first-child { margin-top: 0rem}
    & > *:last-child { margin-bottom: 0rem}
  }
  &::after {
    content: "";
    grid-area: bar;
    height: 2px;
    background-image: linear-gradient(90deg, var(--grad));
/*     margin-inline: -1.5rem; */
  }

.services-section h1{
  text-align: center;
  color: #9b111e;
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.grid-container {
  width: min(75rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 2rem;
}


.grid-card {
  --grad: #9b111e, #9b111e;
  padding: 2.5rem;
  background-image: linear-gradient(to bottom right, #fdfdfd, #e6e6e6);
  border-radius: 2rem;
  border: 2px solid #9b111e;
  gap: 1.5rem;
  display: grid;
  grid-template: 'title icon' 'content content' 'bar bar' / 1fr auto;
  font-family: system-ui, sans-serif;
  color: #444447;
  box-shadow: 
    inset -2px 2px hsl(0 0 100% / 1),
    -20px 20px 40px hsl(0 0 0 / .25) ;
  font-family: 'JetBrains Mono', monospace;
  
  .grid-title {
    font-size: 1rem;
    grid-area: title;
    align-self: end;
    text-transform: uppercase;
    font-weight: 500;
    word-break: break-all;
    
  }
 .grid-content {
    grid-area: content;
    & > *:first-child { margin-top: 0rem}
    & > *:last-child { margin-bottom: 0rem}
  }
  &::after {
    content: "";
    grid-area: bar;
    height: 2px;
    background-image: linear-gradient(90deg, var(--grad));
/*     margin-inline: -1.5rem; */
  }
}
/* Fixes layout of cards and images side-by-side */
.benefits-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0.5 rem;
}

.benefits-container .card {
  margin-left: 0;   /* reset any existing margin */
  transform: translateX(-100px); /* pushes it visually left */
}

/* Image styling */
.benefit-image-wrapper {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-image {
  width: 700px;       /* fixed width */
  height: 600px;      /* fixed height */
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}