body { margin: 0;

}
.addtocanvas{
    position: absolute;
    width: 100%;
    background-color:#c5ced0;
}
#uploadImageButton {
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
#lineshape {
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
#splineshape {
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
#Recshape {
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #uploadImageButton::after {
    content: "Upload an image"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #uploadImageButton:hover::after {
    opacity: 1;
    visibility: visible;
    }
#lineshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
#splineshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
#Recshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
    /* Tooltip styling */
    #lineshape::after {
    content: "Draw line"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
           /* Tooltip styling */
    #splineshape::after {
    content: "Draw splline"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
   top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
 
    /* Tooltip styling */
    #Recshape::after {
    content: "Draw rectangle"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
#circleshape {
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #circleshape::after {
    content: "Draw Circle"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #circleshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
#copyshape {
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #copyshape::after {
    content: "Copy"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #copyshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
#pasteshape {
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #pasteshape::after {
    content: "Paste"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #pasteshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
#colorshape{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #colorshape::after {
    content: "Color"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #colorshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
#exportfile{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #exportfile::after {
    content: "Export To PNG"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #exportfile:hover::after {
    opacity: 1;
    visibility: visible;
    }
#printsfile{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #printsfile::after {
    content: "Print"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #printsfile:hover::after {
    opacity: 1;
    visibility: visible;
    }
/* Show tooltip on hover */
    #exportfile:hover::after {
    opacity: 1;
    visibility: visible;
    }
#Billingtable{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #Billingtable::after {
    content: "BOQ"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #Billingtable:hover::after {
    opacity: 1;
    visibility: visible;
    }
#panorama{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #panorama::after {
    content: "Move"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #panorama:hover::after {
    opacity: 1;
    visibility: visible;
    }
#deleteshape{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #deleteshape::after {
    content: "Delete"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #deleteshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
#getmeasure{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #getmeasure::after {
    content: "Measurement"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #getmeasure:hover::after {
    opacity: 1;
    visibility: visible;
    }
