.section1-bg{
	width: 100%;
	height: 400px;
	position: relative;
	display: block;
}
.parallax {
  background-image: url('../../images/user-rq-bg.jpg');
  height: 400px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section1-text{
	position: absolute;
	color: white;
	padding-top: 10em;
  	display: flex;
 	 justify-content: center;
	 align-items: center;
 	 margin-top: 0%;
 	 margin-right: 50%;
 	 transform: translateX(50%);
      font-family: 'Cairo', sans-serif;
      font-size: 30px;
	  display: flex;
}

.section1-text h1{
	margin-top: -40%;
}

.section1 {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    padding: 20px 0;
}
.section1-upper-blank {
    width: 100%;
    height: 20px;
}

.main {
    width: 95%;
    height: 100%;
    margin-right: 2.5%;
    display: flex;
    gap: 50px;
}

.section1-right {
    width: 79%;
    padding: 10px;
}

.section1-left {
    width: 21%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 0.65%;
}

#category-head {
    margin-right: 5%;
    font-size: 22px;
    opacity: 0.8;
}
.category-checklist{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input[type="checkbox"] {
    accent-color: #668c0a; /* Green color */
  }
/* Request Card Styles */
.request-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.request-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.request-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.request-card img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
}

.no-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: url(images/qutoe-no-img.png);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #777;
    flex-shrink: 0;
}

.no-image img{
    width: 95%;
    margin-right: 2.5%;
}

.request-card h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.request-card .date {
    font-size: 14px;
    color: #777;
    white-space: nowrap;
}

.request-card .description {
    font-size: 16px;
    color: #555;
    margin: 15px 0;
    line-height: 1.6;
    text-align: right;
    padding: 10px;
    border-radius: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.request-card button {
    background-color: white;
    color: #668c0a;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 20%;
    font-size: 16px;
    font-weight: bolder;
    border: 1px solid #668c0a;
}

.request-card button:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main {
        flex-direction: column;
        height: auto;
    }
    
    .section1-right,
    .section1-left {
        width: 100%;
    }
    
    .request-card-header {
        flex-wrap: wrap;
    }
    
    .request-card .date {
        margin-left: 0;
        width: 100%;
    }
}