        :root {
            --primary: #FFC107;
            --primary-dark: #FFB300;
            --primary-light: #FFD54F;
            --white: #fff;
            --dark: #111827;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* ======================
NAVBAR
====================== */

        .clean-navbar {
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 999;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(12px);
        }

        .clean-navbar .navbar-brand {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
        }

        .clean-navbar .navbar-brand span {
            color: var(--primary);
        }

        .clean-navbar .nav-link {
            color: #222;
            font-weight: 600;
            margin: 0 12px;
            transition: .3s;
        }

        .clean-navbar .nav-link:hover {
            color: var(--primary-dark);
        }
nav{
    padding: 0px    ;
}
        .navbar-brand img{
            width: 25%;
        }

        /* /././////././/./././/.All Page Banner/././/.//././ */

        .promo-banner {
            height: 450px;
            position: relative;
            overflow: hidden;
            display: flex;
            background: url(images/banner-bg.jpg);
            background-size: cover;
            background-position: center;
               align-items: center;

        }

        /* Background Zoom */

        .promo-banner::before {

            content: '';

            position: absolute;

            inset: 0;

            background: url('/images/ban-1.jpg');
            background-size: cover;
            background-position: center;

            animation: promoZoom 20s linear infinite;

            z-index: 0;
        }

        /* Overlay */

        .promo-banner-overlay {

            position: absolute;

            inset: 0;

            background:
                linear-gradient(90deg,
                    rgba(0, 0, 0, .75),
                    rgba(0, 0, 0, .45));

            z-index: 1;
        }

        /* Content */

        .promo-banner-content {

            position: relative;

            z-index: 5;

            max-width: 650px;
        }

        .promo-banner-tag {

            display: inline-block;

            padding: 10px 22px;

            background: rgba(255, 193, 7, .15);

            border: 1px solid rgba(255, 193, 7, .35);

            color: #FFC107;

            border-radius: 50px;

            font-weight: 700;

            margin-bottom: 20px;
        }

        .promo-banner-content h2 {

            font-size: 40px;

            font-weight: 800;

            color: #fff;

            line-height: 1.1;

            margin-bottom: 20px;
        }

        .promo-banner-content p {

            color: rgba(255, 255, 255, .8);

            font-size: 18px;

            margin-bottom: 30px;
        }

        /* Button */

        .promo-banner-btn {

            display: inline-block;

            padding: 16px 35px;

            background: #FFC107;

            color: #222;

            text-decoration: none;

            font-weight: 700;

            border-radius: 50px;

            transition: .4s;
        }

        .promo-banner-btn:hover {

            transform: translateY(-5px);

            color: #222;

            box-shadow:
                0 15px 35px rgba(255, 193, 7, .4);
        }

        /* Floating Shapes */

        .promo-banner-shape {

            position: absolute;

            border-radius: 50%;

            background:
                rgba(255, 193, 7, .15);

            z-index: 2;
        }

        .shape-1 {

            width: 180px;
            height: 180px;

            top: -50px;
            right: 120px;

            animation: float1 8s infinite;
        }

        .shape-2 {

            width: 120px;
            height: 120px;

            bottom: 40px;
            right: 300px;

            animation: float2 7s infinite;
        }

        .shape-3 {

            width: 80px;
            height: 80px;

            top: 120px;
            right: 50px;

            animation: float3 6s infinite;
        }

        /* Animations */

        @keyframes promoZoom {

            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }

            100% {
                transform: scale(1);
            }

        }

        @keyframes float1 {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-25px);
            }

        }

        @keyframes float2 {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(20px);
            }

        }

        @keyframes float3 {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }

        }

        /* Responsive */

        @media(max-width:991px) {

            .promo-banner {

                height: 350px;
            }

            .promo-banner-content h2 {

                font-size: 42px;
            }

        }

        @media(max-width:767px) {

            .promo-banner {

                height: auto;

                padding: 80px 0;
            }

            .promo-banner-content h2 {

                font-size: 32px;
            }

            .promo-banner-content p {

                font-size: 16px;
            }
.navbar-toggler{
        margin-left: 82%;
    margin-top: -60px;
}
.navbar-brand img {
    width: 40%;
}
.carousel-control-prev, .carousel-control-next {
width: 20px;
}
.slider-arrow {
    width: 35px !important;
    height: 44px !important;
 }
.hero-btn {
    padding: 8px 36px !important;
}
/* .img-3 {
    bottom: 263px !important;
}
.about-company-exp {
    bottom: 216px !important;
} */
        }

        /* ======================
SLIDER
====================== */

        .hero-slider {
            height: 100vh;
            min-height: 800px;
            position: relative;
        }

        .hero-slider .carousel-item {
            height: 100vh;
            min-height: 800px;
            position: relative;
            overflow: hidden;
        }

        .hero-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: 8s ease;
        }

        .hero-slider .active img {
            transform: scale(1.12);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg,
                    rgba(0, 0, 0, .60),
                    rgba(0, 0, 0, .25));
        }

        .hero-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            z-index: 10;
            max-width: 650px;
        }

        .hero-subtitle {
            font-size: 28px;
            color: var(--primary-light);
            font-weight: 500;
            margin-bottom: 15px;
            opacity: 0;
            animation: slideUp .8s forwards;
        }

        .hero-title {
            font-size: 68px;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideUp .8s .3s forwards;
        }

        .hero-desc {
            font-size: 18px;
            color: #f1f1f1;
            margin-bottom: 35px;
            opacity: 0;
            animation: slideUp .8s .6s forwards;
        }

        .hero-btn {
            padding: 15px 38px;
            border-radius: 60px;
            font-weight: 600;
            transition: .4s;
        }

        .btn-yellow {
            background: var(--primary);
            color: #000;
        }

        .btn-yellow:hover {
            background: white;
            transform: translateY(-4px);
        }

        .btn-outline-light:hover {
            transform: translateY(-4px);
        }

        /* ======================
BOTTOM CURVE
====================== */

        .wave-shape {
            position: absolute;
            bottom: -2px;
            width: 100%;
            z-index: 20;
        }

        .wave-shape svg {
            display: block;
            width: 100%;
            height: 130px;
        }

        /* ======================
ANIMATION
====================== */

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ======================
CONTROLS
====================== */

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
        }

        .slider-arrow {
            width: 60px;
            height: 60px;
            background: rgba(255, 193, 7, .9);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-arrow:hover {
            background: white;
        }

        /* ======================
RESPONSIVE
====================== */

        @media(max-width:991px) {

            .hero-title {
                font-size: 48px;
            }

            .hero-content {
                text-align: center;
                margin: auto;
                left: 0;
                right: 0;
                padding: 0 20px;
            }

        }

        @media(max-width:576px) {

            .hero-title {
                font-size: 38px;
            }

            .hero-subtitle {
                font-size: 22px;
            }

            .hero-slider {
                min-height: 700px;
            }

            .hero-slider .carousel-item {
                min-height: 700px;
            }

        }

        /* =====================================
ABOUT COMPANY
===================================== */

        .about-company-section {
            position: relative;
            background: #fff8da;
            overflow: hidden;
        }

        /* Images Area */

        .about-company-images {
            position: relative;
            min-height: 550px;
        }

        .about-company-img {
            overflow: hidden;
            border-radius: 30px;
            position: absolute;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
        }

        .about-company-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .6s;
        }

        .about-company-img:hover img {
            transform: scale(1.1);
        }

        .img-1 {
            width: 220px;
            height: 220px;
            left: 40px;
            top: 40px;
        }

        .img-2 {
            width: 280px;
            height: 280px;
            left: 250px;
            top: 0;
            border-radius: 40px;
        }

        .img-3 {
            width: 220px;
            height: 220px;
            left: 80px;
            bottom: 40px;
        }

        /* Experience Box */

        .about-company-exp {
            width: 200px;
            height: 200px;
            background: #FFC107;
            position: absolute;
            right: 30px;
            bottom: 20px;
            border-radius: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow:
                15px 15px 0 #ffffff,
                16px 16px 0 #222;
            z-index: 5;
        }

        .about-company-exp h2 {
            font-size: 90px;
            font-weight: 800;
            color: #0f172a;
            margin: 0;
            line-height: 1;
        }

        .about-company-exp span {
            font-size: 18px;
            font-weight: 600;
            color: #111;
        }

        /* Floating Shape */

        .about-company-shape {
            width: 50px;
            height: 50px;
            background: #FFC107;
            position: absolute;
            top: 250px;
            left: 250px;
            transform: rotate(45deg);
            border-radius: 12px;
            animation: floatShape 4s ease-in-out infinite;
        }

        @keyframes floatShape {
            50% {
                transform: translateY(-15px) rotate(45deg);
            }
        }

        /* Text */

        .about-company-tag {
            color: #FFB300;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-company-title {
            font-size: 58px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.15;
            margin: 15px 0 20px;
        }

        .about-company-desc {
            color: #6b7280;
            font-size: 17px;
            line-height: 1.8;
        }

        /* Features */

        .about-company-feature {
            background: #fff;
            border: 1px solid rgba(255, 193, 7, .3);
            border-radius: 18px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: .4s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
        }

        .about-company-feature:hover {
            transform: translateY(-8px);
            border-color: #FFC107;
        }

        .about-company-feature i {
            width: 50px;
            height: 50px;
            background: #fff8db;
            color: #FFB300;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .about-company-feature span {
            font-weight: 600;
            color: #111827;
        }

        /* Button */

        .about-company-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #FFC107;
            color: #111;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 30px;
            transition: .4s;
        }

        .about-company-btn:hover {
            transform: translateY(-5px);
            background: #FFB300;
            color: #fff;
        }

        /* Responsive */

        @media(max-width:991px) {

            .about-company-images {
                min-height: 700px;
            }

            .about-company-title {
                font-size: 42px;
            }

        }

        @media(max-width:767px) {

            .about-company-images {
                min-height: 435px;
            }

            .img-1 {
                width: 180px;
                height: 180px;
                left: 0;
            }

            .img-2 {
                width: 220px;
                height: 220px;
                left: 140px;
            }

            .img-3 {
                width: 180px;
                height: 180px;
                left: 20px;
            }

            .about-company-exp {
                width: 150px;
                height: 150px;
            }

            .about-company-exp h2 {
                font-size: 60px;
            }

            .about-company-title {
                font-size: 34px;
            }
                .about-pg-blob {
        height: 215px !important;
    }
        .about-pg-img-wrap {
        min-height: 293px !important;
    }

        }


        .our-srvc-sec {
            padding: 100px 0;
            background: #fff;
            position: relative;
        }

        .our-srvc-sec::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/images/abt-bg.png');
            background-size: 100% 100%;
            opacity: 0.3;
        }

        .our-srvc-sec .container {
            position: relative;
            z-index: 2;
        }

        .our-srvc-sec-subtitle {
            color: #ff9800;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .our-srvc-sec-title {
            font-size: 48px;
            font-weight: 800;
            color: #111827;
            margin: 10px 0;
        }

        .our-srvc-sec-desc {
            color: #6b7280;
        }

        .our-srvc-sec-card {
            background: #fff;
            padding: 35px;
            border-radius: 10px 10px 70px 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
            border-bottom: 3px solid #FFC107;
            transition: .4s;
            height: 100%;
        }

        .our-srvc-sec-card:hover {
            transform: translateY(-10px);
        }

        .our-srvc-sec-icon {
            width: 65px;
            height: 65px;
            background: #FFC107;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .our-srvc-sec-icon i {
            color: #fff;
            font-size: 28px;
        }

        .our-srvc-sec-card h4 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .our-srvc-sec-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .our-srvc-sec-card a {
            display: inline-block;
            background: #FFC107;
            color: #111;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
        }

        .our-srvc-sec-work-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
        }

        .our-srvc-sec-title-sm {
            font-size: 40px;
            font-weight: 800;
            margin: 10px 0 20px;
        }

        .our-srvc-sec-step {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
        }

        .step-icon {
            width: 55px;
            height: 55px;
            background: #FFC107;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-icon i {
            color: #111;
            font-size: 20px;
        }

        .our-srvc-sec-step h5 {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .our-srvc-sec-step p {
            color: #6b7280;
            margin: 0;
        }

        @media(max-width:991px) {

            .our-srvc-sec-title {
                font-size: 34px;
            }

            .our-srvc-sec-title-sm {
                font-size: 30px;
                margin-top: 30px;
            }

        }

        /* ===================================
FOOTER
=================================== */

        .clean-footer {
            position: relative;
        }

        /* Wave */

        .clean-footer::before {
            content: '';
            position: absolute;
            top: -90px;
            left: 0;
            width: 100%;
            height: 120px;

            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23ffc107' d='M0,96L80,90.7C160,85,320,75,480,80C640,85,800,107,960,106.7C1120,107,1280,85,1360,74.7L1440,64L1440,200L1360,200C1280,200,1120,200,960,200C800,200,640,200,480,200C320,200,160,200,80,200L0,200Z'/%3E%3C/svg%3E");

            background-size: cover;
        }

        /* Top Strip */

        .clean-footer-top {
            background: #FFC107;
            padding: 60px 0;
        }

        .clean-footer-contact {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .clean-footer-contact i,
        .clean-footer-contact .icon {
            width: 55px;
            height: 55px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FF9800;
            font-size: 22px;
        }

        .clean-footer-contact h5,
        .clean-footer-contact h4 {
            margin: 0;
            font-weight: 700;
        }

        .clean-footer-contact p,
        .clean-footer-contact span {
            margin: 0;
        }

        /* Main Footer */

        .clean-footer-main {
            background: #0f172a;
            color: #fff;
            padding: 80px 0 50px;
        }

        .clean-footer-main h3 {
            margin-bottom: 25px;
            font-size: 24px;
            font-weight: 700;
        }

        .clean-footer-main p {
            color: #cbd5e1;
        }

        .clean-footer-main ul {
            list-style: none;
            padding: 0;
        }

        .clean-footer-main ul li {
            margin-bottom: 12px;
        }

        .clean-footer-main ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: .3s;
        }

        .clean-footer-main ul li a:hover {
            color: #FFC107;
            padding-left: 5px;
        }

        /* Social */

        .clean-footer-social {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .clean-footer-social a {
            width: 45px;
            height: 45px;
            background: #1e293b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: .4s;
        }

        .clean-footer-social a:hover {
            background: #FFC107;
            color: #111;
        }

        /* Newsletter */

        .clean-footer-newsletter {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .clean-footer-newsletter input {
            flex: 1;
            border: none;
            border-radius: 10px;
            padding: 14px 20px;
        }

        .clean-footer-newsletter button {
            background: #FFC107;
            border: none;
            padding: 14px 25px;
            border-radius: 10px;
            font-weight: 700;
        }

        /* Bottom */

        .clean-footer-bottom {
            background: #08111f;
            color: #fff;
            text-align: center;
            padding: 20px;
            font-size: 14px;
        }

        /* Mobile */

        @media(max-width:991px) {

            .clean-footer-contact {
                margin-bottom: 25px;
            }

            .clean-footer-main .row>div {
                margin-bottom: 35px;
            }

            .clean-footer-newsletter {
                flex-direction: column;
            }

        }

        /* /../././././/./././.about-us page/././/./././././././. */
        .about-pg {
            background: #fffef8;
            overflow: hidden;
            position: relative;
        }

        .about-pg-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 193, 7, .15);
            color: #b8860b;
            padding: 10px 18px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-pg-title {
            font-size: 52px;
            font-weight: 800;
            color: #222;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .about-pg-desc {
            color: #666;
            font-size: 17px;
            line-height: 1.9;
        }

        .about-pg-feature {
            display: flex;
            gap: 15px;
            padding: 20px;
            border-radius: 15px;
            transition: .4s;
        }

        .about-pg-feature:hover {
            transform: translateY(-8px);
            background: #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        }

        .about-pg-feature i {
            color: #FFC107;
            font-size: 22px;
            margin-top: 5px;
        }

        .about-pg-feature h5 {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .about-pg-feature p {
            color: #777;
            margin: 0;
        }

        .about-pg-progress-wrap {
            margin-top: 10px;
            margin-bottom: 40px;
        }

        .about-pg-progress-item span {
            font-weight: 600;
        }

        .about-pg .progress {
            height: 10px;
            border-radius: 50px;
            overflow: visible;
            background: #e9ecef;
        }

        .about-pg .progress-bar {
            background: #FFC107;
            border-radius: 50px;
            position: relative;
        }

        .about-pg .progress-bar::after {
            content: '';
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #FFC107;
            position: absolute;
            right: 0;
            top: -4px;
        }

        .about-pg-bar1 {
            width: 95%;
            animation: aboutPgProgress1 2s ease;
        }

        .about-pg-bar2 {
            width: 98%;
            animation: aboutPgProgress2 2s ease;
        }

        @keyframes aboutPgProgress1 {
            from {
                width: 0;
            }

            to {
                width: 95%;
            }
        }

        @keyframes aboutPgProgress2 {
            from {
                width: 0;
            }

            to {
                width: 98%;
            }
        }

        .about-pg-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #FFC107;
            color: #222;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            position: relative;
            overflow: hidden;
            transition: .4s;
        }

        .about-pg-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: rgba(255, 255, 255, .4);
            transform: skewX(-25deg);
        }

        .about-pg-btn:hover::before {
            animation: shine .8s linear;
        }

        .about-pg-btn:hover {
            color: #222;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 193, 7, .4);
        }

        @keyframes shine {
            100% {
                left: 150%;
            }
        }

        /* IMAGE SECTION */

        .about-pg-img-wrap {
            position: relative;
            min-height: 650px;
        }

        .about-pg-blob {
            position: absolute;
    width: 639px;
    height: 489px;
    right: 0;
    top: 50px;
    background: #fff3cd;
    border-radius: 40% 60% 65% 35% / 45% 40% 60% 55%;
    animation: blobMove 8s infinite ease-in-out;
        }

        @keyframes blobMove {

            0%,
            100% {
                transform: rotate(0deg);
            }

            50% {
                transform: rotate(10deg);
            }
        }

        .about-pg-main-img {
            position: absolute;
            right: 20px;
            top: 90px;
            z-index: 2;
            animation: floatImg 5s infinite ease-in-out;
        }

        .about-pg-main-img img {
            width: 100%;
            border-radius: 35% 65% 40% 60%;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
            transition: .5s;
        }

        .about-pg-main-img:hover img {
            transform: scale(1.05);
        }

        .about-pg-small-img {
      position: absolute;
    right: 0;
    bottom: 74px;
    width: 203px;
    z-index: 3;
    animation: floatImg 4s infinite ease-in-out;
        }

        .about-pg-small-img img {
            width: 100%;
            border-radius: 50%;
            border: 8px solid #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
        }

        @keyframes floatImg {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .about-pg-exp {
            position: absolute;
            top: 10px;
            left: 20px;
            width: 180px;
            height: 180px;
            background: #FFC107;
            border-radius: 50%;
            z-index: 5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            animation: pulse 2.5s infinite;
        }

        .about-pg-exp h2 {
            font-size: 55px;
            font-weight: 800;
            margin: 0;
        }

        .about-pg-exp span {
            font-weight: 600;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, .6);
            }

            70% {
                box-shadow: 0 0 0 25px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .about-pg-title {
                font-size: 38px;
            }

            .about-pg-img-wrap {
                min-height: 500px;
                margin-top: 60px;
            }

            .about-pg-main-img {
                width: 100%;
                position: relative;
                right: auto;
                top: auto;
            }

            .about-pg-blob {
                width: 100%;
                height: 400px;
            }

            .about-pg-small-img {
                width: 150px;
            }

            .about-pg-exp {
                width: 130px;
                height: 130px;
            }

            .about-pg-exp h2 {
                font-size: 38px;
            }
        }

        @media(max-width:576px) {

            .about-pg-title {
                font-size: 30px;
            }

            .about-pg-btn {
                width: 100%;
                text-align: center;
            }

            .about-pg-img-wrap {
                min-height: 420px;
            }

            .about-pg-small-img {
                width: 120px;
            }
        }

        /* /././././././ work process section/././././ */
        .work-prcss {
            padding: 100px 0;
            background: url(/images/tex1.jpg) no-repeat;
            background-size:100% 100%;
            overflow: hidden;
            position: relative;
        }

        /* Decorative Shapes */

        .work-prcss::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 193, 7, .08);
            border-radius: 50%;
            top: -150px;
            left: -150px;
        }

        .work-prcss::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(255, 193, 7, .08);
            border-radius: 50%;
            bottom: -120px;
            right: -120px;
        }

        /* Subtitle */

        .work-prcss-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 193, 7, .15);
            color: #d49a00;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .work-prcss-subtitle i {
            color: #FFC107;
        }

        /* Heading */

        .work-prcss-title {
            font-size: 56px;
            font-weight: 800;
            color: #222;
            margin-bottom: 20px;
        }

        .work-prcss-desc {
            color: #666;
            font-size: 18px;
            line-height: 1.8;
        }

        /* Card */

        .work-prcss-card {
            position: relative;
            text-align: center;
            padding: 20px;
            transition: .4s;
        }

        .work-prcss-card:hover {
            transform: translateY(-10px);
        }

        /* Number Shape */

        .work-prcss-number {
            width: 110px;
            height: 110px;
            margin: auto;
            margin-bottom: 25px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 42px;
            font-weight: 800;
            color: #222;

            background: #fff4cc;
            border: 2px dashed #FFD54F;

            border-radius:
                35% 65% 60% 40% / 45% 35% 65% 55%;

            animation: work-prcss-float 4s ease-in-out infinite;
            transition: .4s;
        }

        .work-prcss-card:hover .work-prcss-number {
            background: #FFC107;
            color: #fff;
            transform: scale(1.08) rotate(8deg);
        }

        /* Text */

        .work-prcss-card h4 {
            font-size: 30px;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
        }

        .work-prcss-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Connector */

        .work-prcss-connector {
            position: absolute;
            top: 55px;
            right: -75px;
            width: 120px;
            height: 3px;
            border-top: 3px dashed #FFC107;
        }

        .work-prcss-connector::after {
            content: '➜';
            position: absolute;
            right: -10px;
            top: -22px;
            color: #FFC107;
            font-size: 28px;
            font-weight: bold;
            animation: work-prcss-arrow 2s infinite ease-in-out;
        }

        @keyframes work-prcss-arrow {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(8px);
            }

        }

        @keyframes work-prcss-float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

        }

        /* Responsive */

        @media(max-width:1199px) {

            .work-prcss-connector {
                width: 90px;
                right: -55px;
            }

        }

        @media(max-width:991px) {

            .work-prcss {
                padding: 80px 0;
            }

            .work-prcss-title {
                font-size: 42px;
            }

            .work-prcss-connector {
                display: none;
            }

        }

        @media(max-width:767px) {

            .work-prcss-title {
                font-size: 34px;
            }

            .work-prcss-desc {
                font-size: 16px;
            }

            .work-prcss-number {
                width: 90px;
                height: 90px;
                font-size: 34px;
            }

            .work-prcss-card h4 {
                font-size: 24px;
            }

        }

        /* //././././.trust section/././././. */
        .trust-sec {
            position: relative;
            padding: 50px 0;
            overflow: hidden;
            background: url('images/laundry-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .trust-sec-overlay {
            position: absolute;
            inset: 0;

            background:
                linear-gradient(135deg,
                    rgba(0, 0, 0, .75),
                    rgba(0, 0, 0, .55));
        }

        .trust-sec .container {
            position: relative;
            z-index: 2;
        }

        /* Heading */

        .trust-sec-subtitle {
            display: inline-block;

            padding: 10px 24px;

            background: rgba(255, 193, 7, .15);

            border: 1px solid rgba(255, 193, 7, .35);

            color: #FFC107;

            border-radius: 50px;

            font-weight: 700;

            margin-bottom: 20px;
        }

        .trust-sec-title {
            color: #fff;

            font-size: 55px;

            font-weight: 800;

            margin-bottom: 15px;
        }

        .trust-sec-desc {
            color: rgba(255, 255, 255, .75);

            font-size: 18px;

            max-width: 700px;

            margin: auto;
        }

        /* Card */

        .trust-sec-card {

            position: relative;

            padding: 50px 35px;

            text-align: center;

            border-radius: 25px;

            backdrop-filter: blur(14px);

            background: rgba(255, 255, 255, .08);

            border: 1px solid rgba(255, 255, 255, .15);

            transition: .5s;

            overflow: hidden;
        }

        .trust-sec-card::before {

            content: '';

            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 5px;

            background: #FFC107;

            transform: scaleX(0);

            transition: .5s;
        }

        .trust-sec-card:hover::before {
            transform: scaleX(1);
        }

        .trust-sec-card:hover {

            transform: translateY(-15px);

            background: rgba(255, 255, 255, .12);

            box-shadow:
                0 20px 60px rgba(255, 193, 7, .15);
        }

        /* Icon */

        .trust-sec-icon {
width: 80px;
    height: 80px;
    margin: auto auto 25px;
    border-radius: 23%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    background: linear-gradient(135deg, #FFC107, #ffdb6d);
    box-shadow: 0 10px 30px rgba(255, 193, 7, .35);
    animation: trustFloat 4s ease-in-out infinite;
        }

        .trust-sec-card:hover .trust-sec-icon {

            transform: rotate(12deg) scale(1.1);

            transition: .5s;
        }

        /* Text */

        .trust-sec-card h3 {

            color: #fff;

            font-size: 28px;

            font-weight: 700;

            margin-bottom: 15px;
        }

        .trust-sec-card p {

            color: rgba(255, 255, 255, .80);

            line-height: 1.8;

            margin: 0;
        }

        /* Animation */

        @keyframes trustFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        /* Mobile */

        @media(max-width:991px) {

            .trust-sec {
                padding: 80px 0;
                background-attachment: scroll;
            }

            .trust-sec-title {
                font-size: 42px;
            }

        }

        @media(max-width:767px) {

            .trust-sec-title {
                font-size: 32px;
            }

            .trust-sec-card {
                padding: 40px 25px;
            }

            .trust-sec-icon {
                width: 80px;
                height: 80px;
                font-size: 38px;
            }

            .trust-sec-card h3 {
                font-size: 24px;
            }

        }


        /* ././/././././././/.services page/././././././././/. */

        .service-page {
            padding: 100px 0;
            background: #fffef8;
        }

        /* Heading */

        .service-page-subtitle {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(255, 193, 7, .15);
            color: #d39b00;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .service-page-title {
            font-size: 55px;
            font-weight: 800;
            color: #222;
            margin-bottom: 15px;
        }

        .service-page-desc {
            color: #666;
            font-size: 18px;
        }

        /* Card */

        .service-page-card {
            position: relative;
            background: #fff;
            border-radius: 25px;
            overflow: hidden;
            transition: .5s;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
        }

        .service-page-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(255, 193, 7, .18);
        }

        /* Image */

        .service-page-image {
            height: 260px;
            overflow: hidden;
        }

        .service-page-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .8s;
        }

        .service-page-card:hover .service-page-image img {
            transform: scale(1.12);
        }

        /* Icon */

        .service-page-icon {
            position: absolute;
            left: 30px;
            top: 215px;

            width: 90px;
            height: 90px;

            border-radius: 50%;

            background: #FFC107;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 38px;

            border: 6px solid #fff;

            box-shadow: 0 10px 30px rgba(255, 193, 7, .4);

            transition: .5s;

            z-index: 5;
        }

        .service-page-card:hover .service-page-icon {
            transform: rotate(12deg) scale(1.1);
        }

        /* Content */

        .service-page-content {
            padding: 70px 30px 30px;
        }

        .service-page-content h3 {
            font-size: 32px;
            font-weight: 700;
            color: #111;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .service-page-content p {
            color: #666;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .service-page-content a {
            text-decoration: none;
            color: #FFC107;
            font-weight: 700;
            transition: .3s;
        }

        .service-page-content a:hover {
            padding-left: 8px;
        }

        /* Responsive */

        @media(max-width:991px) {

            .service-page {
                padding: 80px 0;
            }

            .service-page-title {
                font-size: 42px;
            }

            .service-page-content h3 {
                font-size: 26px;
            }

        }

        @media(max-width:767px) {

            .service-page-title {
                font-size: 32px;
            }

            .service-page-desc {
                font-size: 16px;
            }

            .service-page-image {
                height: 220px;
            }

            .service-page-icon {
                width: 75px;
                height: 75px;
                font-size: 30px;
                top: 185px;
            }

            .service-page-content {
                padding: 60px 25px 25px;
            }

        }

        /* /././././././/.//.pricing page/././././././././/. */

        .price-page {
            padding: 100px 0;
            background:
                linear-gradient(to bottom,
                    #fffef8,
                    #fffdf4);
        }

        /* Heading */

        .price-page-subtitle {
            display: inline-block;
            padding: 10px 24px;

            background: rgba(255, 193, 7, .15);

            color: #d49a00;

            border-radius: 50px;

            font-weight: 700;

            margin-bottom: 20px;
        }

        .price-page-title {
            font-size: 55px;
            font-weight: 800;
            color: #222;
            margin-bottom: 15px;
        }

        .price-page-desc {
            color: #666;
            font-size: 18px;
        }

        /* Card */

        .price-page-card {
            background: #fff;

            border-radius: 25px;

            padding: 35px;

            position: relative;

            overflow: hidden;

            transition: .5s;

            height: 100%;

            box-shadow:
                0 15px 40px rgba(0, 0, 0, .06);
        }

        .price-page-card:hover {

            transform: translateY(-12px);

            box-shadow:
                0 25px 60px rgba(255, 193, 7, .18);
        }

        /* Top Border */

        .price-page-card::before {

            content: '';

            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 5px;

            background: #FFC107;
        }

        /* Featured Card */

        .price-page-card.featured {

            border: 2px solid #FFC107;
        }

        .price-page-badge {

            position: absolute;

            top: 18px;
            right: 18px;

            background: #FFC107;

            color: #222;

            font-size: 13px;

            font-weight: 700;

            padding: 8px 15px;

            border-radius: 30px;
        }

        /* Header */

        .price-page-head {

            display: flex;

            align-items: center;

            gap: 18px;

            margin-bottom: 30px;
        }

        .price-page-icon {

            width: 70px;
            height: 70px;

            border-radius: 50%;

            background: #FFF3CD;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 30px;
        }

        .price-page-head h3 {

            font-size: 30px;
            font-weight: 700;
            margin: 0;
        }

        /* Price List */

        .price-page-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .price-page-card ul li {

            display: flex;
            justify-content: space-between;
            align-items: center;

            padding: 16px 0;

            border-bottom: 1px dashed #e5e5e5;
        }

        .price-page-card ul li:last-child {
            border: none;
        }

        .price-page-card ul li span {

            color: #555;
            font-size: 17px;
        }

        .price-page-card ul li strong {

            color: #FFC107;
            font-size: 18px;
            font-weight: 800;
        }

        /* Responsive */

        @media(max-width:991px) {

            .price-page {
                padding: 80px 0;
            }

            .price-page-title {
                font-size: 42px;
            }

        }

        @media(max-width:767px) {

            .price-page-title {
                font-size: 32px;
            }

            .price-page-card {
                padding: 25px;
            }

            .price-page-head h3 {
                font-size: 24px;
            }

        }


        /* /..//././././.contact page/./././././/./././. */

        .cont-page {
            background: #fffef8;
            padding: 100px 0;
        }

        /* Cards */

        .cont-page-info-card {
            background: #fff;
            border-radius: 25px;
            text-align: center;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: .4s;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
            height: 100%;
        }

        .cont-page-info-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(255, 193, 7, .18);
        }

        .cont-page-info-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 5px;
            background: #FFC107;
        }

        .cont-page-icon {
            width: 90px;
            height: 90px;
            margin: auto auto 25px;
            border-radius: 50%;
            background: #FFF3CD;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: #FFC107;
        }

        .cont-page-info-card h5 {
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 2px;
            color: #888;
            margin-bottom: 15px;
        }

        .cont-page-info-card h4 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cont-page-info-card p {
            margin: 0;
            color: #666;
        }

        /* Left Content */

        .cont-page-subtitle {
            display: inline-block;
            padding: 10px 22px;
            background: rgba(255, 193, 7, .15);
            color: #d89a00;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cont-page-title {
            font-size: 58px;
            font-weight: 800;
            color: #222;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .cont-page-desc {
            color: #666;
            font-size: 18px;
            line-height: 1.8;
        }

        .cont-page-rating {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 2px solid #eee;
        }

        .cont-page-rating h3 {
            font-size: 36px;
            font-weight: 800;
        }

        .cont-page-stars {
            color: #FFC107;
            font-size: 28px;
            letter-spacing: 4px;
        }

        /* Form */

        .cont-page-form-wrap {
            background: #fff;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
        }

        .cont-page-form-wrap .form-control {
            height: 60px;
            border-radius: 50px;
            border: 2px solid #eee;
            padding: 15px 25px;
            box-shadow: none;
        }

        .cont-page-form-wrap textarea.form-control {
            height: auto;
            border-radius: 25px;
        }

        .cont-page-form-wrap .form-control:focus {
            border-color: #FFC107;
            box-shadow: 0 0 0 4px rgba(255, 193, 7, .15);
        }

        .cont-page-btn {
            border: none;
            background: #FFC107;
            color: #222;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            transition: .4s;
        }

        .cont-page-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(255, 193, 7, .35);
        }

        /* Responsive */

        @media(max-width:991px) {

            .cont-page-title {
                font-size: 42px;
            }

        }

        @media(max-width:767px) {

            .cont-page {
                padding: 80px 0;
            }

            .cont-page-title {
                font-size: 34px;
            }

            .cont-page-form-wrap {
                padding: 25px;
            }

        }

        .cont-page-location {
            padding: 100px 0;
            background: #fffef8;
        }

        /* Heading */

        .cont-page-location-subtitle {
            display: inline-block;
            padding: 10px 22px;
            background: rgba(255, 193, 7, .15);
            color: #d89a00;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cont-page-location-title {
            font-size: 55px;
            font-weight: 800;
            color: #222;
            margin-bottom: 15px;
        }

        .cont-page-location-desc {
            color: #666;
            font-size: 18px;
        }

        /* Location List */

        .cont-page-location-list {
            background: #fff;
            border-radius: 30px;
            padding: 15px;
            height: 100%;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
        }

        .cont-page-location-item {
            display: flex;
            justify-content: space-between;
            align-items: center;

            padding: 22px;

            border-radius: 18px;

            cursor: pointer;

            transition: .4s;

            margin-bottom: 10px;
        }

        .cont-page-location-item:last-child {
            margin-bottom: 0;
        }

        .cont-page-location-item:hover {
            background: #fff8df;
        }

        .cont-page-location-item.active {
            background: #FFC107;
        }

        .cont-page-location-item.active h5,
        .cont-page-location-item.active p {
            color: #222;
        }

        .cont-page-location-item h5 {
            font-weight: 700;
            margin-bottom: 8px;
            color: #222;
        }

        .cont-page-location-item p {
            margin: 0;
            color: #666;
        }

        .cont-page-location-item span {
            width: 45px;
            height: 45px;

            border-radius: 50%;

            background: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            color: #FFC107;
        }

        /* Map */

        .cont-page-map-wrap {
            overflow: hidden;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
            height: 100%;
        }

        .cont-page-map-wrap iframe {
            width: 100%;
            height: 600px;
            border: none;
        }

        /* Responsive */

        @media(max-width:991px) {

            .cont-page-location-title {
                font-size: 42px;
            }

            .cont-page-map-wrap iframe {
                height: 450px;
            }

        }

        @media(max-width:767px) {

            .cont-page-location {
                padding: 80px 0;
            }

            .cont-page-location-title {
                font-size: 34px;
            }

            .cont-page-map-wrap iframe {
                height: 350px;
            }

        }