#zoomshape{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    /* Tooltip styling */
    #zoomshape::after {
    content: "Zoom"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:100%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #zoomshape:hover::after {
    opacity: 1;
    visibility: visible;
    }
    #TrimLine{
    position: relative;
    display: inline-block;
    cursor: pointer;
    }
    #Scaleconverter{
      position: relative;
      display: inline-block;
      cursor: pointer;
      }
      #Scaleconverter::after {
        content: "Change Scale"; /* Tooltip text */
        position: absolute;
        bottom: 100%; /* Position above the button */
        left:50%;
        top:80%;
        height:30px;
        transform: translateX(10%);
        background-color: black;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        }
        #XLayer {
      position: relative;
      display: inline-block;
      cursor: pointer;
      }
      #XLayer::after {
        content: "Create Layer"; /* Tooltip text */
        position: absolute;
        bottom: 100%; /* Position above the button */
        left:50%;
        top:80%;
        height:30px;
        transform: translateX(10%);
        background-color: black;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        }
        #Texteditor {
      position: relative;
      display: inline-block;
      cursor: pointer;
      }
      #Texteditor::after {
        content: "Text"; /* Tooltip text */
        position: absolute;
        bottom: 100%; /* Position above the button */
        left:50%;
        top:80%;
        height:30px;
        transform: translateX(10%);
        background-color: black;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        }
   #DShape {
      position: relative;
      display: inline-block;
      cursor: pointer;
      }
      #DShape::after {
        content: "3D Shape"; /* Tooltip text */
        position: absolute;
        bottom: 100%; /* Position above the button */
        left:50%;
        top:80%;
        height:30px;
        transform: translateX(10%);
        background-color: black;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        }
    /* Tooltip styling */
    #TrimLine::after {
    content: "Finishing works"; /* Tooltip text */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left:50%;
    top:80%;
    height:30px;
    transform: translateX(10%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    }
    /* Show tooltip on hover */
    #TrimLine:hover::after {
    opacity: 1;
    visibility: visible;
    }
     #DShape:hover::after {
    opacity: 1;
    visibility: visible;
    }
     #XLayer:hover::after {
    opacity: 1;
    visibility: visible;
    }
     #Texteditor:hover::after {
    opacity: 1;
    visibility: visible;
    }
    #Scaleconverter:hover::after {
      opacity: 1;
      visibility: visible;
      }
    .invoice-container {
        width: 700px;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        
    }
    .header {
        background: #002b5b;
        color: white;
        padding: 20px;
        text-align: left;
        border-radius: 8px 8px 0 0;
        display: flex;
        justify-content: space-between;
    }
    .header h1 {
        margin: 0;
    }
    .logo {
        background: white;
        color: #002b5b;
        padding: 5px 15px;
        border-radius: 5px;
        font-weight: bold;
    }
    .invoice-details {
        margin: 20px 0;
        font-size: 14px;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }
    th, td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }
    th {
        background: #002b5b;
        color: white;
    }
    .total-section {
        margin-top: 20px;
        text-align: right;
    }
    .payment-info {
        margin-top: 20px;
        font-size: 14px;
    }

    .total-box {
        background: #002b5b;
        color: white;
        padding: 5px 10px;
        display: inline-block;
        font-weight: bold;
        border-radius: 5px;
    }
    .signature {
        text-align: right;
        font-style: italic;
        margin-top: 40px;
        border-top: 1px solid black;
        width: 200px;
        float: right;
        padding-top: 5px;
    }
    #qtty{
        width:90%;
        height:500px;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
        display:none;
    }
    #qttyheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    .deplaceversdroite{
        margin-left: 20px;
      }
      #Closematerial{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      .datamaterials{
        margin:10px ;
        width: 750px;
        height: 450px;;
        overflow-y: scroll;
      }
      .datamaterials > th,td{
        text-align: center;
      }
      tr:hover{
        background-color: rgb(222, 239, 171);
      }
      .unit-price{
        width:80px;
      }
      .combinetwo{
        display: flex;
      }
      .progressbar {
        width: 60%;
        height: 450px; /* Set an explicit height */
        border: 1px solid #8f2020; /* Optional, for debugging */
        margin:10px;
    }
    #excavation{
        width:60%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
        display:none;
    }
    #excavationheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    #CloseExcavation{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      .excvaadssd{
        display: flex;
        flex-direction: column;
      }
      .nameexv{
        display: flex;
      }
      .exvacleft{
        margin-left: 10px;
        margin-top: 10px;
        width:100px;
        height:20px;
        text-align: center;
      }
      .exvacName{
        margin-left: 10px;
        margin-top: 10px;
        width:120px;
        height:20px;
        text-align: center;
      }
     .bostrapcss{
        display: flex;
     }
     .excavaremark{
        margin: 10px;
     }
     .overflow-ytable{
        width: 100%;
        height: 300px;
        overflow-y: scroll;
        border: 1px solid #ccc;
        margin-top: 10px;
     }
      .concrete-ytable{
        width: 100%;
        height: 430px;
        overflow-y: scroll;
        border: 1px solid #ccc;
        margin-top: 10px;
     }
     .buttonexcavation > button{
margin: 10px;
border-radius: 10px;
width:150px;
     }
     #showonthreejs{
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
     }
     #showonthreejsheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    #CloseConverter{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      #adddim{
        width:25%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
        display:none;
      }
      #adddimheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    #CloseDim{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      .bostrapcsswidth{
        display: flex;
        justify-content: space-between;
        margin: 10px;
      }
      .bostrapcssbutton{
        display: flex;
        justify-content: space-around;
        margin: 10px;
      }
      #dimWidths{
        width: 100px;
        height: 20px;
        text-align: center;
      }
      .Pixelsdim{
        width: 100px;
        height: 20px;
        text-align: center;
      }
      #dimHeightss{
        width: 100px;
        height: 20px;
        text-align: center;
      }
      #Getdimscale{
        width: 150px;
        height: 30px;
        margin: auto;
        border-radius: 10px;
      }
      #Getdimscale:hover{
        background-color: rgb(131, 229, 122);
      }
      #adddimeExecuted{
        width:50%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
        display: none;
      }
      #adddimeExecutedheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;
    }
    #CloseDimExecuted{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      #Closebuttontoread{
