/* styles.css - paste alongside index.html */

    * { box-sizing:border-box; }
    html, body {
      display: contents;
      height:100%;
      margin:0;
      font-family:'Poppins', sans-serif;
      background:#fff;
      color:#0b2440;
    }

    /* Container */
    .landing_container {
      max-width: 90%;
      margin: 0 auto;
      padding-left: 28px;
      padding-right: 28px;
      max-height: 90%;
    }

    /* Header */
    .site-top {
      width: 100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:28px 0;
    }
    .logo-landing { 
      height:64px; 
      width:auto;
      display:block;
      padding: 0;
    }

    .website-btn {
      display: flex;
      background: #b7dc1e;
      color: #0b2440;
      padding: 10px 10px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      font-weight: 700;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      gap: 42px;
    }

    .right-arrow{
      background: #ffffff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      }

    /* Intro Hero */
    .hero-wrap {
      position:relative;
      border-radius:30px;
      overflow:hidden;
      min-height:720px;
      /*box-shadow:0 30px 60px rgba(11,22,40,0.10);*/
      margin-bottom:20px;
    }

    .bg-video {
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      filter:saturate(.9);
    }

    .hero-overlay {
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,.65) 100%);
      z-index:2;
    }

    .hero-content {
      position:relative;
      z-index:3;
      text-align:center;
      padding:10% 30px 140px;
      color:#fff;
      display:flex;
      flex-direction:column;
      gap:18px;
    }

    .hero-title {
      font-size:76px;
      font-weight:800;
      margin:0;
      text-transform:uppercase;
      line-height:1;
    }

    .hero-sub {
      font-size:30px;
      font-weight:700;
      max-width:900px;
      margin:0 auto;
    }

    .hero-note {
      font-size:18px;
      margin-top:8px;
      opacity:.9;
    }

    .hero-watermark {
      position:absolute;
      left:20px;
      bottom:20px;
      color:#fff;
      opacity:.7;
      z-index:3;
    }

    .site-bottom {
      display: flex;
      align-items: center;
      justify-content: center
    }

    .start-pill {
      right: 60px;
      bottom: 12px;
      padding: 30px 94px;
      font-size: 18px;
      background: #b7dc1e;
      color: #0b2440;
      font-weight: 800;
      border-radius: 94px;
      border: none;
      cursor: pointer;
      z-index: 5;
      /*box-shadow:0 18px 36px rgba(11,22,40,0.12);*/
    }


    /*diclamation page*/

    .blog-modal-section {
      height: 100vh;
      width: 100vw;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: blur(8px);
      -webkit-filter: blur(8px);
      position: fixed;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .blog-modal-container {
      height: 40%;
      width: 40%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
    }



/* work-type.html */
/* Reset-ish */
* { box-sizing: border-box; }
html,body { 
    display: contents;
    height: 100%; 
    margin: 0; 
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; 
    color: #0f1724; 
    background: #ffffff; 
  }


/* Header */
.site-header { 
  padding: 28px 0; 
}

.header-inner { 
  display: flex; 
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  margin: 0 0 0 30px;
}

.logo { 
      height:64px; 
      width:auto;
      display:block;
    }

/* Main content */
.main-content {
   padding-bottom: 80px; 
   text-align: center; 
  }

/* Title */
.work_type_page-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b2440; /* deep navy similar to design */
  letter-spacing: -0.02em;
  padding: 20px 0 60px 0;
  display: block;
}

/* Grid of cards */
.cards-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  padding: 0 10px;
  margin: 0 220px;
  
}

