:root {
    --primary-color: #800000;
    --primary-dark: #4a0012;
    --primary-light: #a52a2a;
    --orange: #ff6b35;
    --orange-dark: #e54e1b;
    --orange-light: #ff8f5c;
    --secondary-color: black;
    --white-color: #ffffff;
    --light-gray: #f2f2f2;
    --border-light: #eeeeee;
    --border-gray: #dddddd;
    --overlay-bg: rgba(0, 0, 0, 0.5);
    --social-border: rgba(255, 255, 255, 0.4);
    --mobile-border: rgba(255, 255, 255, 0.2);
    --text-dark: #333333;
    --hover-light: #e6e6e6;
--cleanin-font: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--cleanin-font);
}

.top-bar {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    padding: 8px 0;
    font-weight: 900;

}

.top-left a {
    margin-right: 20px;
}

/*MAIN NAV*/
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white-color);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    padding: 12px 15px;
    font-weight: 600;
    font-size: 15px;
    display: block;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: 15px;
    background-color: var(--white-color);
}

.dropdown-link:hover {
    color: var(--primary-color) !important;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-gray);
    width: 280px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-gray);
    text-decoration: none;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background: var(--hover-light);
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
}


.nav-quote-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 900;
    margin-top: 6px;
}

.nav-quote-btn:hover {
    background: #000;
    color: var(--white-color);
}

/* RIGHT SIDEBAR */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #810b00;
    color: #fff;
    transition: 0.4s ease;
    z-index: 9999;
    padding-top: 20px;
    overflow-y: auto;
}

.right-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h4 {
    font-size: 16px;
    margin: 0;
    color: #fff;
}

.sidebar-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
}

/* MENU */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    position: relative;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    text-decoration: none;
    color: #ccc;
    font-size: 15px;
    transition: 0.3s;
}

.sidebar-menu li a i {
    font-size: 18px;
}

/* ACTIVE STYLE */
.sidebar-menu li:hover a {
    color: #fff;
}

.sidebar-menu li:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: red;
}

/* HOVER */
.sidebar-menu li a:hover {
    background: #111;
    color: #fff;
}

/* DROPDOWN */
.submenu {
    display: none;
    background: #111;
    padding: 5px 0;
}

.submenu li a {
    padding: 12px 20px 12px 50px;
    font-size: 14px;
    color: #bbb;
    transition: 0.3s;
}

/* Hover submenu */
.submenu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding-left: 60px;
}

/* Open dropdown */
.dropdown.open .submenu {
    display: block;
}


/* ARROW */
.arrow {
    margin-left: auto;
    transition: 0.3s;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
}

/* SOCIAL */
.sidebar-social {
    margin-top: 30px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    transition: 0.3s;
}

.sidebar-social a:hover {
    background: red;
}

/* OVERLAY */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9998;
}

.sidebar-overlay.active {
    display: block;
}

@media(max-width:1100px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    
    

}

.contact-link {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

.contact-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}


/*home service */

.home-service-card {
    position: relative;
    background: #f3f3f3;
    padding: 30px 10px;
    border-radius: 35px;
    overflow: hidden;
    transition: .4s ease;
    z-index: 1;
    height: 100%;
}

.home-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s ease;
    z-index: 0;
    border-radius: 35px;
}

.home-service-card:hover::before {
    transform: scaleY(1);
}

.home-icon-wrapper {
    width: 95px;
    height: 95px;
    background: #e9ecef;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.home-icon-wrapper i {
    font-size: 35px;
    color: var(--primary-color);
    transition: .3s;
}

.home-service-card:hover .home-icon-wrapper {
    background: #fff;
}

.home-service-card:hover .home-icon-wrapper i {
    color: var(--primary-color);
}