/* =============================================
   USER AUTH & DASHBOARD STYLES
   ============================================= */

/* Nav additions */
.nav-user-btn { display: flex; align-items: center; gap: 6px; }
.nav-login-btn { font-weight: 600 !important; }
.nav-cta-btn {
    background: var(--primary); color: #111 !important; padding: 8px 20px !important;
    border-radius: 25px; font-weight: 700; margin-left: 8px; transition: .3s;
    text-decoration: none;
}
.nav-cta-btn:hover { background: var(--primary-dark); }
.dropdown-menu { background: #fff; border-radius: 10px; border: none; box-shadow: 0 8px 30px rgba(0,0,0,0.12); padding: 6px; }
.dropdown-item { border-radius: 6px; padding: 8px 14px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.dropdown-item i { width: 16px; }
.dropdown-item:hover { background: #f5f5f5; }

/* Auth Section */
.auth-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex; align-items: center; padding: 100px 0 60px;
}
.auth-card {
    background: #fff; border-radius: 16px; padding: 40px;
    max-width: 480px; width: 100%; margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.auth-logo { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 16px; }
.auth-logo i { color: var(--primary); margin-right: 6px; }
.auth-card h2 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.auth-sub { color: #666; margin-bottom: 24px; font-size: 14px; }
.auth-alert { background: #fee2e2; color: #dc2626; border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; font-size: 14px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.auth-field label { font-size: 13px; font-weight: 600; color: #333; }
.auth-field input, .auth-field select, .auth-field textarea {
    border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 10px 14px;
    font-size: 14px; outline: none; transition: .3s; width: 100%; font-family: 'Poppins', sans-serif;
}
.auth-field input:focus, .auth-field select:focus, .auth-field textarea:focus { border-color: var(--primary); }
.auth-field .opt { color: #999; font-size: 11px; font-weight: 400; }
.auth-remember { margin-bottom: 16px; font-size: 13px; }
.auth-btn {
    width: 100%; background: var(--primary); color: #111; border: none;
    border-radius: 8px; padding: 12px; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: .3s;
}
.auth-btn:hover { background: var(--primary-dark); }
.auth-switch { text-align: center; margin-top: 16px; font-size: 13px; color: #666; }
.auth-switch a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }
.auth-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* User Dashboard */
.user-dashboard-section { padding: 100px 0 60px; min-height: 100vh; background: #f8fafc; }
.udash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.udash-header h2 { font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.udash-header p { color: #666; font-size: 14px; }
.udash-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.udash-alert.success { background: #dcfce7; color: #166534; }
.udash-alert.error   { background: #fee2e2; color: #dc2626; }
.udash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.udash-stat { background: #fff; border-radius: 12px; padding: 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.udash-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.udash-stat h3 { font-size: 24px; font-weight: 700; margin-bottom: 2px; }
.udash-stat p { color: #666; font-size: 13px; }
.udash-section { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.udash-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.udash-section-head h3 { font-size: 16px; font-weight: 600; }
.udash-section-head a { color: var(--primary-dark); text-decoration: none; font-size: 13px; font-weight: 600; }
.udash-orders-table { overflow-x: auto; }
.udash-orders-table table { width: 100%; border-collapse: collapse; }
.udash-orders-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #666; padding: 8px 12px; text-align: left; border-bottom: 2px solid #f1f5f9; }
.udash-orders-table td { padding: 10px 12px; border-bottom: 1px solid #f1f5f9; font-size: 13px; }
.udash-empty { text-align: center; padding: 40px 20px; color: #999; }
.udash-empty i { font-size: 40px; margin-bottom: 12px; display: block; opacity: 0.4; }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-warning { background: #fef3c7; color: #d97706; }
.badge-success { background: #dcfce7; color: #166534; }
.badge-danger  { background: #fee2e2; color: #dc2626; }
.badge-info    { background: #e0f2fe; color: #0369a1; }
.badge-primary { background: #ede9fe; color: #7c3aed; }
.badge-secondary { background: #f1f5f9; color: #64748b; }
.btn-view { padding: 4px 12px; background: #f1f5f9; border-radius: 6px; color: #333; text-decoration: none; font-size: 12px; font-weight: 600; }
.btn-view:hover { background: var(--primary); color: #111; }
.btn-back { padding: 8px 16px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 8px; color: #333; text-decoration: none; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.pagi-wrap { margin-top: 16px; }
.cancel-btn { width: 100%; background: #fee2e2; color: #dc2626; border: none; border-radius: 8px; padding: 10px; cursor: pointer; font-weight: 600; font-size: 14px; margin-top: 12px; }
.cancel-btn:hover { background: #dc2626; color: #fff; }

/* Book Order */
.book-order-section { padding: 100px 0 60px; min-height: 100vh; background: #f8fafc; }
.book-order-header { text-align: center; margin-bottom: 32px; }
.book-order-header h2 { font-size: 28px; font-weight: 700; }
.book-order-header p { color: #666; }
.book-step { background: #fff; border-radius: 14px; padding: 28px; margin-bottom: 24px; box-shadow: 0 2px 14px rgba(0,0,0,0.07); position: relative; }
.book-step-num { width: 32px; height: 32px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; margin-bottom: 14px; }
.book-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.service-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.service-card input[type=radio] { display: none; }
.service-card-inner { border: 2px solid #e2e8f0; border-radius: 12px; padding: 20px 16px; text-align: center; cursor: pointer; transition: .3s; }
.service-card-inner i { font-size: 28px; color: var(--primary); margin-bottom: 8px; display: block; }
.service-card-inner h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.service-card-inner p { font-size: 12px; color: #888; }
.service-card input:checked + .service-card-inner { border-color: var(--primary); background: #fffbeb; }
.book-loader { color: #888; font-size: 14px; padding: 20px 0; }
.book-empty { color: #888; font-size: 14px; }
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.item-card { border: 1.5px solid #e2e8f0; border-radius: 10px; padding: 14px; display: flex; align-items: center; gap: 12px; }
.item-card-info { flex: 1; }
.item-category { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: #888; }
.item-card-info h5 { font-size: 13px; font-weight: 600; margin: 2px 0; }
.item-price { font-size: 13px; font-weight: 700; color: var(--primary-dark); }
.item-qty-ctrl { display: flex; align-items: center; gap: 8px; }
.item-qty-ctrl button { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid #e2e8f0; background: #f8fafc; cursor: pointer; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.item-qty-ctrl button:hover { background: var(--primary); border-color: var(--primary); }
.item-qty-ctrl span { font-weight: 700; min-width: 20px; text-align: center; }
.order-summary-table table { width: 100%; border-collapse: collapse; }
.order-summary-table th, .order-summary-table td { padding: 10px 12px; border-bottom: 1px solid #f1f5f9; font-size: 13px; }
.order-summary-table th { font-size: 11px; text-transform: uppercase; color: #888; }
.order-summary-table tfoot td { font-size: 15px; padding-top: 14px; }
.book-submit-btn { width: auto; padding: 12px 32px; margin-top: 16px; }

/* Pickup page */
.pickup-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.pickup-summary-box { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 2px 14px rgba(0,0,0,0.07); }
.pickup-summary-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.pickup-service-name { font-size: 13px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f1f5f9; }
.pickup-item-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid #f9f9f9; }
.pickup-total-row { display: flex; justify-content: space-between; font-size: 16px; padding-top: 12px; margin-top: 8px; border-top: 2px solid #111; }
.payment-options { display: flex; gap: 12px; flex-wrap: wrap; }
.payment-opt input[type=radio] { display: none; }
.payment-opt span { display: flex; align-items: center; gap: 8px; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 10px 16px; cursor: pointer; font-size: 14px; font-weight: 500; transition: .3s; }
.payment-opt input:checked + span { border-color: var(--primary); background: #fffbeb; }

/* Order Tracking */
.order-tracker { background: #fff; border-radius: 14px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 14px rgba(0,0,0,0.07); overflow-x: auto; }
.tracker-steps { display: flex; gap: 0; position: relative; min-width: 600px; }
.tracker-steps::before { content: ''; position: absolute; top: 14px; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 0; }
.tracker-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; }
.tracker-dot { width: 28px; height: 28px; border-radius: 50%; background: #e2e8f0; border: 3px solid #fff; box-shadow: 0 0 0 2px #e2e8f0; }
.tracker-step.done .tracker-dot { background: #10b981; box-shadow: 0 0 0 2px #10b981; }
.tracker-step.active .tracker-dot { background: var(--primary); box-shadow: 0 0 0 2px var(--primary); }
.tracker-step span { font-size: 11px; color: #888; text-align: center; }
.tracker-step.done span, .tracker-step.active span { color: #111; font-weight: 600; }
.order-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.order-meta p { font-size: 13px; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }

/* Testimonials section */
.testimonials-sec { padding: 80px 0; background: #f8fafc; }
.testimonial-card { background: #fff; border-radius: 14px; padding: 24px; height: 100%; box-shadow: 0 2px 14px rgba(0,0,0,0.06); }
.testimonial-stars { margin-bottom: 12px; }
.testimonial-stars i { color: #ddd; font-size: 14px; }
.testimonial-stars i.filled { color: #FFC107; }
.testimonial-card p { color: #555; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: #888; }

/* CTA Strip */
.cta-strip { background: linear-gradient(135deg, #111827 0%, #1f2937 100%); padding: 60px 0; text-align: center; color: #fff; }
.cta-strip h2 { font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

@media (max-width: 768px) {
    .udash-stats { grid-template-columns: repeat(2, 1fr); }
    .pickup-layout, .order-detail-layout { grid-template-columns: 1fr; }
    .auth-row-2 { grid-template-columns: 1fr; }
    .items-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing-section { background: #f8fafc; }
.pricing-group-title { font-size: 20px; font-weight: 700; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.pricing-item-card { background: #fff; border-radius: 12px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.pricing-category { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: #888; display: block; margin-bottom: 2px; }
.pricing-item-card h5 { font-size: 14px; font-weight: 600; margin: 0; }
.pricing-price { font-size: 20px; font-weight: 800; color: var(--primary-dark); white-space: nowrap; }
.pricing-cta { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.pricing-cta h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
/* Contact */
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item i { width: 40px; height: 40px; background: #fffbeb; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 16px; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.contact-info-item p { font-size: 14px; color: #555; margin: 0; }
.faq-item { border: none; border-bottom: 1px solid #f1f5f9; background: transparent; }
.faq-item .accordion-button { background: #fff; font-weight: 600; font-size: 14px; }
.faq-item .accordion-button:not(.collapsed) { color: var(--primary-dark); background: #fffbeb; box-shadow: none; }
.faq-item .accordion-body { font-size: 14px; color: #555; }
