.laundry-process{
background:#f9fbff;
}

.process-card{
background:#fff;
border-radius:12px;
padding:25px 15px;
text-align:center;
position:relative;
transition:0.3s;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
height:100%;
}

.process-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.icon-box {
    background: #ceb45d !important;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto !important;
}
.icon-box i{
font-size:28px !important;
color:#fff !important;
}
.step-no {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    background: #ceb45d !important;
    color: white !important;
}

.process-card h6{
font-weight:600;
margin-top:5px;
}
.process-subtitle{
font-size:18px;
color:#555;
position:relative;
display:inline-block;
padding-bottom:10px;
margin-top:10px;
}

.process-subtitle::after{
content:"";
width:60px;
height:3px;
background:#ceb45d;
position:absolute;
left:50%;
bottom:0;
transform:translateX(-50%);
border-radius:5px;
}
.hero-slide{
position:relative;
height:90vh;
overflow:hidden;
}

.hero-img{
width:100%;
height:90vh;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
rgba(0,0,0,0.6),
rgba(0,0,0,0.4)
);
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#fff;
max-width:800px;
padding:20px;
}

.hero-title{
font-size:55px;
font-weight:700;
margin-bottom:20px;
}

.hero-subtitle{
font-size:20px;
margin-bottom:30px;
}

.hero-buttons .btn{
margin:5px;
padding:12px 30px;
font-size:16px;
}

@media (max-width:768px){

.hero-title{
font-size:32px;
}

.hero-subtitle{
font-size:16px;
}

.hero-slide,
.hero-img{
height:70vh;
}
}
.product-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.product-img{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
}

.product-img img{
    max-height:130px;
    transition:0.4s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-title{
    font-size:18px;
    font-weight:600;
    margin:10px 0 15px;
}

.product-btn{
    display:inline-block;
    padding:8px 18px;
    background:#CEB45D;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.product-btn:hover{
    background:#b79d47;
    color:#fff;
}
.footer{
background:linear-gradient(135deg,#000000,#1a1a1a);
color:#fff;
}

.footer h4{
font-weight:600;
margin-bottom:20px;
position:relative;
}

.footer h4::after{
content:"";
width:40px;
height:3px;
background:#CEB45D;
position:absolute;
left:0;
bottom:-8px;
}

.footer p{
font-size:14px;
line-height:1.8;
color:#ccc;
margin-bottom: 5px !important;
}

.footer a{
color:#ccc;
text-decoration:none;
font-size:14px;
transition:0.3s;
display:inline-block;
}

.footer a:hover{
color:#CEB45D;
transform:translateX(5px);
}

.footer-social a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#222;
margin-right:10px;
transition:0.3s;
}

.footer-social a:hover{
background:#CEB45D;
color:#fff;
transform:translateY(-4px);
}

.footer-bottom{
border-top:1px solid #333;
margin-top:30px;
padding-top:15px;
text-align:center;
font-size:14px;
color:#aaa;
}
thead {
    background-color: #CEB45D !important;
}
tr {
  color: white !important;
}
@media (max-width: 768px) {
  
    .sub-title::after {
        display: none !important;
    }
      .sub-title::before{
        display: none !important;
    }
      
}
/* Button */
.pickup-btn{
background:#CEB45D;
color:white;
padding:12px 25px;
border:none;
border-radius:30px;
font-weight:600;
transition:0.3s;
}

.pickup-btn:hover{
background:#b89c47;
}

/* Modal Design */
.pickup-modal{
border-radius:15px;
border:none;
padding:10px;
}

.modal-title{
font-weight:600;
}

/* Input Design */
.custom-input{
border-radius:10px;
padding:12px;
border:1px solid #ddd;
transition:0.3s;
}

.custom-input:focus{
border-color:#CEB45D;
box-shadow:0 0 5px rgba(206,180,93,0.5);
}

/* Submit Button */
.submit-btn{
width:100%;
background:#CEB45D;
color:white;
border:none;
padding:12px;
border-radius:30px;
font-size:16px;
font-weight:600;
transition:0.3s;
}

.submit-btn:hover{
background:#b89c47;
}
.loader-wrapper{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.tshirt-loader svg{
    width:120px;
    height:120px;
    fill:none;
    stroke:#CEB45D;
    stroke-width:6;
    stroke-dasharray:400;
    stroke-dashoffset:400;
    animation:draw 2s linear infinite;
}

@keyframes draw{
    0%{
        stroke-dashoffset:400;
    }
    100%{
        stroke-dashoffset:0;
    }
}

.loader-wrapper p{
    margin-top:20px;
    font-size:18px;
    font-weight:600;
    color:#333;
}
/* Floating Call Button */
.mobile-call-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #CEB45D;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: callpulse 1.5s infinite;
}

/* Phone Icon */
.phone-icon{
    font-size: 18px;
}

/* Pulse Animation */
@keyframes callpulse{
    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(206,180,93,0.7);
    }
    70%{
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(206,180,93,0);
    }
    100%{
        transform: scale(1);
    }
}

/* Hover Effect for Desktop */
.mobile-call-btn:hover{
    background:#b89d4f;
}
.sidebar{background:#fff;border-radius:8px;padding:15px}
.sidebar li{padding:10px;border-bottom:1px solid #ddd;cursor:pointer}
.sidebar li.active{background:#eaf6ef;font-weight:bold}
.category-btn{margin-right:5px}
.table thead{background:#1a8f3a;color:white}
.hidden{display:none}
.btn-outline-success {color:white !important;background:#CEB45D!important;border:#CEB45D!important;}
.form-container {
width: 400px;
background: #fff;
padding: 25px;
margin: 50px auto;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
                .form-container h2 {
                    text-align: center;
                    margin-bottom: 20px;
                }
                .form-container input,
                .form-container textarea {
                    width: 100%;
                    padding: 10px;
                    margin-bottom: 15px;
                    border: 1px solid #ccc;
                    border-radius: 5px;
                }
                .form-container button {
                    width: 100%;
                    padding: 10px;
                    background: #D9735F;
                    color: #fff;
                    border: none;
                    font-size: 16px;
                    border-radius: 5px;
                    cursor: pointer;
                }
                .form-container button:hover {
                    background: #D9735F;
                }
              .success-message{
                    background:#e7f9ed;
                    color:#1e7e34;
                    padding:15px;
                    margin-bottom:15px;
                    border-left:5px solid #28a745;
                    border-radius:5px;
                }
.gallery-container {
    margin: 40px auto;
    padding: 30px 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform .3s ease, box-shadow .3s ease;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 22px;
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 30px;
}

/* Load more button */
#loadMore {
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 16px;
}

/* responsive */
@media (max-width: 991px) {
    .gallery-item img { height: 220px; }
}
@media (max-width: 576px) {
    .gallery-item img { height: 180px; }
}