/* TEXT */
.home-service-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.home-service-card p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 25px;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.home-read-more {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.home-read-more .arrow {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: .3s;
}

/* STAR */
.home-star {
    position: absolute;
    font-size: 18px;
    color: #dcdcdc;
    z-index: 2;
    transition: .3s;
}

.home-top-star {
    top: 20px;
    right: 25px;
}

.home-bottom-star {
    bottom: 20px;
    left: 25px;
}

.home-service-card:hover h5,
.home-service-card:hover p,
.home-service-card:hover .home-read-more {
    color: #fff;
}

.home-service-card:hover .home-read-more .arrow {
    background: #fff;
    color: var(--primary-color);
}

.home-service-card:hover .home-star {
    color: rgba(255, 255, 255, 0.4);
}


/* rate */

.rates-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.rate-heading {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.table-wrapper {
    overflow-x: auto;
}

.rates-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
    background: var(--white-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.rates-table thead {
    background: var(--primary-color);
    color: var(--white-color);
}

.rates-table th {
    padding: 16px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.rates-table td {
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.shift-type {
    font-weight: 600;
    color: var(--secondary-color);
}

.rates-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.rates-table tbody tr:hover {
    background: rgba(128, 0, 0, 0.08);
    transition: 0.3s;
}

@media (max-width: 768px) {

    .rates-table th,
    .rates-table td {
        padding: 10px;
        font-size: 13px;
    }
}



.tracking-section {
    min-height: 500px;
}

.tracking-form-wrapper {
    max-width: 500px;
}

.tracking-form-wrapper input {
    height: 50px;
}


.tracking-submit {
    border-radius: 8px;
    background: var(--text-dark);
    color: var(--white-color);
}

.tracking-submit:hover {
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white-color);
}

.clear {
    border: solid 1px var(--text-dark);

}

.clear:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


/* welcome section */

.welcome-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.welcome-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
}

.welcome-title span {
    color: var(--primary-color);
}

.welcome-img {
    background: linear-gradient(135deg, var(--primary-color), #b30000);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    position: relative;
}

.welcome-img img {
    max-width: 100%;
    border-radius: 10px;
}

.badge-best {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white-color);
    color: var(--primary-color);
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/*  obout section of home page  */
.about-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-title span {
    color: var(--primary-color);
}

.about-inner-row h5 {
    font-weight: 700;
    margin-top: 20px;
    color: #222;
}

.about-inner-row p {
    color: #555;
    line-height: 1.7;
}

.about-img-box img {
    max-width: 100%;
    border-radius: 15px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 8px;
    font-weight: 500;
}


/* process sectiom  */
.wp-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.wp-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 8px;
}

.wp-desc {
    color: #222;
    margin-top: 15px;
}

.process-step {
    position: relative;
    padding: 20px;
}

.icon-box {
    width: 110px;
    height: 110px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.icon-box i {
    font-size: 36px;
    color: var(--white-color);
}

.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 34px;
    height: 34px;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #666;
}

/* dotted line */
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 65px;
    right: -50%;
    width: 100%;
    border-top: 2px dashed var(--primary-color);
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

/*  footer  */

footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 25px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--primary-color), var(--orange));
}

.footer-widget h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.footer-widget h3 span {
    color: #ff7a00;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 45px;
    height: 2px;
    background: #ff7a00;
}

/* Footer Social Icons */
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links,
.contact-info-footer {
    list-style: none;
    padding: 0;
}


.footer-links li,
.contact-info-footer li {
    margin-bottom: 14px;
}

.footer-links a,
.contact-info-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover,
.contact-info-footer a:hover {
    color: #ff7a00;
    padding-left: 6px;
}

.footer-links i {
    margin-right: 10px;
    color: var(--orange);
}

.contact-info-footer i {
    color: #ff7a00;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/*   slider  */
.hero-porter {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

.hero-img {
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    max-width: 1100px;
    width: 90%;
    background: #000000cc;
    border-radius: 70px 0 70px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 10px;
}

.hero-banner h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-services {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.hero-features {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero-features span {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.hero-number-text {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

.section-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#number-section {
    background: #000000cc;
    padding: 10px 15px;
    border-radius: 12px;
    max-width: 850px;
    margin: 0 auto;
}

.number-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.call-box {
    border: 2px solid #ffffff;
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 8px 15px;
    font-weight: bold;
    text-align: center;

}

.call-box div {
    font-size: 1rem;
}

.number-text {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: bold;
    color: #fff;
}

/* CAROUSEL CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #b30000;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.number-text span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.number-text span.animate {
    animation: rollUp 0.6s forwards;
}

@keyframes rollUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .hero-content {
        padding: 25px 15px;
        border-radius: 40px 0 40px 0;
    }

    .hero-banner h1 {
        font-size: 28px;
    }

    .hero-services {
        font-size: 14px;
        padding: 8px 15px;
    }

    .hero-features span {
        font-size: 12px;
        padding: 5px 10px;
    }

    .hero-number-text {
        font-size: 16px;
    }

    .number-row {
        flex-direction: column;
        gap: 15px;
    }

    .number-text {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }

    .call-box {
        font-size: 0.9rem;
    }

    .hero-img {
        height: 60vh;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev i,
    .carousel-control-next i {
        font-size: 1.5rem;
    }
}


/*   quote model */

.custom-modal .modal-content {
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.contact-form-header {
    background: var(--primary-color);
    padding: 15px 20px;
    margin: -16px -16px 20px -16px;
}

.contact-form-header span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.custom-modal .close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #fff;
    opacity: 1 !important;
}

.custom-modal .close i {
    color: #fff;
}

.custom-modal .close:hover {
    transform: rotate(90deg);
    transition: 0.3s;
}

.form-group {
    margin-bottom: 15px;
}

.form-icon {
    position: relative;
}

.form-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 14px;
}

.form-control {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    height: 45px;
    transition: 0.3s;
}

textarea.form-control {
    height: auto;
    padding-top: 12px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.1);
}

.theme-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin: 5px;
    transition: 0.3s;
}

.theme-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3);
}

