 body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Hero Section */
    .hero-section {
    
      background: url("../images/landingpage/EarlyRiseNewBanner.webp") no-repeat center center/cover;
      min-height: 500px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 50px 15px;
      
    }

    /* Overlay */
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 40, 0.6);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1400px;
      width: 100%;
    }

    /* Heading - Tomorrow Font */
    .hero-heading {
      font-family: "Tomorrow", sans-serif;
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.4;
      text-transform: uppercase;
      margin-bottom: 15px;


    }

    /* Subheading - Tomorrow Font */
    .hero-subheading {
      font-family: "Tomorrow", sans-serif;
      font-size: 2.0rem;
      margin-top: 20px;
      font-weight: 600;
      color: #ff751f;
      letter-spacing: 0.5px;
      line-height: 1.4 !important;
      margin-bottom: 40px;
      text-transform: uppercase;
    }

    /* Arrow-styled List */
    ol.hero-list {
      padding-left: 0;
      font-size: 1.2rem;
      line-height: 1.9;
      list-style: none;
      margin: 0;
      text-align: left;
      padding-left: 60px;
    }

    ol.hero-list li {
      position: relative;
      padding-left: 40px;
      margin-bottom: 10px;
    }

    ol.hero-list li::before {
      content: "➜";
      position: absolute;
      left: 0;
      top: 5px;
      color: #ff751f;
      font-weight: 700;
      font-size: 1.2rem;
    }

    /* CTA Button */
    .hero-btn {
      background-color: #ff751f;
      border: none;
      color: white;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 30px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      font-family: "Poppins", sans-serif;
      white-space: nowrap;
    }

    .hero-btn:hover {
      background-color: #ff904a;
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(255, 117, 31, 0.4);
    }
    .pad-right {
        padding-right: 100px;
    }
    .pad-left {
        padding-right: 30px;
    }


    @media screen and (max-width: 1024px) {
      .hero-list-btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .hero-btn {
        margin-top: 20px;
        align-items: center;
        text-align: center;
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-heading {
        font-size: 2.0rem;
      }

      .hero-subheading {
        font-size: 1.6rem;
        line-height: 1.4;
      }

      .hero-section {
        padding: 30px 20px;
      }

      .hero-list-btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .hero-btn {
        margin-top: 20px;
      }
      .pad-right {
        padding-right: 0px;
    }
    ol.hero-list {
      padding-left: 0 !important;
      font-size: 1.2rem;
      line-height: 1.4;
      list-style: none;
      margin: 0;
      text-align: left;

 
    }
    ol.hero-list li {
      position: relative;
     margin-bottom: 10px;
    }
    }