html, body {
    height: 100%;               /* Ensure full viewport height */
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;

    /* Fullscreen fixed background images */
    /*background-image: url("../images/globalcon.jpg");*/

    background:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), /* overlay opacity */
        url("../images/globalcon.jpg");

    background-size: cover;          /* Fill entire screen */
    background-position: center;     /* Center the image */
    background-repeat: no-repeat;    /* Prevent tiling */
    background-attachment: fixed;    /* Keep background fixed while scrolling */

    width: 100%;
    min-height: 100vh;               /* Ensure body is at least viewport height */
    overflow-x: hidden;              /* Prevent horizontal scroll */
    background-color: transparent;   /* Avoid white flash underneath */

    /* Optional: prevent mobile “bounce” flash */
    overscroll-behavior-y: contain;

    
   
}





.welcomeinfo{
/*color: rgb(124, 123, 123);*/
color: white;
text-align: center;
margin: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* ✅ soft shadow for contrast */
}
.welcomeinfo2{
/*color: rgb(124, 123, 123);*/
color: rgb(63, 60, 60);
text-align: center;
margin: 10px;

}
/*.container {
    left: 0;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    height: auto;
    
    border: 2px solid #ccc;
    padding: 10px;
    box-shadow: 2px 2px 12px #aaa;
    background-color: #eae7e7;
    
    font-family: Arial, sans-serif;
    text-align: center;
}
*/
.dashboard {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 75px;
    font-family: Arial, sans-serif;
    
}
.dashboard_heading{
color: gray;
margin: 20px;
}
.dashboard-content {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    transition: margin-left 0.5s; /* explicitly transition margin-left */

    
}

.projects_form {
    width: 60%;
    margin-top: 25px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    border: 2px solid #fff;
    
    padding: 10px;
    background-color: #fff;

}

.white-text{
    color: white;
}
.results-info{
    color: white;
    margin: 30px;    
}

span.error-text {
    color: white;
    
}


.input-field,select {
    width: 80%;
    padding: 10px;
    margin:5px auto;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;

    box-sizing: border-box;
    
}
.homepg_form {
    width: 70%;
    margin-top: 25px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    border: 1px solid #464343;
    border-radius: 10px;
    
    
    padding: 10px;
    background-color: rgba(70, 67, 67, 0.2);

}


.login_form {
    width: 70%;
    margin-top: 25px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    border: 1px solid #464343;
    border-radius: 10px;
    
    
    
    padding: 10px;
    background-color: rgba(70, 67, 67, 0.2);

}


.userreg_form  {
    width: 70%;
    margin-top: 25px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    border: 1px solid #464343;
    border-radius: 10px;
    background-color: rgba(57, 58, 58, 0.2);
    
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);

}


        td.name,
        td.title,
        td.description {
        max-width: 200px;              /* set your preferred width */
        overflow: hidden;              /* hides overflowing text */
        white-space: nowrap;           /* prevents wrapping */
        text-overflow: ellipsis;       /* adds ... for long text */
        padding: 8px 12px;
        vertical-align: middle;
        }


.profile-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #555;
}
.stats {
    width: 70%;
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    text-align: left;
    font-family: Arial, sans-serif;
}
.overflow-container {
    
    overflow-x: auto;
    /*margin: 20px auto;
    width: 90%;*/
}




.search {
    background-color: #0587f1;
    color: white;
    padding: 0 18px;
    height: 42px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    text-decoration: none;

    line-height: 42px;      /* PERFECT vertical centering */
    text-align: center;    /* Horizontal centering */
    display: inline-block; /* Keeps natural button position */
    width: 100%;
    max-width: 320px;
}


.rqstbtn{
    background-color: #e76d09;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    text-decoration: none;
}


.search:active {
    background-color: #0587f1;
}
.button {
    background-color: #0587f1;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}
.button a {
    color: white;
    text-decoration: none;
}
.button:hover {
    background-color: #1771d8;
}
.search:hover {
    background-color: #1771d8;
}
.admininputlable{
  color: white;
  margin: 10px;
}
.request-summary {
    text-align: center;
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    width: 20%;
}
.payment-btn {
                text-align: center;
                margin-top: 20px;
            }
.payment-btn button {
                background: none;
                border: none;
                cursor: pointer;
            }
.payment-btn img {
                width: 150px;
                height: auto;
            }
.payment-btn img:hover {
                transform: scale(1.05);
            }
.payment-btn img:active {
                transform: scale(0.95);
            }

.payment-success {
            background-color: #e6ffed;
            border: 1px solid #b2f5c2;
            
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            width: 70%;
            margin: 20px auto;
        }
footer {
    width: 100%;
    background-color: #303238;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* ensures it stays at bottom only after scrolling */
  }

    footer a {
      color: white;
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      color: #87cefa;
    }
  .container{
    text-align: center;
  }



    
/* Responsive Design */
    @media (max-width: 768px) {

      
      .container {
        width: 100%;
      }
      .projects_form {
        width: 90%;
      }
      .input-field {
        width: 80%;
        padding: 10px;
        margin:5px auto;
        font-size: 15px;
        cursor: pointer;
      }
      .request-summary {
        width: 80%;
      }
    }
    @media (max-width: 480px) {
      .input-field {
        width: 100%;
        padding: 10px;
        margin:5px auto;
        font-size: 15px;
      }
      .request-summary {
        width: 100%;
      }
      
    }
    @media (max-width: 360px) {
      .container {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 10px;
        padding: 5px;
      }
      .projects_form {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px;
      }
      .input-field {
        width: 100%;
        padding: 10px;
        margin:5px auto;
        font-size: 15px;
      }
      .request-summary {
        width: 100%;
        margin: 10px auto;
        padding: 8px;
      }
    }