#resultquotemodal {
    margin-top: 10px;
}

@media (max-width: 576px) {
    .contact-form-header span {
        font-size: 16px;
    }
}

/*   breadcrumb   */

.screenshot-breadcrumb {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    overflow: hidden;
    position: relative;
}

/* ===== TITLE ===== */
.sc-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

/* ===== BREADCRUMB PILL ===== */
.sc-breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    backdrop-filter: blur(5px);
}

.sc-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.sc-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.sc-breadcrumb .active {
    color: #fff;
    font-weight: 600;
}

/* ===== BACKGROUND CIRCLES ===== */
.sc-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatMove 12s infinite alternate ease-in-out;
}

.circle-one {
    width: 250px;
    height: 250px;
    top: -80px;
    left: -60px;
}

.circle-two {
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: 15%;
}

.circle-three {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
}

/* ===== ANIMATION ===== */
@keyframes floatMove {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, -40px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .screenshot-breadcrumb {
        height: 220px;
    }

    .sc-title {
        font-size: 28px;
    }
}

.city-about {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/*   Services Page */
.service-section {
    padding: 40px 0;
    font-family: var(--cleanin-font);
    background: var(--white-color);
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-call-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
}

.service-call-btn:hover {
    background: var(--primary-dark);
    color: var(--white-color);
}

.service-quote-btn {
    background: var(--orange);
    color: var(--white-color);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
}

.service-quote-btn:hover {
    background: var(--orange-dark);
    color: var(--white-color);
}

.modal-title-custom {
    color: var(--primary-color);
    font-weight: 600;
}

.service-text {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===== PACKING SERVICES SECTION ===== */

.packing-services {
    background: var(--white-color);
}

.service-badge {
    background: var(--orange);
    color: var(--white-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}


.service-title span {
    color: var(--primary-color);
}

.service-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6c757d;
}

/* Service Cards */
.service-card {
    background: var(--white-color);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px -10px rgba(128, 0, 0, 0.25);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.service-card span {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* content part */
.left-border-section {
    background: var(--white-color);
    font-family: var(--cleanin-font);
}

.left-border-box {
    background: var(--white-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 6px;
}

.lb-heading {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 30px;
}

.lb-content {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===== PROCESS SECTION ===== */

.process-section {
    background: var(--white-color);
}

/* Heading */
.process-badge {
    background: var(--orange);
    color: var(--white-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-title .highlight {
    color: var(--primary-color);
}

.process-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6c757d;
}

/* Process Cards */
.process-step-modern {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(128, 0, 0, 0.08);
}

.process-step-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px -10px rgba(128, 0, 0, 0.25);
}

.process-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Number Circle */
.process-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.process-step-number::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    border-radius: 50%;
    opacity: 0.25;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.25;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1);
        opacity: 0.25;
    }
}

/* ===== STATS COUNTER SECTION ===== */

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Stats counter */
.stat-counter {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-counter:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-counter i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.stat-counter .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
}

.stat-counter .label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/*  about page */

.about-section {
    padding: 40px 0;
    font-family: var(--cleanin-font);
    background: var(--white-color);
}

.about-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 400;
}

.mission-box {
    background: var(--white-color);
    border-top: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    transition: 0.3s;
    height: 100%;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.box-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-right: 10px;
}

.box-heading {
    font-weight: 600;
    margin: 0;
    color: var(--secondary-color);
}

.box-text {
    margin-top: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.work-main-heading {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.work-main-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 35px;
}

.work-process-box {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 25px;
    background: var(--white-color);
    transition: 0.3s;
    height: 100%;
}

.work-process-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.process-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.process-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}


/*  choose page  */
.why-choose {
    background: var(--light-gray);
    font-family: var(--cleanin-font);
}

.why-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.why-subtitle {
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.why-card {
    background: var(--white-color);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-card h5 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-dark);
    font-size: 14px;
}

.why-icon {
    font-size: 40px;
    color: var(--primary-color);
    transition: 0.3s;
}

.why-card:hover .why-icon {
    color: var(--orange);
}

.why-piyush {
    background: var(--white-color);
    font-family: var(--cleanin-font);
}

.why-heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.why-heading span {
    color: var(--orange);
}

.why-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
}

.feature-title {
    color: var(--primary-dark);
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

.why-image img {
    border-radius: 12px;
    border: 4px solid var(--border-light);
    transition: 0.3s ease;
}

.why-image img:hover {
    transform: scale(1.03);
    border-color: var(--orange);
}

.packing-material-section {
    background: var(--white-color);
    font-family: var(--cleanin-font);
}

.packing-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.packing-subtitle {
    color: var(--text-dark);
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
}

.packing-box {
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: 0.3s ease;
}

.packing-box:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.packing-box h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.packing-box:hover h6 {
    color: var(--white-color);
}

.packing-icon {
    font-size: 32px;
    color: var(--orange);
    transition: 0.3s;
}

.packing-box:hover .packing-icon {
    color: var(--white-color);
}


/*  view  service  */
/* ===== CITY ABOUT SECTION ===== */
.city-about {
    background: #fff;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-title {
        font-size: 24px;
    }
}

.content-box-section {
    width: 100%;
    font-family: var(--cleanin-font);
    background: var(--white-color);
}

.content-heading {
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.content-box {
    background: var(--white-color);
    padding: 30px;
    border-left: 6px solid var(--primary-color);
    border-radius: 10px;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
}

.shifting-process {
    background: #f8f9fa;
}

.process-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.process-subtitle {
    color: #666;
}

/*  service section */
section h2 {
    color: var(--primary-color)
}

.service-title {
    font-weight: 600;
}

.service-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 22px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.service-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* ===== CARD DESIGN ===== */
.process-card {
    background: #fff;
    padding: 40px 25px 25px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #eee;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

/* ===== STEP BADGE ===== */
.step-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3);
}

/* ===== TEXT ===== */
.process-card h5 {
    margin-top: 20px;
    font-weight: 600;
    color: #222;
}

.process-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .process-title {
        font-size: 26px;
    }
}