/* Card style */
.card {
  --card-width: 320px;
  width: min(var(--card-width), 92%);
  display: block;
  border: none;
  background: transparent;
  padding: 20px;
  border-radius: 22px;
  box-shadow:
    0 40px 60px rgba(11, 22, 40, 0.06),
    0 -18px 20px rgba(11, 22, 40, 0.04);
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 200ms;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

/* Focus outline for accessibility */
.card:focus { outline: 3px solid rgba(11,36,64,0.12); outline-offset: 6px; }

/* Slight hover scale */
.card:hover,
.card:focus {
  transform: translateY(-6px);
  box-shadow:
    0 60px 80px rgba(11,22,40,0.12),
    0 18px 28px rgba(11,22,40,0.08);
}

/* The image area inside card */
.card-media {
  display: block;
  width: 100%;
  padding-top: 160%; /* aspect ratio ~ 5:8; adjust as needed */
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  /*box-shadow: inset 0 0 0 8px #ffffff; /* thick white border inside to mimic design */
}

/* overlay gradient to darken bottom */
.card-overlay {
  pointer-events: none;
  position: absolute;
  left: 0px;
  right: 0px;
  top: calc(0px + 0px);
  height: calc(100% - 0px);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(11,18,34,0) 45%, rgba(11,18,34,0.62) 100%);
  mix-blend-mode: normal;
  z-index: 2;
}

/* Caption positioned at bottom center */
.card-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 60px;
  z-index: 3;
  display: block;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  text-shadow: 0 2px 6px rgba(2,6,23,0.35);
  pointer-events: none;
}

.hover-btn {
      position:absolute;
      left:50%; bottom:22px;
      transform:translateX(-50%) translateY(12px);
      padding: 16px 64px;
      background:#b7dc1e;
      color:#0b2440;
      border:none;
      border-radius: 64px;
      font-weight:700;
      box-shadow:0 8px 20px rgba(11,22,40,0.08);
      opacity:0;
      pointer-events:none;
      transition:opacity .25s, transform .25s;
      z-index:6;
    }

    .card:hover .hover-btn,
    .card:focus-within .hover-btn {
      opacity:1;
      transform:translateX(-50%) translateY(0);
      pointer-events:auto;
    }

    .card:hover .card-media,
    .card:focus-within .card-media {
      opacity:1;
      transform:translateX(0) translateY(0);
      display: block;
      pointer-events:auto;
    }

/* Make sure card inner elements don't shift outside rounded container */
.card > .card-media,
.card > .card-overlay { border-radius: 14px; }

/* Larger card size for wide screens to match the Figma visual scale */
@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 0px; }
  .card { --card-width: 80%; border-radius: 26px; }
  .card-media { padding-top: 155%; border-radius: 18px; }
  .page-title { font-size: 56px;}
}

/* Two columns on medium screens */
@media (min-width: 680px) and (max-width: 899px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .card { --card-width: 100%; }
}

/* Small screens */
@media (max-width: 479px) {
  .page-title { font-size: 28px; padding-top: 6px; }
  .card { padding: 16px; --card-width: 100%; }
}




/* form - hybrid */

 :root{
    --bg:#ffffff;
    --navy:#0b2440;
    --muted:#7a8794;
    --accent:#b7dc1e;
  }

  html,body{
    display: contents;
    height:100%;
    margin:0;
    background:var(--bg);
    font-family:'Poppins',sans-serif;
    color:var(--navy);
  }
  .container-hybrid{
    max-width:1080px;
    margin: 120px auto;
  }

  .head-line-hybrid{
    display: block;
    font-size:32px;
    font-weight:800;
    margin: 30px 0 30px 0;
    }

  .form-shell-hybrid{
    display:flex;
    gap:60px;
    align-items: center;
   }

  .image-card{
    flex:0 0 320px;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 30px 60px rgba(2,6,23,0.06);
    }

  .image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    }

  .form-wrap{
    flex:1;
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 30px 60px rgba(2,6,23,0.06);
    max-height:600px;overflow:auto;
    display: flex;
    flex-direction: column;
    }

  .stack{
    display:flex;
    flex-direction:column;
    gap:14px;
    }

  .step-card{
    border-radius:12px;
    padding:12px;border:1px solid #f0f2f4;
    background:#fff;
  }

  .step-label{font-weight:700;
    color:var(--muted);
    font-size:13px;
    margin-bottom:8px;
  }

  input{
    width:100%;
    padding:16px 12px;
    border-radius:64px;
    border:1px solid #e6e9ec;
    }

  .hint{
    font-size:12px;
    color:var(--muted);
    margin-top:8px;
    }

  .radio-grid{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    }

  label.radio{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border-radius:10px;
    border:1px solid transparent;
    cursor:pointer;
    }

  .actions{
    display:flex;
    gap:12px;
    justify-content:flex-end;
    margin-top:14px;
    }

  .btn{
    background:var(--accent);
    color:var(--navy);
    padding:10px 18px;
    border-radius:999px;
    border:none;
    font-weight:700;
    cursor:pointer;
    }

  .btn.ghost{
    background:transparent;
    border:1px solid #e6e9ec;
    }

  .btn:disabled{
    background:#e5e7eb;
    color:#9ca3af;
    cursor:not-allowed;
    }

  .result-card{
    margin-top:12px;
    padding:12px;
    border-radius:10px;
    background:#fbffef;
    border:1px solid #e9f4d1;
    }

  .error-banner{
    background:#fee2e2;
    color:#9b1c1c;
    padding:10px;
    border-radius:8px;
    margin-bottom:12px;
    display:none;
    }

  @media(max-width:900px){
    .form-shell{flex-direction:column}
    .image-card{width:100%;height:220px}
    }