border-radius: 10px;
        width: 200px;
      }
       #Closebuttontoreadlayer{
border-radius: 10px;
        width: 100px;
      }
        #Progreeconcrete{
border-radius: 10px;
        width: 200px;
        margin-left: 20px;
      }
       #Progreeconcretelayer{
border-radius: 10px;
        width: 100px;
        margin-left: 20px;
      }
         #AddGrouplayer{
border-radius: 10px;
        width: 100px;
        margin-left: 20px;
      }
      .buttonexecuted {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
      }
       .buttonexecutedlayer {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 10px;
        margin: 10px;
      }
      #dialog {
        position: absolute;
      width: 500px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      padding: 5px;
      margin: auto;
      display: none;
      z-index: 120;
    }
    .dialog h2 {
      margin-top: 0;
    }
    .form-group {
      margin-bottom: 15px;
    }
    label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }
    input, textarea, select {
      width: 100%;
      padding: 8px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }
    textarea {
      resize: vertical;
    }
    .actions {
      text-align: right;
      margin-top: 20px;
    }
    .actions button {
      padding: 10px 20px;
      margin-left: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .cancel-btn {
      background: #ccc;
    }
    .submit-btn {
      background: #007BFF;
      color: white;
    }
    .result {
      margin-top: 10px;
      background: #e9f5e9;
      border-radius: 5px;
      font-size: 0.95em;
    }
        #dialogheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;
    }
    #Closedialogbox{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      .form-group-combine{
        display: flex;
      }
      .form-group-combine-commun{
        margin: 10px;
      }
        #exbackfiiling{
          width:300px;
          height: 300px;
        background-color: #efebeb;
        position: absolute;
      z-index: 120;
display: none;
     }
     #exbackfiilingheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;  
     }
    #closebackfiiling{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      .exdwidth{
        width:100%;
        display: flex;
      }
      .inputexd{
        width:100px;
        height: 20px;
        margin-top: 30px;
        margin-left: 10px;
      }
      .exdwidthbutton{
        margin-top: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .finlexd{ 
        width: 50%;
        height: 40px;
        border-radius: 10px;
      }

    .combinedata{
      display: flex;
      margin: 10px;
    }
    .dataconcrte{
      width:300px;
  border:solid 3px #f6afaf;
  border-radius: 10px;
    }
    .datagroupes{
      width:300px;
  border:solid 3px #f6afaf;
  border-radius: 10px;
    }
     #R_Concrete{
          /* width:300px; */
          height: 550px;
        background-color: #efebeb;
        position: absolute;
      z-index: 120;
      display: none;
     }
     #R_Concreteheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;  
     }
    #CloseR_Concrete{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
   .leftmarging{
    margin-left: 30px;
    cursor: pointer;
   }
   .leftmarging:hover{
    background-color: rgb(176, 243, 170);
   }
 .selectionlayer{
  width:150px;
  height: 30px;
  background-color: #e9f5e9;
  border: #8f2020 solid 1px;
  border-radius: 10px;
  cursor: pointer;
 }
 .seleclayerbeg{
    margin-left: 10px;
 }
 #R_Concretelayer{
          /* width:300px; */
          height: 450px;
        background-color: #efebeb;
        position: absolute;
      z-index: 120;
      display: none;
     }
     #R_Concretelayerheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;  
     }
    #CloseR_Concretelayer{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
       .concrete-ytablelayer{
        width: 100%;
        height: 230px;
        overflow-y: scroll;
        border: 1px solid #ccc;
        margin-top: 10px;
     }
     .buttonlayer{
      width:100px;
      height:30px;
      border-radius: 10px;
      margin-left: 20px;;
     }
 .buttonlayer:hover{
  background-color: rgb(176, 243, 170);
 }
 .headlayer{
  display: flex;
  justify-content:center;
  align-items: center;
  margin: 10px;
  height:30px;
 }
  .headlayer > div{
   margin-left: 2px;
   width:100px;
    height: 20px;
    text-align: center;
  }
   .datalayerX{
  display: flex;
  justify-content:center;
  align-items: center;
  margin: 10px;
  height:30px;
 }
   .datalayerX > div {
  display: inline-block; 
     margin-left:2px;
      margin-top:10px;
    width: 100px;
    height: 20px;
    text-align: center;
}
  .datalayer > div {
  display: inline-block; 
     margin-left:2px;
      margin-top:10px;
    width: 100px;
    height: 20px;
    text-align: center;
}
        #addlayernamecolor{
        width:25%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
      }
      #addlayernamecoloreader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    #CloseDimlayer{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      .Capa_1,
