  /* Base / layout */
        :root{
          --max-width:1200px;
          --accent-blue:#7DB6D5;
          --accent-orange:#E7A555;
          --accent-yellow:#F9EA99;
          --accent-red:#9D2E2C;
          --bg:#f9fafb;
        }
        html,body{margin:0;padding:0;height:100%;}
        body{
          font-family: 'Rajdhani', sans-serif;
          background: var(--bg);
          color:#222;
          -webkit-font-smoothing:antialiased;
          -moz-osx-font-smoothing:grayscale;
          line-height:1.45;
        }
        section{padding:40px 20px;}
        .container{max-width:var(--max-width);margin:0 auto;}

/*********** NAV AREA ***********/
        .nav-bar{
          background:var(--bg);
          padding:16px 20px;
          color:#fff;
        }

        .logo{
          display:flex;
          align-items:center;
          gap:12px;
          justify-content: flex-start;
          text-align: left;
        }

        .logo img{
          width:70px;
          height:auto;
          display:block;
        }

        .logo .text-block{
          font-weight:600;
          font-size:1.05rem;
          text-align:left;
        }

/********* ABOUT AREA *********/
        .main---about .div-block-16{
          display:flex;
          align-items:center;
          justify-content:space-between;
          gap:15px;
          max-width:var(--max-width);
          margin:0 auto;
        }
        .div-block-10{
          flex:1 1 400px;
        }
        .div-block-11{
          flex:0 0 200px;
          text-align:center;
        }
        .heading{
          font-family:'Lora',serif;
          font-size:1.5rem;
          margin:0 0 0.5rem;
        }
        .paragraph-2{
          margin:0;
          color:#fff;
        }

