<style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: Arial, sans-serif;
      overflow-x: hidden; /* Prevent horizontal overflow */
      overflow-y: auto;   /* Enable vertical scrolling */
   
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
     body::-webkit-scrollbar {
        width: 0px;
        background: transparent;
      }
    body.hero{
      width: 100%;
      font-family: Arial, sans-serif;
      overflow-x: hidden;
      overflow-y: scroll;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;  /* Internet Explorer 10+ */
      min-height: 200vh;
}
   
    body .hero {
      background-color: #000;
      background-image: url('lines.png');
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: fixed;
      background-size: cover;
      color: white;
      position: relative;
    }

    nav {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 1.5rem 2rem;
      background-color: #111;
      box-sizing: border-box
    }

    nav .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: red;
      display: flex;
      align-items: center;
      height: 50px;
    }

    .logo img {
      height: 90px;
      width: auto;
      object-fit: contain;
    }
    .nav-right ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-right a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }

    .nav-right a:hover {
      color: #faae2b;
    }
    .hero {
  min-height: calc(100vh - 130px) ; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* spacing between cards */
  position: relative;
  width: 100%;
  height: 360px;
}

.slides {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
}

.card {
  width: 240px;
  height: 340px;
  position: absolute;
  top: 0;
  left: 42%;
  transform: translateX(-50%);
  transition: transform 0.8s ease, z-index 0.8s ease;
  perspective: 1000px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  position: relative;
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
}

.card-back {
  transform: rotateY(180deg);
}

.card.flip .card-inner {
  transform: rotateY(180deg);
}

/* Positions */
.card.left {
  transform: translateX(-270px) scale(0.9);
  z-index: 1;
}
.card.center {
  transform: translateX(0px) scale(1.1);
  z-index: 3;
}
.card.right {
  transform: translateX(270px) scale(0.9);
  z-index: 2;
}
    .flip { transform: rotateY(180deg); }
    .center { transform: scale(1.2); z-index: 2; }
    .side { transform: scale(0.9); opacity: 0.8; }
    .center.flip { transform: scale(1.2) rotateY(180deg); }
    .side.flip { transform: scale(0.9) rotateY(180deg); }

    .slider {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 6.5rem;
      color: grey;
      cursor: pointer;
      z-index: 3;
      transition: transform 0.3 ease,color 0.3s ease;
    }
    .slider:hover {
  color: white; /* <-- slight color change on hover */
  transform: translateY(-50%) scale(1.1); /* <-- slightly bigger on hover */
}
.footer-hero-wrapper {
  position: absolute !important;
  bottom: 24px !important; /* aligns with button */
 /* left: 0 !important; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 30px;
  z-index: 2;
}

.hero .social-links.hero-social {
  display: flex;
  gap: 20px;
  font-size: 1.5rem;
  color: grey;
  padding-left: 12px;
}

.hero .social-links.hero-social a {
  color:grey;
  text-decoration: none;
}

.hero .social-links.hero-social a:hover {
  color: #faae2b;
}

.hero .footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: red;
  font-size: 16px;
  padding-bottom: 4px;
  line-height: 1.4;
  
}

.hero .footer-text .waiting-line {
  font-size: 16px;
  color: red; 
  margin-right: 16px;
}

.hero .footer-text .flush-line {
  font-size: 36px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  margin-right: 7px;
}

.get-started-button {
  position:absolute;
  bottom: 18px; /* Distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  background-color: grey; /* Button background */
  color: black; /* Font color */
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
 width: auto;
 display: inline-block;
  transition: background-color 0.3s ease;
}