.svgContentlamp {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    left: 20%;
    transform: translateX(-50%);
}
.showlayer{
  margin-top: 4px;
    display: flex;
}
.combinedivlayer{
    width:300px;
      overflow-x: scroll;
        height: 200px;
          background-color: aliceblue;
          margin-top:10px;
          display: none;
}
.showlayer >div{
    margin-left: 10px
}
.showlayer >div:hover{
  background-color: rgb(176, 243, 170);
}
.createline{
  width:40px;
  height: 10px;
  background-color: violet;
  align-items: center;
  display: flex;
  justify-content: center;
}
    #dim3D{
        width:100%;
        height: 100%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
        display:none;
      }
      #dim3Dheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    #Closedim3D{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
.Combibedivprojects{
  width:100%;
  height: 500px;
  background-color: #fff;
  display: flex;
}
.Combibedivprojects td {
  border: 1px solid steelblue;
}
#Create3Dprojects{
  margin: 5px;
  border:solid 5px #bd2626;
}
.createprojects{
  height:500px;
  overflow-y: scroll;
}
.RConcrete{
  width:60px;
  height:30px;
}
.Gtbtnforvolume{
  width:50px;
  height:30px;
  border-radius: 10px;

}
.Gtbtnforvolume:hover{
  background-color: rgb(176, 243, 170);
}
 #Texteditorcgnager{
        width:40%;
        height: 60%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
        display:none;
      }
      #Texteditorcgnagerheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    #CloseTexteditorcgnager{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      #CloseTexteditorcgnager:hover{
        background-color: rgb(176, 243, 170);
      }  
         #Closeblockeditorcgnager:hover{
        background-color: rgb(176, 243, 170);
      }  
#texteditorcgnageractions{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
#areatextEditor{
  width: 100%;
  height: 80%;
  margin-top: 10px;
}
.t-text{
  width: 30%;
  height: 30px;
  margin-top: 10px;
  text-align: center;
  border-radius: 10px;
  margin-left: 20px;
}
.texteditorcgnagerbody{
  display: flex;
  justify-content: center;
  align-items: center;
}
.combine-btn > div{
  width:100px;
  height: 30px;
  background-color: #f0eded;
  margin: 20px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}
 #Blockeditorcgnager{
        width:80%;
        height: 65%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 10;
        display:none;
      }
      #Blockeditorcgnagerheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;

    }
    #Closeblockeditorcgnager{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
      .interior-finishing{
        margin: 20px;
      }
      .texteditorcgnagerbody-f{
      height:300px;
      overflow-y: scroll;
      /* display: flex; */
      }
      .Block-works{
        font-weight: bold;
        background-color: #f6afaf;
      }
 .interior-finishing th {
  width: 100px;
  height: 30px;
  background-color: rgb(204, 236, 225);
  color: #090909;
  border: 2px solid black;
  text-align: center;
  vertical-align: middle;
}
 .interior-finishing td {
  width: 100px;
  height: 30px;
  background-color: rgb(231, 240, 227);
  color: #090909;
  border: 2px solid black;
  text-align: center;
  vertical-align: middle;
}
#finiWorks{
        width:60%;
        height: 48%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 0;
        display:none;
      }
      #finiWorksheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;
    }
    .textheaderforfinishing{
      margin-left: 20px;
    }
    #CloseF-Works{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
          #CloseF-Works:hover{
            background-color: #15de4e;
          }
