  

      /* Global Styles */
      body {
        background-color: #ffffff;
        overflow-y: auto;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      }

      /* Main Viewport */
  .main-viewport {
    position: relative;
    min-height: 100vh;      /* not fixed height */
    width: 100%;
    overflow: hidden;    /* prevents horizontal issues */
       /* allows page scroll */
}
.mobileheadersection{display:none;}
      /* Logo Styles */
      .logo-left {
        position: absolute;
        left: 1rem;
        top: 1rem;
        height: 2.5rem;
        z-index: 50;
      }

      .logo-right {
        position: absolute;
        right: 1rem;
        top: 1rem;
        height: 2.5rem;
        z-index: 50;
      }

      /* Circle Background Section */
   .circle-section {
    position: relative;
    height: 28rem;
    width: 120vw;
    max-width: 1400px;
    margin-left: 0;
    margin-top: -8rem;
    background-image: url(../images/circle.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 0;
    margin: auto;
}

      .circle-content {
        text-align: center;
        margin-top: 9rem;
      }

      .main-heading {
        font-weight: 700;
        font-size: 1.875rem;
        color: #000000;
        margin-bottom: 2rem;
      }

      /* Counter Styles */
      .counter-container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
      }

      .flip-counter {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .flipper {
        position: relative;
        width: 2.5rem;
        height: 3.5rem;
        border-radius: 0.375rem;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      }

      .flipper .top-static {
        height: 50%;
        background: linear-gradient(to bottom, #4a4a4a, #2a2a2a);
        border-bottom: 1px solid #000000;
      }

      .flipper .bottom-static {
        height: 50%;
        background: linear-gradient(to bottom, #1a1a1a, #000000);
      }

      .flipper .digit {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 2.25rem;
        font-weight: 700;
        z-index: 10;
      }

      .counter-text {
        padding-top: 0.75rem;
        margin-bottom: 1.25rem;
      }

      .counter-text-primary {
        font-weight: 600;
        font-size: 0.875rem;
        color: #000000;
      }

      .counter-text-secondary {
        font-size: 0.75rem;
        font-weight: 700;
        color: #1f2937;
      }

      /* CTA Buttons */
      .cta-buttons {
        position: absolute;
        bottom: 8rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4rem;
        z-index: 40;
      }

      .cta-btn {
        position: relative;
        padding: 0.75rem 1rem;
        min-width: 220px;
        border-radius: 50px;
        background: linear-gradient(to bottom, #fde047, #facc15, #ca8a04);
        border: 4px solid #ffffff;
        color: #000000;
        text-align: center;
        box-shadow: 0 4px 0 #c08a00;
        line-height: 1.25;
        transition: all 0.15s;
        border: none;
        cursor: pointer;
      }

      /* .cta-btn:active {
        transform: translateY(2px);
        box-shadow: 0 2px 0 #c08a00;
      } */

      .cta-btn-text-primary {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.05em;
      }

      .cta-btn-text-secondary {
        font-size: 13px;
        font-weight: 700;
      }

      /* Road Scene */
      .road-scene {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 35vh;
        z-index: 10;
      }
.road-vehicles {
    position: absolute;
    bottom: 392px;
    display: flex;
    align-items: center;
    z-index: 50;
    min-width: 100%;
}



      .vehicle-1 {
        margin-bottom: 1.5rem;
        height: 2rem;
        object-fit: cover;
      }

      .vehicle-2 {
        display: none;
        margin-left: 4rem;
        height: 3rem;
        object-fit: cover;
      }

      .vehicle-3 {
        margin-bottom: 1.5rem;
        margin-left: 6rem;
        height: 2rem;
        object-fit: cover;
      }

      .vehicle-4 {
        margin-left: 2rem;
        height: 4rem;
        object-fit: cover;
        z-index: 50;
      }

      .vehicle-5 {
        margin-left: -2rem;
        margin-bottom: -2rem;
        height: 3rem;
        object-fit: cover;
        z-index: 50;
      }

      .vehicle-6 {
        margin-left: -2rem;
        height: 3rem;
        object-fit: cover;
      }

      .road-element {
        position: absolute;
        object-fit: cover;
      }

      .left-footpath {
        left: 0;
        bottom: 0;
        height: 3rem;
        z-index: 50;
      }

      .traffic-light {
        left: auto;
        bottom: 0.5rem;
        height: 6rem;
        z-index: 50;
      }

      .road-main {
        bottom: 0;
        width: 100%;
        height: 5rem;
        z-index: 40;
      }

      .yellow-strip-1 {
        bottom: 2.25rem;
        opacity: 0.75;
        height: auto;
        z-index: 40;
      }

      .zebra-crossing {
        bottom: 1rem;
        opacity: 0.75;
        left: 1rem;
        width: 90vw;
        height: 1rem;
        z-index: 40;
      }

      .yellow-strip-2 {
        bottom: 0.5rem;
        height: auto;
        z-index: 40;
      }

      .yellow-strip-left {
        bottom: -5rem;
        right: -55px;
        height: 6rem;
        transform: rotate(-6deg);
        z-index: 40;
      }

      .yellow-strip-right {
        bottom: -5.2rem;
        left: -75px;
        height: 6rem;
        transform: rotate(3deg);
        z-index: 40;
      }

      .right-footpath {
        right: 0;
        bottom: 0;
        height: 3rem;
        z-index: 50;
      }

      /* Modal Styles */
      .modal-backdrop-custom {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        z-index: 1050;
      }

      .modal-backdrop-custom.show {
        display: flex;
      }

      .modal-content-custom {
        background-color: #ffffff;
        padding: 1.25rem;
        border-radius: 0.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        width: 100%;
        max-width: 28rem;
        position: relative;
      }

      .modal-content-pledge {
        max-width: 50rem;
        max-height: 90vh;
        overflow-y: auto;
      }

      .modal-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        color: #4b5563;
        background: none;
        border: none;
        font-size: 1.5rem;
        font-weight: 700;
        cursor: pointer;
        line-height: 1;
      }

      .modal-close:hover {
        color: #000000;
      }

      .form-label-custom {
        display: block;
        margin-bottom: 0.25rem;
        font-weight: 600;
        color: #000000;
      }

      .form-input-custom {
        width: 100%;
        border: 1px solid #000000;
        padding: 0.5rem;
        border-radius: 0.25rem;
        color: #000000;
      }

      .error-message {
        color: #dc2626;
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: none;
      }

      .error-message.show {
        display: block;
      }

      .submit-btn {
        width: 100%;
        margin-top: 1.5rem;
        background-color: #2563eb;
        color: #ffffff;
        padding: 0.5rem;
        border-radius: 0.25rem;
        border: none;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.15s;
      }

      .submit-btn:hover {
        background-color: #1d4ed8;
      }

      /* Toast Notification */
      .toast-notification {
        position: fixed;
        top: 1.25rem;
        right: 1.25rem;
        color: #ffffff;
        padding: 0.75rem 1rem;
        border-radius: 0.25rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: opacity 0.5s;
        z-index: 1060;
        display: none;
      }

      .toast-notification.show {
        display: block;
      }

      /* Responsive Styles */
      @media (max-width: 576px) {
       
.main-viewport{display:none;}
.mobileheadersection{display:block;}
    .mobilebanner {
        background: url(../images/mobilebanner.png) no-repeat center top;
        width: 100%;
        height: 200px;
      
        float: left;
        background-size: cover;
    }
    .logoleft {
    width: 33%;
}
.logoright{width:20%;}
.cta-buttons1 {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-around;
}
.cta-buttons1 button.cta-btn {
    padding: 12px;
    margin-top: 2rem;
    min-width: 45%;
    max-width: 48%;
}
 /* Counter Styles */
      .counter-container1 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
      }

      .flip-counter1 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .flipper {
        position: relative;
        width: 2.5rem;
        height: 3.5rem;
        border-radius: 0.375rem;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      }

      .flipper .top-static {
        height: 50%;
        background: linear-gradient(to bottom, #4a4a4a, #2a2a2a);
        border-bottom: 1px solid #000000;
      }

      .flipper .bottom-static {
        height: 50%;
        background: linear-gradient(to bottom, #1a1a1a, #000000);
      }

      .flipper .digit {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 2.25rem;
        font-weight: 700;
        z-index: 10;
      }

      .counter-text {
        padding-top: 0.75rem;
        margin-bottom: 1.25rem;
      }

      .counter-text-primary {
        font-weight: 600;
        font-size: 0.875rem;
        color: #000000;
      }

      .counter-text-secondary {
        font-size: 0.75rem;
        font-weight: 700;
        color: #1f2937;
      }




      }

         @media (min-width: 576px) {
        .logo-left, .logo-right {
          height: 4rem;
        }

        .circle-section {
          margin-top: -15rem;
        }

        .main-heading {
          font-size: 3.75rem;
          margin-bottom: 2rem;
        }

        .flipper {
          width: 3.5rem;
          height: 5rem;
        }

        .flipper .digit {
          font-size: 2.25rem;
        }

        .counter-text-primary {
          font-size: 1.875rem;
        }

        .counter-text-secondary {
          font-size: 1.5rem;
        }

        .cta-buttons {
          bottom: 4rem;
          flex-direction: row;
        }

        .cta-btn {
          padding: 0.75rem 1.5rem;
          min-width: 220px;
          box-shadow: 0 6px 0 #c08a00;
          border: 6px solid #ffffff;
        }

        /* .cta-btn:active {
          box-shadow: 0 3px 0 #c08a00;
        } */

        .cta-btn-text-primary {
          font-size: 24px;
        }

        .cta-btn-text-secondary {
          font-size: 24px;
        }

        .vehicle-1 {
          position: relative;
          top: 8rem;
          margin-left: 2.5rem;
          min-height: 120px;
        }

        .vehicle-2 {
          display: block;
          position: relative;
          right: -310px;
          top: 125px;
          min-height: 100px;
        }

        .vehicle-3 {
          position: relative;
          margin-left: 450px;
          margin-bottom: -2rem;
          right: 110px;
          top: 110px;
          min-height: 100px;
        }

        .vehicle-4 {
          position: relative;
          top: 65px;
          margin-left: -1.5rem;
          min-height: 220px;
        }

        .vehicle-5 {
          position: absolute;
          right: -0.5rem;
          bottom: -2.25rem;
          min-height: 100px;
        }

        .vehicle-6 {
          position: absolute;
          right: -0.5rem;
          bottom: -2rem;
          margin-bottom: 1.5rem;
          min-height: 250px;
        }

        .left-footpath {
          min-height: 250px;
        }

        .traffic-light {
          left: 102px;
          bottom: 105px;
          min-height: 400px;
        }

        .road-main {
          height: 445px;


        }

        .yellow-strip-1 {
          top: 2.4rem;
          bottom: 0.5rem;
          height: 0.5rem;
          width: 100%;
        }

        .zebra-crossing {
          bottom: 120px;
          left: 3.5rem;
          width: auto;
          height: 5rem;
        }

        .yellow-strip-2 {
          bottom: 6rem;
          height: 0.75rem;
        }

        .yellow-strip-left {
          bottom: -3rem;
          right: 210px;
          min-height: 158px;
        }

        .yellow-strip-right {
          bottom: -3.5rem;
          left: 40px;
          min-height: 158px;
        }

        .right-footpath {
          min-height: 290px;
        }

        .modal-content-custom {
          padding: 2rem;
        }
      }

      @media (min-width: 992px) {
        .logo-left, .logo-right {
          height: 6rem;
        }
      }

      @media (min-width: 1440px) {
        .circle-section {
          height: 750px;
        }

           .main-heading {
        font-size: 3.5rem;
        margin-top: 0;
        margin-bottom: 0;
    }

        .flipper {
          width: 4rem;
          height: 5rem;
        }

        .flipper .digit {
          font-size: 3rem;
        }

        .counter-text-primary {
          font-size: 2.25rem;
        }

        .counter-text-secondary {
          font-size: 1.875rem;
        }
        .circle-content {
    text-align: center;
    margin-top: 3rem;
}

        .cta-btn {
          padding: 0.5rem 2rem;
          min-width:560px;
          box-shadow: 0 0px 0 #c08a00;
          border: 8px solid #ffffff;
        }

        .cta-btn-text-primary {
          font-size: 40px;
          margin-bottom: 0.5rem;
        }

        .cta-btn-text-secondary {
          font-size: 32px;
        }
        .vehicle-4 {
    margin-left: 8rem !important;
    height: 4rem;
    object-fit: cover;
    z-index: 50;
}
      }

      @media (min-width: 1920px) {
        .logo-left, .logo-right {
          height: 6rem;
        }

        .circle-section {
          height: 824px;
        }
      }

      @media (min-width: 2560px) {
        .logo-left {
          height: 11rem;
          left: 2rem;
          top: 2rem;
        }

        .logo-right {
          height: 11rem;
          right: 1.5rem;
          top: 2rem;
        }

        .circle-section {
          height: 850px;
          padding-bottom: 4rem;
        }

        .main-heading {
          font-size: 4.5rem;
          margin-bottom: 0.5rem;
        }

        .flipper {
          width: 7rem;
          height: 9rem;
        }

        .flipper .digit {
          font-size: 8rem;
        }

        .counter-container {
          margin-top: 2rem;
        }

        .counter-text-primary {
          font-size: 2.25rem;
        }

        .counter-text-secondary {
          font-size: 2.25rem;
        }

        .cta-buttons {
          gap: 8rem;
        }

        .cta-btn {
          width: 700px;
          padding: 2rem;
        }

        .cta-btn-text-primary {
          font-size: 52px;
        }

        .cta-btn-text-secondary {
          font-size: 40px;
        }
      }