/********* INTERFACE SECTION *********/
    .screen {
      max-width: auto;
      height: 100%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
    }

    .main-screen-1 {
      position: absolute;
      width: 70%;
      height: 85%;
      padding-left: 24px;
      padding-right: 24px;
      z-index: 1;
      display: flex;
      flex-direction: column;
    }

    .x-4 {
      position: absolute;
      top: 18px;
      right: 28px;
      width: 18px;
      height: 18px;
    }
    .menu-7,
    .notebook-pen-9,
    .archive-11,
    .thumbs-up-13 {
      position: static;
      margin-top: 18px;
      padding: 8px;
      width: 35px;
      height: 35px;
    }

    .textarea-6 {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 32px;
      height: 56px;
      background-color: rgba(255, 255, 255, 1);
      border: 0.8px solid rgba(25, 29, 49, 1);
      border-radius: 27px;
      margin-top: 0;
      z-index: 4;
    }

    .text-15 {
      flex-grow: 0;
      flex-shrink: 1;
      flex-basis: auto;
      opacity: 0.35;
      font-family: var(--font-family-roboto);
      font-weight: normal;
      font-size: 20px;
      line-height: 24px;
      text-decoration: none;
      text-transform: none;
      color: var(--text-black);
      margin-top: 15px;
    }

    @media (max-width: 1440px) {
      .main-screen-1 {
      padding-left: 24px;
      padding-right: 24px;
      }
    }

    @media (max-width: 768px) {
      .main-screen-1 {
      padding-left: 16px;
      padding-right: 16px;
      }
      .screen {
      height: 400px;
      }

    }

    /*********** SCROLLABLE CONTAINER **************/
    .scroll-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 85%;
      height: 80%;
      overflow-y: auto;   /* enables vertical scrolling */
      overflow-x: hidden;

    }

    .scroll-content {
      font-family: 'Lora', serif;
      font-size: 1rem;
      line-height: 1.5;
      color: #fffff;
    }

    /**************** CHAT CONTAINER ***************/
    .chat-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 20px;
      max-width: 100%;

      font-family: lora, sans-serif;
    }

    /* Base bubble style */
    .chat-bubble {
      max-width: 100%;
      padding: 12px 18px;
      border-radius: 18px;
      font-size: 14px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      word-wrap: break-word;
    }

    /* Agent (left) */
    .chat-bubble.agent {
      align-self: flex-start;
      background: rgba(54, 59, 87, 0.85); /* glassy effect */
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* User (right) */
    .chat-bubble.user {
      align-self: flex-end;
      background: rgba(74, 255, 178, 0.85); /* glassy effect */
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }




        /********* Features grid *********/
        .main---features h1{
          text-align:center;
          font-family:'Lora',serif;
          margin-bottom:18px;
        }
        .div-block-17{
          display: flex;
          flex-direction: row;
          flex-wrap: nowrap;
          gap: 20px;
          justify-content: center;
          align-items: center;
          max-width: var(--max-width);

        }

        .div-block-2 img{
          height:auto;
          margin:0 auto 12px;
          display:block;
        }
        .div-block-2 h3{
          font-family:'Lora',serif;
          margin:8px 0 6px;
        }
        .div-block-2 h5{
          margin:0 0 8px;
          color:#666;
          font-weight:700;}

        .div-block-2 p{
          margin:0;
          color:#444;
          font-size:0.95rem;
        }

/********* CARDS *********/
        .div-block-13{
          display:flex;
          flex-wrap:wrap;
          gap:18px;
          justify-content:center;
          max-width:var(--max-width);
          margin:0 auto;
          padding-top:10px;
        }
        .card-style{
          flex:1 1 260px;
          max-width:340px;
          padding:18px;
          border-radius:12px;
          background:rgba(255,255,255,0.85);
          box-shadow:0 6px 30px rgba(0,0,0,0.06);
          box-sizing:border-box;
        }
        .card-style .div-block-14{
          display:flex;
          align-items:center;
          gap:12px;
          margin-bottom:12px;
        }
        .card-style svg{flex-shrink:0;}

/********* FORM SECTION *********/
        .form-section{background:transparent;}
        .form-wrap{
          max-width:640px;
          margin:0 auto;
          background:#fff;
          padding:28px;
          border-radius:12px;
          box-shadow:0 8px 30px rgba(14,20,30,0.06);
          box-sizing:border-box;
        }
        .div-block-19 h1,.div-block-19 h2,.div-block-19 h3{
          margin:0 0 8px;
          font-family:'Lora',serif;}
        .div-block-19 p{
          margin:0 0 14px;
          color:#333;
        }
        .w-form label{
          display:block;
          font-family:'Lora',serif;
          font-weight:600;
          margin-top:12px;
          margin-bottom:6px;
          color:#222;
        }
        .w-form .w-input{
          width:100%;
          padding:10px;
          border:1px solid #d6d6d6;
          border-radius:8px;
          box-sizing:border-box;
          font-size:0.95rem;
        }
        .submit-button{
          display:inline-block;
          margin-top:16px;
          background:var(--accent-blue);
          color:#fff;
          border:none;
          padding:12px;
          border-radius:10px;
          cursor:pointer;
          width:100%;
          font-family:'Lora',serif;
          font-weight:700;
        }
        .submit-button:hover{background:#5d95b4;}

        .privacy{
          margin-top:14px;
          padding:14px;
          background:var(--accent-yellow);
          border:2px solid var(--accent-orange);
          border-radius:8px;
          color:#222;
        }

/********* FORM MESSAGE *********/
        .form-message{
          display:none;
          padding:12px;
          margin-top:14px;
          border-radius:8px;
          font-weight:700;
          text-align:center;
        }
        .form-message.success{
          background:#90D39B;
          color:#fff;
        }
        .form-message.error{
          background:#D86660;
          color:#fff;
        }

/********* SMALL TWEAKS *********/
        .w-layout-blockcontainer{
          max-width:var(--max-width);
          margin:20px auto;
        }
        .paragraph-4{
          color:#333;
          margin-bottom:10px;
        }

        /********* Responsive breakpoints *********/
        @media (max-width:1024px){
          .div-block-16{
            flex-direction:row;
            gap:16px;
            padding:0 16px;
          }
          .div-block-11{
            flex:0 0 150px;
          }
          .div-block-2 {flex: 1 1 calc(50% - 18px); }
          .card-style{max-width:310px;}
          .form-wrap{padding:22px;}
        }

        @media (max-width:768px){
          section{padding:20px;}
          .div-block-16{
            flex-direction:column;
            align-items:center;
            text-align:center;
            padding-bottom:6px;
          }
          .div-block-11{
            order:-1;
            margin-bottom:8px;
          }
          .div-block-2{
            max-width:100%;
            flex:1 1 100%;
          }
          .div-block-17{
            flex-direction:column;
            align-items:stretch;
          }
          .div-block-13{
            flex-direction:column;
            align-items:stretch;
          }
          .logo .text-block{
            font-size:0.95rem;
          }
          .form-wrap{
            margin:10px;
            padding:18px;
          }

        }
        @media (max-width:480px){
          .nav-bar{padding:12px;}
          .logo img{width:56px;}
          .heading{font-size:1.2rem;}
          .div-block-11 img{width:140px;}
          .form-wrap{padding:14px;margin:8px;}
          .w-form label{font-size:0.95rem;}
          .submit-button{padding:11px;font-size:0.95rem;}
        }



/* LIQUID GLASS STYLES */

.liquidGlass-wrapper {
  font-weight: 600;
  overflow: hidden;
  color: black;
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;

  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(60, 54, 87, 0.25);
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
  inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}

.liquidGlass-text {
  z-index: 3;
  font-size: 2rem;
  color: black;
}