/* form - daily Commute */

 :root{
    --bg:#ffffff;
    --navy:#0b2440;
    --muted:#7a8794;
    --accent:#b7dc1e;
  }

  html,body{
    display: contents;
    height:100%;
    margin:0;
    background:var(--bg);
    font-family:'Poppins',sans-serif;
    color:var(--navy);
  }
  .container-daily-commute{
    max-width: 1080px;
    margin:28px auto;
    padding:0 20px;
  }

  .logo{
    height:64px; 
    width:auto;
    display:block;
  }

  .head-line-daily-commute{
    display: block;
    font-size:32px;margin:0;
    font-weight:800;
    padding: 30px 0 30px 0;
    }

  .form-shell{
    display:flex;
    gap:24px;
    align-items: center;
   }

  .image-card{
    flex:0 0 320px;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 30px 60px rgba(2,6,23,0.06);
    }

  .image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    }

  .form-wrap{
    flex:1;
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 30px 60px rgba(2,6,23,0.06);
    max-height:600px;overflow:auto;
    }

  .stack{
    display:flex;
    flex-direction:column;
    gap:14px;
    }

  .step-card{
    border-radius:12px;
    padding:12px;border:1px solid #f0f2f4;
    background:#fff;
  }

  .step-label{font-weight:700;
    color:var(--muted);
    font-size:13px;
    margin-bottom:8px;
  }

  input{
    width:100%;
    padding:16px 12px;
    border-radius:64px;
    border:1px solid #e6e9ec;
    }

  .hint{
    font-size:12px;
    color:var(--muted);
    margin-top:8px;
    }

  .radio-grid{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    }

  label.radio{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border-radius:10px;
    border:1px solid transparent;
    cursor:pointer;
    }

  .actions{
    display:flex;
    gap:12px;
    justify-content:flex-end;
    margin-top:14px;
    }

  .btn{
    background:var(--accent);
    color:var(--navy);
    padding:10px 18px;
    border-radius:999px;
    border:none;
    font-weight:700;
    cursor:pointer;
    }

  .btn.ghost{
    background:transparent;
    border:1px solid #e6e9ec;
    }

  .btn:disabled{
    background:#e5e7eb;
    color:#9ca3af;
    cursor:not-allowed;
    }

  .result-card{
    margin-top:12px;
    padding:12px;
    border-radius:10px;
    background:#fbffef;
    border:1px solid #e9f4d1;
    }

  .error-banner{
    background:#fee2e2;
    color:#9b1c1c;
    padding:10px;
    border-radius:8px;
    margin-bottom:12px;
    display:none;
    }

  @media(max-width:900px){
    .form-shell{flex-direction:column}
    .image-card{width:100%;height:220px}
    }













/* loading.html */

.loading-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    background-color: #ffffff;
}


.loading-gif {
    width: 250px;
    height: 250px;
}

/* Class to hide the loader when done */
.loader-hidden {
    display: none;
    /*Optional: use opacity and transition for a fade effect*/
    opacity: 0;
    transition: opacity 0.75s ease-out;
}




/* 0_emission_dashboard.html */

/* Reset and Base Styles */

body {
    display: contents;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.logo-container {
    margin: 30px 0 0 30px;
    position: relative;
    display: block;
}


/* Dashboard Container */
.dashboard {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

/* Main Heading */
.main-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -272.5px);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 120px;
    line-height: normal;
    color: #003d0b;
    text-align: center;
    white-space: pre;
    font-style: normal;
}

