

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;

  }
  
  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px 0 40px;
    background: transparent;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
  }
  
  .nav-logo {
    width: 70px;
    height: auto;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
  }
  
  .nav-download {
    background: #066c64;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .nav-download:hover {
    background: #05524a;
  }
  
  .nav-divider {
    border: none;
    margin: 8px 0 0 0;
  }
  
  .hr-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    min-height: 480px;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(197, 214, 235, 0.65) 100%);

    color: #1e293b;
  }
  
  .hr-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    padding: 0px 40px;
    
  }
  .hr-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 60px;
    text-align: center;
  }
  
  .hr-highlight {
    color: #066c64;
    font-family: 'Brush Script MT', cursive; /* handwritten-style font */
    position: relative;
    display: inline-block;
  }
  
  /* Custom underline with scribble effect */
  .hr-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 20px;
    background: url('images/scribble.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
  }
  
  
  .hr-description {
    font-size: 1.3rem;
    color: #334155;
    margin-bottom: 28px;
    margin-top: 4px;
    text-align: center;
  }
  
  .hr-actions {
    display: flex;
    gap: 20px;
    justify-content: center;

  }
  
  .hr-btn {
    background: #066c64;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    padding: 13px 34px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .hr-btn.hr-explore {
    background: #1e293b;
  }
  
  .hr-btn:hover {
    background: #05524a;
  }
  
  .hr-btn.hr-explore:hover {
    background: #334155;
  }
  
  .hr-bottom-img {
    margin-top: 8px;
  }
  
  .hr-blueprint {
    width: 330px;
    max-width: 87vw;
    opacity: 0.6;
    /* Suggest using a separate blueprint-style image; here just using the same src for demo */
  }
  
  .hr-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 380px;
  }
  
  .hr-main-img {
    width: 100%;
    height: auto;
  }

  .why-section {
    width: 100%;
    background: #fff;
    padding-top: 38px;
    padding-bottom: 0;
    overflow: hidden;
  }
  
  .why-mainrow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
  }
  
  .why-left {
    flex: 1 1 55%;
    min-width: 295px;
    position: relative;
    padding-top: 20px;
  }
  
  .why-title {
    font-size: 2.75rem;
    font-weight: 300;
    color: #757575;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
  }
  
  .why-accent {
    color: #066c64;
    font-weight: 500;
    letter-spacing: 1px;
  }
  
  .why-corner-img {
    position: absolute;

    left: -100px;
    width: 250px;
    z-index: 1;
    pointer-events: none;
  }
  
  .why-right {
    flex: 1 1 45%;
    min-width: 265px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
  }
  
  .why-device-img {
    width: 100%;
    margin-bottom: 0;
    z-index: 2;
    display: block;
  }
  
  .why-features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    margin: 34px auto 0 auto;
    max-width: 1200px;
    padding: 0 24px 42px 24px;
    flex-wrap: wrap;
  }
  
  .why-feature-card {
    background: linear-gradient(180deg, #FFFFFF 62.02%, #A3E4E9 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
    flex: 1 1 155px;
    max-width: 215px;
    min-width: 155px;
    min-height: 134px;
    display: flex;
    flex-direction: column;
    align-items: lef;
    padding: 30px 12px 40px 12px;
    position: relative;
    transition: box-shadow 0.18s;
  }

  .why-feature-card .max-why-card{
    padding: 30px 12px 60px 12px;
  }
  .why-card-iconimg{
    width: 50px;
  }
  
  .why-feature-card:hover {
    box-shadow: 0 5px 24px 0 rgba(6,108,100,0.11);
  }
  
  .why-feature-icon {
    margin-bottom:  10px;
    margin-top: -3px;
  }
  
  .why-feature-title {
    font-size: 1.09rem;
    color: #066c64;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
  }
  
  .why-feature-desc {
    color: #273537;
    font-size: 0.97rem;
    text-align: left;
    font-weight: 400;
    line-height: 1.39;
  }
  

  .bpm-section {
    text-align: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }

  /* Title */
  .bpm-section {
    text-align: center;
    padding: 60px 20px;
  }

  .bpm-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
  }

  .bpm-title span {
    color: rgba(4, 86, 93, 1);
  }

  .bpm-subtitle {
    font-size: 1.5rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  /* Video Container */
  .bpm-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border: 6px solid #000;
    border-radius: 15px;
    overflow: hidden;
  }

  /* Video */
  .bpm-video {
    width: 100%;
    height: auto;
    display: block;
  }

  .key-section {
    padding: 50px 20px;
    text-align: center;
    position: relative;
  }

  /* Building image top-right */
  .key-building {
    position: absolute;
    right: 1px;
    width: 350px;
  }

  /* Header */
  .key-title {
    font-size: 50px;
    margin-bottom: 5px;
    font-weight: 500;
  }
  .key-subtitle {
    font-size: 24px;
    color: #009688;
    margin-bottom: 40px;
  }

  /* Grid Layout */
  .key-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Card */
  .key-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    position: relative;
  }

  /* Card Background Colors */
  .key-purple { background: rgba(219, 219, 247, 1);  }
  .key-pink { background: rgba(245, 217, 221, 1);  }
  .key-blue { background: linear-gradient(180deg, #FFFFFF 0%, #A3E4E9 100%);  }
  .key-yellow { background: rgba(243, 217, 187, 1);  }
  .key-red { background: linear-gradient(180deg, #FFFFFF 0%, #A3E4E9 100%);  }
  .key-lightpurple { background: rgba(218, 221, 245, 1);  }

  /* Card Title */
  .key-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  /* Learn More link */
  .key-card a {
    font-size: 16px;
    text-decoration: none;
    color: #009688;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .key-card a::before {
    content: "↗";
    margin-right: 6px;
    font-size: 16px;
  }

  /* Card Image */
  .key-card img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }


  .reports-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    overflow: hidden;
  }

  /* Left Zigzag Cards */
  .reports-cards {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .reports-card {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    position: relative;
  }

  /* Zigzag positioning */
  .reports-card:nth-child(2) {
    margin-left: 150px;
  }
  .reports-card:nth-child(3) {
    margin-left: 30px;
  }
  .reports-card:nth-child(4) {
    margin-left: 150px;
  }

  /* Card Icon */
  .reports-card img {

    height: 70px;
    flex-shrink: 0;
  }

  /* Card Text */
  .reports-card h3 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    color: #333;
  }
  .reports-card p {
    font-size: 14px;
    margin: 3px 0 0;
    color: #555;
  }

  /* Right Side Content */
  .reports-content {
    flex: 1;
    min-width: 320px;
    padding: 20px;
    text-align: center;
  }
  .reports-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
  }
  .reports-content p {
    font-size: 24px;
    color: #006666;
    margin-bottom: 25px;
  }

  /* Buttons */
  .reports-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  .reports-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
  }
  .reports-btn-primary {
    background: #00796b;
    color: #fff;
  }
  .reports-btn-secondary {
    background: #004d40;
    color: #fff;
  }
  .reports-btn:hover {
    opacity: 0.9;
  }

  /* Bottom Illustration */
  .reports-illustration {
    position: absolute;
    bottom: 60px;
    right: 0px;
    width: 380px;
  }
  .enq-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    gap: 40px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
  }

  /* Left Content */
  .enq-left {
    flex: 1;
    min-width: 300px;
  }

  .enq-left img {
    width: 100px;

  }

  .enq-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 0px;
  }

  .enq-left p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
  }

  /* Right Form Box */
  .enq-form-box {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E0F9FB 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .enq-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .enq-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
  }

  .enq-form input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
  }

  .enq-form input:focus {
    border-color: #00796b;
    box-shadow: 0 0 5px rgba(0, 121, 107, 0.3);
  }

  .enq-btn {
    grid-column: span 2;
    background-color: #004d40;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    justify-self: center;
  }

  .enq-btn:hover {
    background-color: #00695c;
  }
  .enq-td{
    width: 200px;
  }

  .day-section {
    text-align: center;
    padding: 60px 10%;
  }

  /* Header */
  .day-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .day-title span {
    color: #00a6a6; /* teal-blue highlight */
  }

  .day-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
  }

  /* Cards wrapper */
  .day-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  /* Single Card */
  .day-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #A3E4E9 100%);
    padding: 35px 25px;
    border-radius: 18px;
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }

  .day-card:hover {
    transform: translateY(-6px);
  }

  /* Card Icon */
  .day-card img {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
  }

  /* Card Title */
  .day-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
  }

  /* Card Text */
  .day-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 0;
  }


  .dwn-section {
    width: 100%;
    min-height: 330px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A3E4E9 100%);
    padding: 38px 0 0 0;
    position: relative;
    overflow: hidden;
  }
  
  .dwn-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 32px;
    position: relative;
  }
  
  .dwn-left {
    flex: 1 1 420px;
    min-width: 310px;
    max-width: 480px;
    position: relative;
    z-index: 2;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .dwn-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #232323;
  }
  
  .dwn-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 23px;
  }
  
  .dwn-button-row {
    display: flex;
    gap: 18px;
    margin-bottom: 3px;
    z-index: 3;
    position: relative;
  }
  
  .dwn-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    min-width: 170px;
    box-shadow: 0 2px 9px rgba(32, 64, 150, 0.08);
    transition: background 0.17s, box-shadow 0.17s;
    line-height: 1.15;
  }
  
  .dwn-btn-google {
    background: #111;
  }
  .dwn-btn-apple {
    background: #111;
  }
  .dwn-btn:hover {
    background: #066c64;
  }
  
  .dwn-btn-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
  }
  
  .dwn-layer-img {
    width: 463px;
    max-width: 76vw;
    z-index: 1;
    pointer-events: none;
    margin-left: -33px;
  }
  
  .dwn-right {
    flex: 1 1 430px;
    min-width: 330px;
    max-width: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    margin-top: 10px;
  }
  
  .dwn-mobile-img {
    width: 550px;
    max-width: 98vw;
    height: auto;
    display: block;
    z-index: 2;
    margin-right: 0;
  }

  .footer {
    background: #000;
    padding: 40px 60px;
    width: 90.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color:  white;;
    
}   
.footer-left {
    display: flex;
    flex-direction: column;
}
.footer-left h3 {
    margin-bottom: 15px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.footer-right {
    text-align: left;
}
.footer-right p {
    margin: 5px 0;
}
.footer-right a {
    color: white;
    text-decoration: none;
}
.footer-bottom {
    background: #000;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333;
    font-size: 14px;
    color: white;
    width: 90.5%;
}
.footer-bottom a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}