.combinefinishing{
  height:200px;
  /* overflow-y: scroll; */
  margin: 10px;
  
}
.combinefinishing th,
.combinefinishing td{
width: 300px;
height:30px;
background-color: #d9eed8;
color:#090909;
border: solid black 2px;
}

#adddatatoboq{
  width:100px;
  height:30px;
  border-radius: 10px;
  margin-left:40%;
  margin-top: 10px;
}
#blockw{
        width:30%;
        height: 58%;
        background-color: #e1dbdb;
        position: absolute;
        z-index: 0;
        /* display:none; */
      }
      #blockwheader{
        background-color: rgb(151, 192, 228);
      width:100%;
      height:30px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      cursor:move;
    }
       #closeblcoksworks{
        width:30px;
        height:30px;
        background-color:rgb(216, 53, 24);
        display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      }
          #closeblcoksworks:hover{
            background-color: #15de4e;
          }
          .combinedivblock{
            width:300px;
            height:300px;
            margin: 10px;
            font-size: 16px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
          }
          .lgBlock{
            font-size: 16px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-weight: bold;
          }
          .headerofblock{
                font-size: 16px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 10px;
          }
        .elevatbusiness {
    position: absolute;
    top: 100px;
    left: 50px; /* adjust horizontal position */
    color: white;
    font-family: Arial, sans-serif;
    z-index: 10; /* in front of canvas */
    width:50%;
  }