.get-started-button:hover {
  background-color: darkgrey; /* Button hover effect */
}

    /* Fade-in animation */
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    
 
    .container {
      position: relative;
      width: 100%;
      height: 100vh;
      margin-top: 0; /* Removed extra margin */
      padding: 250px;
      box-sizing: border-box;
      overflow: hidden;
      background: #000;
     
     }

    .profile-image {
      width: 100%;
      height: 110%;
      object-fit: cover;
      position: absolute;
      top: -5%; /* Move the image upwards by 5% */
      left: 0;
      z-index: 0;
      transform: scale(1.05); /* ✅ slight zoom-in */
    }

    .overlay {
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 0, 0, 0.7));
      z-index: 1;
    }

    .text-container {
      position: absolute;
      top: 45%;
      right: 5%;
      width: 100%;
      max-width: 650px;
      z-index: 2;
      text-align: right;
      transform: translateY(-50%); /* Centers the text vertically */
      overflow-wrap: break-word;
     /* box-sizing: border-box;*/
    }

    .text-container .title {
      font-family: Arial, sans-serif;
      color: #ffffff; /* white or choose your preferred color */
      font-size: 50px;
      position: relative;
      top: 0; /* Moves it up */
      right: 25px;
    }

    .text-container .subtitle {
      font-family: Arial, sans-serif;
      font-size: 25px;
      color: #000; 
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      top: 20%; /* Move this up too */
    }

    .text-container .description {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  color: white;
  position: relative;
  top: 55px;
  left: 0;
}
    @keyframes radiant {
      0% {
        background: linear-gradient(to right, #b40000 20%, #ff2a2a 80%);
      }
      100% {
        background: linear-gradient(to right, #ff2a2a 20%, #b40000 80%);
      }
    }

    @media only screen and (max-width: 768px) {
  /* Navbar */
  nav {
    flex-direction: column;
    align-items: center;
  text-align: center;
  }

  .nav-right ul {
    flex-direction: column;
    gap: 10px;
  }

  /* Card Container */
  .card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: auto;
    margin: 20px 0;
  }

  .card {
    position: relative;
    transform: none !important;
    width: 220px;
    height: 300px;
    margin: 0 auto;
  }

  /* Remove rotation logic positioning if mobile */
  .card.left, .card.center, .card.right {
    transform: none !important;
  }

  /* Get Started Button */
  .get-started-button {
    position: static;
    margin-top: 20px;
    transform: none;
    font-size: 16px;
    padding: 10px 20px;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .social-links {
    position: static;
    justify-content: center;
    width: 100%;
  }

  .footer-text {
    position: static;
    text-align: center;
    margin-top: 10px;
  }

  .text-container {
        width: 90%;
        top: 10%;
        right: 5%;
      }

      .text-container .title {
        font-size: 24px;
      }

      .text-container .subtitle {
        font-size: 20px;
      }

      .text-container .description {
        font-size: 14px;
      }
    }
    /* Background Section */
.red-box-background {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('grass.png') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Red Box Container */
.red-box-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 500px; /* ADD a minimum height so the section has visible area */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Red Background Image */
.red-box {
    width: 100%;
    height: auto;
    display: block;
}

/* Text and Flip Animation Layer */
.text-layer {
    position: absolute;
    top: 180px;
    left: 760px;
    width: 30%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    row-gap: 50px;
    column-gap: 10px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.hover-item {
    perspective: 1000px;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty-grid-item {
    width: 100%;
    height: 70px;
}

.hover-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.hover-item:hover .hover-inner {
    transform: rotateY(180deg);
}

.hover-front, .hover-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    background: none;
}

.hover-front {
    z-index: 2;
    color: white;
}

.hover-back {
    transform: rotateY(180deg);
    color: #ffcc00;
}

/* Area Info Box */
.area-info-box {
    position: absolute;
    top: 200px;
    left: 150px;
    width: 400px;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

.area-heading {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.area-content {
    font-size: 16px;
    line-height: 1.6;
}

    .section {
      margin-top: 70px; /* Adjust for fixed nav */
      min-height: 85vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-image: url('whitelines.jpeg');
      background-size: cover;
      background-position: center 75%;
    }

    .content {
      text-align: center;
      padding: 40px;
    }

    h1 {
      font-size: 36px;
      color: #5c0a0a;
      margin-bottom: 20px;
    }

    .headline-subtext {
      font-size: 18px;
      color: #444;
      margin-bottom: 40px;
    }

    .circle-wrapper {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .circle {
      position: relative;
      width: 100px;
      height: 100px;
    }

    .circle svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }

    .circle circle {
      fill: none;
      stroke-linecap: square;
    }

    .track {
      stroke: #ccc;
      stroke-width: 4;
    }

    .progress {
      stroke-width: 10;
      stroke-dasharray: 251.2;
      stroke-dashoffset: 251.2;
      transition: stroke-dashoffset 1.5s ease-in-out;
      opacity: 0;
    }

    .fg-yellow { stroke: orange; }
    .fg-red { stroke: #e53935; }
    .fg-green { stroke: #66bb6a; }
    .fg-black { stroke: #333; }
    .fg-blue { stroke: #1e88e5; }

    .circle-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: bold;
      font-size: 18px;
    }
   

    .investment-section {
      text-align: center;
     padding-top: 130px;
     padding-bottom: 120px;
      background: #000;
      color: #fff;
    }

    .investment-section h1 {
      color: #ff1c1c;
      margin-bottom: 30px;
    }

    .form-inputs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .form-inputs input, .form-inputs button {
      padding: 10px 15px;
      border-radius: 4px;
      border: none;
    }

    .form-inputs input {
      width: 200px;
    }

    .form-inputs button {
      background: linear-gradient(to right, #faae2b, #f75e1a);
      color: #fff;
      font-weight: bold;
      cursor: pointer;
    }

    .form-description {
      margin-top: 10px;
      font-size: 14px;
      color: #ccc;
    }

    /* Keep the footer at bottom */
.footer {
  background: linear-gradient(to right, #b40000, #ff2a2a);
  color: #fff;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  box-sizing: border-box;
  position: relative;
}

/* Fix for mobile and prevent float */
.social-links {
  position: static !important;
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 1.5rem;
  justify-content: flex-start;
  color: white;
}

.footer-text {
  position: static;
  color: red;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}
    @media only screen and (min-width: 481px) and (max-width: 1024px) {
      /* Footer container: horizontal flex layout, red gradient background */
      .footer {
        display: flex;
        justify-content: space-between; /* distribute columns evenly */ 
        align-items: center;            /* vertical centering of column content:contentReference[oaicite:7]{index=7} */
        background: linear-gradient(to right, #b40000, #ff2a2a);
        color: #fff;
        padding: 20px 30px;
      }
      /* Each column flexes equally and has minimum width for compactness */
      .footer-column {
        flex: 1;            /* allows columns to share space equally:contentReference[oaicite:8]{index=8} */
        min-width: 180px;   /* ensure they don’t shrink too small */
        margin: 0 10px;
        text-align: center;
      }
      /* First column (logo) does not stretch, and centers its items */
      .footer-column:first-child {
        flex: 0 0 auto;     /* prevent the logo column from stretching:contentReference[oaicite:9]{index=9} */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      /* Logo image sizing */
      .logo-img {
        height: 100px;
        width: auto;
        object-fit: contain;
      }
      /* Column headings */
      .footer-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: bold;
      }
      /* Links style */
      .footer a {
        color: #fff;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
      }
      .footer a:hover {
        color: #ff2a2a;
      }
      /* Social icon row */
      .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
      }
      .social-icons a {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
      }
      .social-icons a:hover {
        color: #ff2a2a;
      }
    }
    

@media only screen and (max-width: 480px) {
    /* ... your other existing mobile styles for other sections ... */

    /* --- Corrected Responsive styles for "Red Box Section" --- */
    .red-box-background {
        padding: 30px 0; /* Adjust overall section padding */
    }

    .red-box-container {
        position: relative; /* For the absolutely positioned ::before pseudo-element background */
        display: flex;
        flex-direction: column; /* Stack text blocks vertically */
        align-items: center;    /* Center them horizontally */
        gap: 15px;              /* Space between area-info-box and text-layer */
        max-width: 90%;         /* Container width on mobile */
        margin: 0 auto;         /* Center container */
        padding: 35px;          /* Padding INSIDE the container, on top of the background image */
        box-sizing: border-box;
       /* min-height: 400px;      /* Example: ensure some height for the background image */
                                /* You might need to adjust this based on your red.png aspect ratio and content */
       /* border-radius: 10px; */   /* Optional: if you want rounded corners for the "box" */
        overflow: hidden;       /* To contain the pseudo-element background */
    }

    /* Use a pseudo-element for the background image to make it cover the container */
    .red-box-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('red.png'); /* Your red box image */
        background-size: cover;
        background-position: center;
        z-index: -1; /* Place it behind the content */
        border-radius: inherit; /* Inherit border-radius from parent if any */
    }

    .red-box { /* The actual <img class="red-box"> if it's still in HTML */
        display: none; /* Hide the original img tag on mobile, as we're using it as a background now */
    }

    .area-info-box {
        position: static; /* It's now a flex item, not absolutely positioned */
        width: 100%;      /* Full width of the flex content area */
        max-width: 320px; /* Max width for readability */
        text-align: left; /* Better for bullet points on mobile */
        color: white;     /* Ensure text is visible */
        font-size: 14px;
        /* background: rgba(0,0,0,0.3); /* Optional: slight dark overlay for readability */
        padding: 10px;
        box-sizing: border-box;
        text-align: center;
        margin: 0 auto;
    }

    .area-heading {
        font-size: 18px;  /* Adjust for mobile */
        text-align: center;
        margin-bottom: 8px;
    }

    .area-content {
        font-size: 13px;  /* Adjust for mobile */
        line-height: 1.5;
    }
    .text-layer {
  position: static; /* Remove absolute positioning */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
}
    .hover-item {
        min-height: 45px; /* Adjust tap target size */
        width: auto; /* Let grid handle width */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hover-front, .hover-back {
        font-size: 13px; /* Adjust font for mobile */
        text-align: center;
        padding: 5px;
    }

    .empty-grid-item {
         display: none; /* Hide empty spacers if not needed in mobile grid */
    }

    /* --- End of Red Box Section Mobile Styles --- */

} /* <<< MAKE SURE THIS IS THE CLOSING BRACKET OF YOUR @media QUERY */
  </style>