.footer-contact a{
    color: white;
    text-decoration: none;
}
  
  @media (max-width:950px) {
    .dwn-container {
      flex-direction: column;
      padding: 0 5vw;
    }
    .dwn-left,.dwn-right {
      min-width: 0;
      max-width: 99vw;
      width: 100%;
      justify-content: center;
    }
    .dwn-right {
      margin-top: 38px;
      align-items: flex-start;
    }
    .dwn-mobile-img {
      width: 330px;
      margin: 0 auto;
      max-width: 97vw;
    }
    .dwn-layer-img {
      width: 78vw;
    }
  }
  
  @media (max-width:600px) {
    .dwn-title {
      font-size: 1.17rem;
    }
    .dwn-desc {
      font-size: 0.97rem;
    }
    .dwn-btn {
      font-size: 0.89rem;
      min-width: 120px;
      padding: 7px 8px;
    }
    .dwn-btn-icon {
      width: 23px;
      height: 23px;
    }
    .dwn-layer-img {
      width: 92vw;
      bottom: -2px;
    }
    .dwn-mobile-img {
      width: 98vw;
      max-width: 98vw;
    }
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .day-cards {
      flex-direction: column;
      align-items: center;
    }
    .day-card {
      max-width: 100%;
    }
  }

  /* Responsive */
  @media(max-width: 768px) {
    .enq-section {
      flex-direction: column;
      padding: 40px 5%;
    }
    .enq-form {
      grid-template-columns: 1fr;
    }
    .enq-btn {
      grid-column: span 1;
      width: 100%;
      text-align: center;
    }

    .reports-cards {
      flex: 1;
      min-width: 260px;
    }
    .reports-content{
       min-width: 260px;
    }
    .reports-illustration{
      width: 315px;
    }
  }

  /* Responsive */
  @media (max-width: 900px) {
    .reports-section {
      flex-direction: column;
      align-items: flex-start;
    }
    .reports-content {
      margin-top: 40px;
    }
    .reports-illustration {
      position: static;
      margin: 30px auto 0;
      display: block;
    }
    .reports-card:nth-child(2),
    .reports-card:nth-child(3),
    .reports-card:nth-child(4) {
      margin-left: 0;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .key-title {
      font-size: 22px;
    }
    .key-subtitle {
      font-size: 16px;
    }

    .footer {
      flex-direction: column;
      text-align: center;
      width: 65.5%;
  }
  .footer-bottom {

      width: 65.5%;
  }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .bpm-title {
      font-size: 22px;
    }
    .bpm-subtitle {
      font-size: 14px;
    }
    .enq-form-box {
      min-width: 265px;
    }
  }
  @media (max-width: 900px) {
    .why-mainrow {
      flex-direction: column;
      padding: 0 10vw;
      gap: 18px;
    }
    .why-right {
      justify-content: center;
      margin-bottom: 0;
      width: 100%;
    }
    .why-device-img {
      max-width: 250px;
      margin: 0 auto;
    }
    .why-corner-img {
      width: 78px;
      left: -10px;
      top: 6px;
    }
  }
  
  @media (max-width: 700px) {
    .why-mainrow {
      flex-direction: column;
      padding: 0 4vw;
    }
    .why-title {
      font-size: 1.05rem;
    }
    .why-device-img {
      max-width: 180px;
      margin-top: 14px;
    }
    .why-corner-img {
      width: 44px;
      left: 0;
      top: 8px;
    }
    .why-features {
      flex-direction: column;
      gap: 10px;
      padding: 0 3vw 30px 3vw;
    }
    .why-feature-card {
      min-width: 85vw;
      max-width: 99vw;
      margin: 0 auto;
    }
  }
  
  
  @media (max-width: 1024px) {
    .hr-hero {
      flex-direction: column-reverse;
      align-items: center;
      padding: 0 16px;
      min-height: unset;
    }
    .hr-content {
      max-width: 100%;
    }
    .hr-actions {
      flex-direction: column;
      gap: 13px;
      margin-bottom: 28px;
    }
    .hr-image {
      justify-content: center;
      /* margin-bottom: 30px; */
      min-width: unset; 
    }
    .hr-main-img {
      max-width: 320px;
    }
    .hr-blueprint {
      max-width: 70vw;
    }

    .footer {
      flex-direction: column;
      text-align: center;
      width: 65.5%;
  }

  .footer-right {
      text-align: center;
  }


  .footer-bottom {

      width: 65.5%;
  }
  }
  
  @media (max-width: 600px) {
    .nav-bar, .hr-hero {
      padding: 0 5vw;
    }
    .hr-title {
      font-size: 1.3rem;
    }
    .hr-main-img {
      max-width: 220px;
    }
    .footer {
      flex-direction: column;
      text-align: center;
      width: 65.5%;
  }
  .footer-bottom {
      flex-direction: column;
      text-align: center;
      width: 65.5%;
  }
  }
  