/* Sub Heading */
.sub-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -101.5px);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: normal;
    color: #121e43;
    text-align: center;
    white-space: pre;
    font-style: normal;
}

/* Description */
.description {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, 16.5px);
    width: 1308px;
    height: 116px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #121e43;
    text-align: center;
    font-style: normal;
}

/* Buttons Container */
.buttons-container {
    position: absolute;
    top: 75%;;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

/* Button Base Styles */
.o_btn {
    position: relative;
    height: 72px;
    border-radius: 64px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 0 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.o_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.o_btn:active {
    transform: translateY(0);
}

/* Button Variants */
.o_btn-white {
    background-color: #ffffff;
    border: 0.5px solid #000000;
    color: #000000;
    width: 338px;
}

.o_btn-green {
    background-color: #adce28;
    color: #000000;
    width: 338px;
}

.o_btn-dark-green {
    background-color: #003d0b;
    color: #adce28;
    width: 338px;
}

/* Button Text */
.o_btn-text {
    font-style: normal;
    white-space: nowrap;
}

.o_btn-text-green {
    color: #adce28;
}

/* Button Icon Wrapper */
.o_btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Icon */
.o_btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o_btn-icon-gray {
    background-color: #D9D9D9;
}

.o_btn-icon-white {
    background-color: #ffffff;
}

/* Arrow Icon Rotation */
.arrow-icon {
    transform: rotate(90deg);
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .main-heading {
        font-size: clamp(60px, 6.25vw, 120px);
    }
    
    .sub-heading {
        font-size: clamp(24px, 2.5vw, 48px);
    }
    
    .description {
        font-size: clamp(16px, 1.25vw, 24px);
        width: clamp(600px, 68vw, 1308px);
    }
    
}


@media screen and (max-width: 1440px) {
    .logo-container {
        top: 40px;
        left: 40px;
        width: 180px;
        height: 46px;
    } 
}

@media screen and (max-width: 1024px) {
    .logo-container {
        top: 30px;
        left: 30px;
        width: 150px;
        height: 38px;
    }
    
    .main-heading {
        transform: translate(-50%, -200px);
    }
    
    .sub-heading {
        transform: translate(-50%, -80px);
    }
    
    .description {
        transform: translate(-50%, 20px);
    }
    
}

@media screen and (max-width: 768px) {
    .logo-container {
        top: 20px;
        left: 20px;
        width: 120px;
        height: 30px;
    }
    
    .main-heading {
        transform: translate(-50%, -150px);
    }
    
    .sub-heading {
        transform: translate(-50%, -60px);
    }
    
    .description {
        transform: translate(-50%, 30px);
        height: auto;
    }
}






    /*emission_dashboard_1.html */

.main_dashboard {
    display: contents;
    font-family: 'Inter', sans-serif;
    background-color: #fafafc;
    width: 100%;
    height: auto;
    overflow: overlay; 
}

.dashboard {
    max-width: 1800px;
    margin: 30px auto;
    position: relative;
}

/* Cards Container */
.cards-container_top {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    margin-bottom: 24px;
    justify-content: center;
}

.card-emission {
    background: white;
    border-radius: 40px;
    box-shadow: 11px 15px 30.7px 12px rgba(18, 30, 67, 0.05);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card-small {
    width: 403px;
    height: 514px;
}

.card-large {
    width: 731px;
    height: 514px;
}

.card-content {
    text-align: center;
    width: 100%;
}

.card-title {
    font-weight: 700;
    font-size: 20px;
    color: #121e43;
    margin-bottom: 30px;
}

.card-value {
    font-weight: 900;
    font-size: 84px;
    color: #575757;
    line-height: 1;
    margin-bottom: 10px;
}

.card-unit {
    font-weight: 700;
    font-size: 20px;
    color: #bdbdbd;
    margin-bottom: 100px;
}

.subscript {
    font-size: 12.9px;
}

.subscript-sm {
    font-size: 10.32px;
}

.card-average {
    font-size: 16px;
    color: #121e43;
    line-height: 1.5;
}

.card-average p {
    margin: 0;
}

.card-average-bold {
    font-weight: 700;
}

/* Center Card Content */
.card-content-center {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stars-container {
    margin-bottom: 32px;
}

.center-small-text {
    font-weight: 700;
    font-size: 20px;
    color: #121e43;
    margin-bottom: 16px;
}

.center-large-text {
    font-weight: 900;
    font-size: 84px;
    color: #003d0b;
    line-height: 1;
    margin-bottom: 16px;
}

.center-subtitle {
    font-weight: 700;
    font-size: 36px;
    color: #121e43;
    margin-bottom: 50px;
}

.center-description {
    font-weight: 400;
    font-size: 18px;
    color: #121e43;
    line-height: 1.5;
    max-width: 560px;
    text-align: center;
}

/* Trees Section */
.trees-section {
    background: white;
    border-radius: 40px;
    box-shadow: 11px 15px 30.7px 12px rgba(18, 30, 67, 0.05);
    padding: 40px 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 150px;
    margin: 0 94px;
}

.trees-emoji-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px 12px;
    width: 380px;
}

.tree-emoji {
    font-size: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tree-faded {
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.4;
}

.trees-text-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 84px;
    align-content: center;
    align-items: center;
}

.trees-number {
    font-weight: 900;
    font-size: 48px;
    color: #003d0b;
}

.trees-question {
    font-weight: 700;
    font-size: 32px;
    color: #121e43;
    line-height: 1.4;
    max-width: 593px;
}

/* Buttons Container */
.buttons-container-dashboard {
    display: flex;
    gap: 39px;
    justify-content: center;
    margin-top: 60px;
}

.action-btn {
    height: 64px;
    border-radius: 32px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 30px;
    gap: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    min-width: 338px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-btn span {
    flex: 1;
    text-align: left;
}

.btn-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-signature {
    background: white;
    color: black;
    border: 0.5px solid black;
}

.btn-dashboard {
    background: #d2d2d2;
    color: black;
}

.btn-certificate {
    background: #adce28;
    color: black;
}

.btn-share_dashboard {
    background: #003d0b;
    color: #adce28;
}

.bottom_space {
    height: 60px;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .cards-container {
        flex-wrap: wrap;
    }
    
    .card-large {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    
    .cards-container-large {
        flex-direction: column;
        align-items: center;
    }
    
    .card-small {
        width: 100%;
        max-width: 403px;
    }
    
    .trees-section {
        flex-direction: column;
        height: auto;
        padding: 30px;
    }
    
    .trees-emoji-grid {
        width: 100%;
        max-width: 380px;
    }
    
    .buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {

    .cards-container {
        margin-top: 60px;
    }
    
    .card-value {
        font-size: 64px;
    }
    
    .center-large-text {
        font-size: 64px;
    }
    
    .center-subtitle {
        font-size: 28px;
    }
    
    .trees-number {
        font-size: 36px;
    }
    
    .trees-question {
        font-size: 24px;
    }
    
    .trees-emoji-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}





/* register page.html */

 :root{
    --bg:#ffffff;
    --card:#ffffff;
    --muted:#7a8794;
    --accent:#b7dc1e;
    --accent-dark:#9cbc16;
    --navy:#0b2440;
    --input-border:#d9dfe6;
    --error:#e11d48;
  }

  
  .reg_page_body{
    display: contents;
    width: 100%;
    height:auto;
    background:var(--bg);
    font-family:'Poppins',system-ui,-apple-system,"Segoe UI",Roboto,Arial;
    color:var(--navy);
    -webkit-font-smoothing:antialiased
  }

  .smoke {
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    z-index:-1;
    pointer-events:none;
    opacity:0.08;
  }

  .reg_page {
    width: 100%;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding:48px 20px;
  }

  /* header logo top-left */
  .reg_site-header {
    position:fixed;
    left:28px;
    top:20px;
  }
  .reg_site-header img {
    height:48px;
    width:auto;
    display:block;
  }

  /* center card */
  .reg_card {
    width:50%;
    max-width:90%;
    margin-top:8%;
    background:var(--card);
    border-radius:24px;
    padding:44px 56px;
    box-shadow: 0 40px 60px rgba(2,6,23,0.06);
    display:block;
  }

  /* form layout */
  .reg_form-grid { max-width: 90%; margin: 0 auto; }
  .reg_field {
    margin-bottom:34px;
  }

  .reg_logo-container {
    text-align:center;
    margin-bottom:24px;
  }

  .reg_label {
    display:block;
    font-weight:700;
    color:var(--muted);
    margin-bottom:10px;
    font-size:14px;
  }

  .reg_input {
    width:100%;
    display:block;
    padding:14px 20px;
    border-radius:36px;
    border:1px solid var(--input-border);
    font-size:16px;
    outline: none;
    transition: box-shadow .12s, border-color .12s;
  }
  .reg_input:focus{
    border-color:rgba(11,36,64,0.12);
    box-shadow: 0 6px 18px rgba(11,36,64,0.06);
  }
  .reg_hint {
    display:block;
    margin-top:8px;
    font-size:13px;
    color:var(--muted);
  }

  .reg_actions {
    display:flex;
    justify-content:center;
    margin-top: 36px;
  }


  .password-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
  }

  .password-input {
    width:100%;
    display:block;
    padding:14px 20px;
    border-radius:36px;
    border:1px solid var(--input-border);
    font-size:16px;
    outline: none;
    transition: box-shadow .12s, border-color .12s;
  }

  .password-input:focus {
      border-color: #4CAF50;
      border-color:rgba(11,36,64,0.12);
      box-shadow: 0 6px 18px rgba(11,36,64,0.06);
  }

  /*.toggle-icon {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      font-size: 18px;
      user-select: none;
  }*/


  .reg_btn {
    background:var(--accent);
    border:none;
    border-radius:999px;
    padding:20px 44px;
    font-weight:700;
    color:var(--navy);
    cursor:pointer;
    box-shadow: 0 6px 16px rgba(11,36,64,0.06);
    transition: transform .12s ease, box-shadow .12s ease;
    font-size:16px;
    min-width:220px;
  }
  .reg_btn:hover{ transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11,36,64,0.08); }
  .reg_btn:active{ transform: translateY(0); }

  /* error text */
  .reg_error {
    color: var(--error);
    font-size:13px;
    margin-top:8px;
    display:none;
  }

  /* small screens */
  @media (max-width:560px){
    .reg_card{ padding:28px 18px; border-radius:16px; }
    .reg_label{ font-size:13px; }
    .reg_btn{ min-width:160px; padding:12px 20px; }
  }





/* login page.html */

 :root{
    --bg:#ffffff;
    --card:#ffffff;
    --muted:#7a8794;
    --accent:#b7dc1e;
    --accent-dark:#9cbc16;
    --navy:#0b2440;
    --input-border:#d9dfe6;
    --error:#e11d48;
  }

  
  .login_page_body{
    display: contents;
    width: 100%;
    height:auto;
    background:var(--bg);
    font-family:'Poppins',system-ui,-apple-system,"Segoe UI",Roboto,Arial;
    color:var(--navy);
    -webkit-font-smoothing:antialiased
  }

  .smoke {
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    z-index:-1;
    pointer-events:none;
    opacity:0.08;
  }

  .login_page {
    width: 100%;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding:48px 20px;
  }

  /* header logo top-left */
  .login_site-header {
    position:fixed;
    left:28px;
    top:20px;
  }
  .login_site-header img {
    height:48px;
    width:auto;
    display:block;
  }

  /* center card */
  .login_card {
    width:50%;
    max-width:90%;
    margin-top:8%;
    background:var(--card);
    border-radius:24px;
    padding:44px 56px;
    box-shadow: 0 40px 60px rgba(2,6,23,0.06);
    display:block;
  }

  /* form layout */
  .login_form-grid { max-width: 90%; margin: 0 auto; }
  .login_field {
    margin-bottom:34px;
  }

  .login_logo-container {
    text-align:center;
    margin-bottom:24px;
  }

  .login_label {
    display:block;
    font-weight:700;
    color:var(--muted);
    margin-bottom:10px;
    font-size:14px;
  }

  .login_input {
    width:100%;
    display:block;
    padding:14px 20px;
    border-radius:36px;
    border:1px solid var(--input-border);
    font-size:16px;
    outline: none;
    transition: box-shadow .12s, border-color .12s;
  }
  .login_input:focus{
    border-color:rgba(11,36,64,0.12);
    box-shadow: 0 6px 18px rgba(11,36,64,0.06);
  }

  .login_actions {
    display:flex;
    justify-content:center;
    margin-top:36px;
  }

  .login_btn {
    background:var(--accent);
    border:none;
    border-radius:999px;
    padding:20px 44px;
    font-weight:700;
    color:var(--navy);
    cursor:pointer;
    box-shadow: 0 6px 16px rgba(11,36,64,0.06);
    transition: transform .12s ease, box-shadow .12s ease;
    font-size:16px;
    min-width:220px;
  }
  .login_btn:hover{ transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11,36,64,0.08); }
  .login_btn:active{ transform: translateY(0); }

  /* error text */
  .login_error {
    color: var(--error);
    font-size:13px;
    margin-top:8px;
    display:none;
  }

  /* small screens */
  @media (max-width:560px){
    .login_card{ padding:28px 18px; border-radius:16px; }
    .login_label{ font-size:13px; }
    .login_btn{ min-width:160px; padding:12px 20px; }
  }



  /* thank you page.html */

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fafafc;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .thankyou_container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    /* thank you gif */

    .vehicle_gif_container {
      justify-content: center;
    }

    .vehicle_gif {
      display: block;
      margin: 0 auto;
      margin-top: 4%;
      width: 15%;
    }

    /* Thank you headings container */
    .thankyou_headings_container {
      margin: 0 auto;
    }


    /* Main heading */
    .heading-thank-you {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 900;
      font-size: 120px;
      color: #003d0b;
      text-align: center;
      white-space: pre;
      line-height: normal;
      font-style: normal;
    }

    /* Subheading */
    .heading-participation {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 42px;
      color: #121e43;
      text-align: center;
      white-space: pre;
      line-height: normal;
      font-style: normal;
    }


    .buttons-container-thankyou {
      display: flex;
      width: 100%;
      height: 100px;
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
    }

    /* Back button container */
    .back-button-container {
      display: block;
    }

    .back-button {
      width: 64px;
      height: 64px;
      background-color: white;
      border-radius: 32px;
      border: 1px solid black;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s;
    }

    .back-button:hover {
      background-color: #f5f5f5;
    }

    /* Visit Website button */

    .website-button {
      width: 338px;
      height: 64px;
      background-color: #adce28;
      border: none;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: black;
      text-align: center;
      white-space: pre;
      line-height: normal;
      font-style: normal;
    }

    .website-button:hover {
      background-color: #9bba24;
    }






      /* signin register thank you page.html */


    .signin_thankyou_container {
      display: contents;
      width: 100%;
      height: 100%;
    }

    /* thank you gif */

    .signin_vehicle_gif_container {
      display: flex;
      width: 100%;
      height: 100px;
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    .signin_vehicle_gif {
      display: block;
      margin: 0 auto;
      margin-top: 4%;
      width: 15%;
    }

    /* Thank you headings container */
    .signin_thankyou_headings_container {
      margin: 0 auto;
    }


    /* Main heading */
    .signin_heading-thank-you {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 900;
      font-size: 60px;
      color: #003d0b;
      text-align: center;
      white-space: pre;
      line-height: normal;
      font-style: normal;
      font-size: xx-large;
    }

    /* Subheading */
    .signin_heading-participation {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 42px;
      color: #121e43;
      text-align: center;
      white-space: pre;
      line-height: normal;
      font-style: normal;
    }


    .signin_thankyou_heading-participation {
      display: flex;
      width: 100%;
      height: 100px;
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    /* Back button container */
    .signin_back-button-container {
      display: block;
    }


    /* Visit Website button */

    .signin_buttons-container-thankyou{
      display: flex;
      width: 100%;
      height: 100px;
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
    }

    .signin_website-button {
      width: 338px;
      height: 64px;
      background-color: #adce28;
      border: none;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: black;
      text-align: center;
      white-space: pre;
      line-height: normal;
      font-style: normal;
    }

    .signin_website-button:hover {
      background-color: #9bba24;
    }