.normal-section {
    padding: 40px 0 20px 0;
    background: var(--white-color);
    font-family: var(--cleanin-font);
}

.normal-heading {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.normal-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/*  contact  page */
.contact-wrapper {
    position: relative;
    background: var(--white-color);
}

.contact-info {
    padding: 60px 0 40px;
}

.info-card {
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-form-area {
    position: relative;
    background: var(--primary-color);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Contact Links */
.contact-info-group {
    margin: 0;
    line-height: 1.9;
}

.contact-info {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.contact-info:hover {
    color: var(--primary-color);
}

/* Underline animation */
.contact-info::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s ease;
}

.contact-info:hover::after {
    width: 100%;
}

/* Curve Shape */
.contact-form-area::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -10%;
    width: 120%;
    height: 250px;
    background: var(--white-color);
    border-bottom-left-radius: 60% 100%;
    border-bottom-right-radius: 60% 100%;
}

/* Title */
.contact-title {
    color: var(--white-color);
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Form */
.contact-form {
    position: relative;
    z-index: 2;
}

.contact-form .form-control {
    height: 50px;
    border-radius: 6px;
    border: none;
}

.contact-form textarea.form-control {
    height: 140px;
    resize: none;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border: 2px solid var(--secondary-color);
}

/* Button */
.btn-custom {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 40px;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.principles-section {
    background: var(--light-gray);
    font-family: var(--cleanin-font);
}

.principles-section span {
    color: var(--primary-dark);
    font-size: 30px;
}

.icon-box {
    font-size: 40px;
    color: var(--orange);
}

.principle-card {
    border-radius: 12px;
    transition: 0.3s;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.highlight-text {
    color: var(--primary-color);
}

.movers-different h3 {
    color: var(--primary-dark);
}

.highlight-text {
    color: var(--primary-color);
}

.process-section h2,
.trust-section h2,
.services-flexible-section h2 {
    color: var(--primary-dark);
}

.process-list .list-group-item {
    border: 1px solid var(--border-light);
    margin-bottom: 8px;
    border-radius: 6px;
}

.process-list .list-group-item::before {
    content: "✓ ";
    color: var(--orange);
    font-weight: bold;
    margin-right: 5px;
}

.trust-section p {
    color: var(--text-dark);
    line-height: 1.8;
}

.flexible-services-list .list-group-item {
    border: 1px solid var(--border-light);
    margin-bottom: 8px;
    border-radius: 6px;
}

.flexible-services-list .list-group-item::before {
    content: "✓ ";
    color: var(--orange);
    font-weight: bold;
    margin-right: 5px;
}