.descr{
  margin-top:40px;
}
  .elevatbusiness h1 {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }

  .elevatbusiness h2 {
    font-size: 2em;
    font-weight: 600;
    background: linear-gradient(90deg, #43cea2, #185a9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 5px 0;
  }

  .elevatbusiness h3 {
    font-size: 1.2em;
    line-height: 1.6;
color:#c5ced0;
  }
.inlineXmeter{
  display: flex;
  justify-content:center;
  align-items: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20px;
font-weight: bold;
}
.buil-in{
  width:300px;
  height:5px;
  background-color: #8f2020;
}
.footer {
    background: linear-gradient(to right, #1a1c20, #2c3e50);
    color: #ffffff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about {
    color: #a4b5c6;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a4b5c6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3498db;
    transform: translateY(-3px);
    color: #fff;
}

.footer-newsletter {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input {
    padding: 12px 15px;
    border-radius: 25px;
    border: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    padding-right: 50px;
}

.footer-newsletter input::placeholder {
    color: #a4b5c6;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border-radius: 50%;
    background: #3498db;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #2980b9;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a4b5c6;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a4b5c6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .footer-section {
        margin-bottom: 40px;
    }
}

.card{
    border-radius: 1rem;
    box-shadow: 0px -10px 0px rgb(151, 248, 6);
}
@media(max-width:767px){
    .card{
        margin: 1rem 0.7rem 1rem;
        max-width: 80vw;
    }
}
/* img{
    width: 6.2rem;
    border-radius: 15rem;
    margin: 1.3rem auto 1rem auto;
} */
.col-md-4{
    padding:0  0.5rem;
}
.card-title{
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: bold;
    font-family: 'IM Fell French Canon SC';
}
.card-text{
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    color: rgb(82, 81, 81);
    line-height: 1.4rem;
}
.footerX{
    border-top: none;
    text-align: center;
    line-height: 1.2rem;
    padding: 2rem 0 1.4rem 0;
    font-family: 'Varela Round';
}
#name{
    font-size: 0.8rem;
    font-weight: bold;
}
#position{
    font-size: 0.7rem;
}
a{
    color: rgb(151, 248, 6);
    font-weight: bold;
}
a:hover{
    color: rgb(151, 248, 6);
}
    #pricecontainer{
        width: 70%;
        height: 500px;
        background: linear-gradient(to bottom left, #33ccff 0%, #009933 100%);
        position: relative;
        top: 75px;
        left: 15%;
        border-radius: 10px;
        box-shadow: 0 0 35px brown;
    }
    #txt1{
        text-align: center;
        font-size: 30px;
        position: relative;
        top: 20px;
    }
    .parts{
        width:25%;
        height: 340px;
        background-color: white;
        display: inline-block;
        position: relative;
        left: 12.5%;
        top: 30px;
        border-radius: 8px;
        margin-bottom:20px;
    }
    .parts:hover{
        transform: scale(1.2,1.2);
        transition: 1s;
        box-shadow: 0 0 35px black;
        z-index: 99;
    }
    #part1{
        background: linear-gradient(to bottom right, darkblue 0%, #ff33cc 100%);
    }
    #part2{
        background: linear-gradient(to bottom right, gray 0%, #663300 100%);
    }
    #part3{
        background: linear-gradient(to bottom right, crimson 0%, #660066 100%);
    }
    .title{
        text-align: center;
        font-size: 25px;
        color: white;
        position:relative;
        top:20px;
    }
    .hrline{
        width: 20px;
        color: white;
        border : 3px solid white;
        border-radius: 4px;
        position: relative;
        top: 15px;
    }
    .storage, .user, .site{
        font-size: 20px;
        text-align: center;
        color: white;
        position:relative;
        top:20px;
    }
    .user{
        color: darkgray;
    }
    .price{
        font-size: 25px;
        text-align: center;
        position:relative;
        top:20px;
    }
    .buy{
        width: 70%;
        font-size: 20px;
        height: 50px;
        position: relative;
        left: 15%;
        top: 45px;
        border-radius: 28px;
        border: none;
        background-color: white;
        cursor: pointer;
    }
    .buy:hover{
        background-color: cadetblue;
        color: white;
        transition: 1s;
        box-shadow: 0 0 15px black;
    }
    .fa-arrow-circle-right{
        margin-left: 5px;
    }
    @media only screen and (max-width:980px){
        .price{
            font-size: 20px;
        }
        .buy{
            font-size: 15px;
            position: relative;
            top: 15px;
        }
        .parts{
            height: 300px;
        }
    }
    @media only screen and (max-width:790px){
        .parts{
            display: inherit;
            width: 75%;
            height: 350px;
        }
        .title{
            position: relative;
            top: 10px;
        }
        #container{
            height: 1380px;
        }
        #pricecontainer{
            height: 1250px;
        }
    }
 .contacttextarea {
    height: 300px;
}
.contact-details li {
    margin-bottom: 20px;
}
.contact-details li i {
    color: #FF6700;
    margin-right: 15px;
    border: 1px solid #EBEBEB;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.lisstyle{
  list-style: none;
}
.increaseheight{
  height:50px;
}
.main-button {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background-color: #FF6700;
    border: 2px solid transparent;
    border-radius: 40px;
    color: #0a0909;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.pull-right {
    float: right !important;
}
.main-button:hover{
  background-color:rgb(142, 142, 234);
}
.counter-text span {
    font-size: 40px;
    font-weight: 700;
    color: #f47425;
    margin-bottom: 20px;
}
.counter-text h2 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 26px;
    letter-spacing: 1px;
    margin-top: 5px;
}
.project-done-left {
    text-align: center;
}
.project-done-left h2 {
    font-size: 32px;
    line-height: 48px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
}
.counter-item {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(244, 116, 37, 0.54);
    text-align: center;
    padding: 30px 10px;
    border-radius: 0px;
}
.project-done-left p {
    color: #e4e4e4;
}
.underlinetext{
  width:200px;
  height:5px;
background-color: #c56123;
margin: auto;
}
