* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 90px;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 135px;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa',  !important;
    
    font-weight: 350 !important; 
    
    color: #111827;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.fw-extrabold {
    font-weight: 600 !important;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
}

.top-bar {
    background: #111111;
    color: #FFFFFF;
    padding: 10px 0;
    font-size: 13px;
    width: 100%;
}

.top-bar .container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.top-left {
    display: flex;
    gap: 25px;
}

.top-right {
    color: #FF6600;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar-custom {
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid #F3F4F6;
}

.navbar-custom .container-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img{
    
}

.navbar-logo {
    width: auto; 
    height: 50px;
    max-width: 60px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .navbar-logo {
    transform: scale(1.04);
}

.logo-text {
    font-size: 30px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-text span {
    color: #FF6600;
}

@media (max-width: 991px) {
    .navbar-custom {
        padding: 5px 0;
    }

    .navbar-logo {
        height: 40px;
        max-width: 45px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 0px;
    }
    
    .logo {
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .navbar-logo {
        height: 35px;
    }
    .logo-text {
        font-size: 18px;
    }
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #222222;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #FF6600;
}

.quote-btn {
    background: #FF6600;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 26px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.quote-btn:hover {
    background: #111111;
}

.hamburger {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 5px;
    z-index: 100000;
    position: relative;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #111111;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #FF6600;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #FF6600;
}

@media(max-width:991px){
    body {
        padding-top: 80px;
    }

    .top-bar {
        display: block !important; 
        padding: 8px 0;
        font-size: 12px;
    }

    .top-bar .container-custom {
        display: flex;
        gap: 50px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

     .top-left {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
@media (max-width: 480px) {
    .top-left {
        flex-direction: column; 
        gap: 4px;
    }
    body {
        padding-top: 190px; 
    }
    .nav-menu {
        top: 140px;
        height: calc(100vh - 140px);
    }
}
    .navbar-custom {
        top: 0;
    }

    .quote-btn {
        display: none;
    }

    .hamburger {
        display: block !important;
        position: relative !important;
        z-index: 100002 !important;
        pointer-events: auto !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #FF6600;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #FF6600;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        padding-top: 50px;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 100001 !important;
        
        visibility: hidden;
        pointer-events: none;
    }

    .nav-menu.active {
        left: 0;
        visibility: visible;
        pointer-events: auto;
    }

    .logo-text {
        font-size: 24px;
    }
}


/* ------------------hamburger------------- */


/* --------------hero Start-------------- */

.hero-section {
    background-color: #FFFFFF;
    padding: 90px 4% 60px 4%;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1.1;
    max-width: 600px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFF0E6;
    color: #FF6600;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 46px;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content .highlight {
    color: #FF6600;
}

.hero-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quick-checks {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #222222;
    font-weight: 600;
}

.check-icon {
    color: #FF6600;
    font-weight: bold;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call, .btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-call {
    background-color: #FF6600;
    color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.25);
}

.btn-call:hover {
    background-color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.25);
}

.btn-quote {
    background-color: transparent;
    color: #111111;
    border: 2px solid #E5E5E5;
}

.btn-quote:hover {
    border-color: #FF6600;
    color: #FF6600;
    transform: translateY(-3px);
}

.hero-image-wrapper {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orange-accent-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 90%;
    height: 95%;
    background-color: #FF6600;
    border-radius: 12px;
    z-index: 1;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.hero-3d-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-wrapper:hover .hero-3d-img {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

.hero-image-wrapper:hover .orange-accent-bg {
    transform: translate(5px, 5px);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background-color: #FFFFFF;
    padding: 14px 22px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: floatingEffect 3.5s ease-in-out infinite;
}

.badge-check {
    background-color: #FFF0E6;
    color: #FF6600;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.floating-badge strong {
    font-size: 18px;
    color: #111111;
    display: block;
    line-height: 1.2;
}

.floating-badge p {
    font-size: 12px;
    color: #777777;
    margin: 0;
}

@keyframes floatingEffect {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-features-bar {
    max-width: 1200px;
    margin: 90px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #EEEEEE;
    padding-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feat-icon-box {
    background-color: #FAFAFA;
    width: 54px;
    height: 54px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAEAEA;
    transition: all 0.3s ease;
}

.feature-item h3 {
    font-size: 16px;
    color: #111111;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    color: #777777;
}

.feature-item:hover .feat-icon-box {
    background-color: #FF6600;
    border-color: #FF6600;
}

.feature-item:hover .feat-icon-box svg {
    stroke: #FFFFFF;
}
@media (max-width: 991px) {
    .hero-section {
        padding: 78px 4% 40px 4%;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        max-width: 100%;
    }
    .rating-badge, .quick-checks, .hero-buttons {
        justify-content: center;
    }

    .rating-badge, .quick-checks, .hero-buttons .btn-call{
        justify-content: center;
    }

    .rating-badge, .quick-checks, .hero-buttons .btn-quote{
        justify-content: center;
    }
    .quick-checks {
        align-items: center;
    }
    .hero-image-wrapper {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    .orange-accent-bg {
        right: -10px;
        bottom: -10px;
    }
    .floating-badge {
        left: 0px;
        bottom: -10px;
    }
    .hero-features-bar {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
        padding-top: 40px;
    }
}

/* ----------------hero End--------------- */

/* ----------About Section Start--------- */
.about-section {
    background-color: #FAFAFA;
    padding: 100px 4%;
    border-top: 1px solid #EEEEEE;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.about-left-content {
    flex: 1.1;
    max-width: 600px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #FF6600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.tag-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #FF6600;
}

.about-heading {
    font-size: 38px;
    color: #111111;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.trust-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateX(3px);
}

.badge-icon-box {
    background-color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #EAEAEA;
    flex-shrink: 0;
}

.badge-text-box h3 {
    font-size: 15px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-text-box p {
    font-size: 13px;
    color: #777777;
    font-weight: 500;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #111111;
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background-color: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.about-right-image-wrapper {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-border-decor {
    position: absolute;
    left: -15px;
    top: -15px;
    width: 100%;
    max-width: 600px;
    height: 100%;
    border: 3px solid #FF6600;
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.about-single-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.about-right-image-wrapper:hover .about-single-img {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
    }
    .about-left-content {
        max-width: 100%;
        text-align: center;
    }
    .section-tag {
        justify-content: center;
    }
    .trust-features-grid {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-right-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .about-image-border-decor {
        left: -10px;
        top: -10px;
    }
}


/* ---------------About Section End-------------- */

/* ------------Service Section start------------ */
.services-section {
    background-color: #FFFFFF;
    padding: 100px 4%;
    border-top: 1px solid #EEEEEE;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-header .section-tag {
    justify-content: center;
    margin-bottom: 15px;
}

.services-main-heading {
    font-size: 36px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.services-sub-heading {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #FAFAFA;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card h3 {
    font-size: 20px;
    color: #111111;
    font-weight: 700;
    margin: 25px 25px 12px 25px;
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 25px 25px 25px;
    flex-grow: 1;
}

.service-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin: 0 25px 30px 25px;
    transition: all 0.3s ease;
}

.service-readmore .arrow {
    transition: transform 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF6600;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
    z-index: 5;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-card-img {
    transform: scale(1.1);
}

.service-card:hover h3 {
    color: #FF6600;
}

.service-card:hover .service-readmore {
    color: #FF6600;
}

.service-card:hover .service-readmore .arrow {
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-main-heading {
        font-size: 30px;
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-main-heading {
        font-size: 26px;
    }
}

.mv_btn_view_all {
        justify-content: center;
        color: #fff;
		background-color: #FF6600 !important;
		border: 1px solid #FF6600 !important;
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
		letter-spacing: 0.5px;
	}

	.mv_btn_view_all:hover {
		background-color: #1a1a1a !important; 
		border-color: #1a1a1a !important;
		transform: translateY(-3px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
	}


	.animate-arrow {
		transition: transform 0.3s ease;
	}

	.mv_btn_view_all:hover .animate-arrow {
		transform: translateX(5px);
	}


/* ---------------Service Section End-------------- */

/* -----------why Najmat Al Dar start------------- */
.seo-trust-card {
    max-width: 1200px;
    margin: 70px auto 20px auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    padding: 50px;
    position: relative;
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 25px 50px rgba(17, 17, 17, 0.03);
        
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.seo-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 1px 3px rgba(255, 102, 0, 0.05),
        0 15px 35px rgba(255, 102, 0, 0.06),
        0 30px 60px rgba(17, 17, 17, 0.06);
    border-color: rgba(255, 102, 0, 0.2);
}

.seo-card-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seo-card-heading {
    font-size: 28px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
    max-width: 600px;
}

.seo-card-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FF6600;
    border-radius: 2px;
}

.seo-card-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-card-paragraphs p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    font-weight: 500;
}

.seo-card-paragraphs p strong {
    color: #FF6600;
    font-weight: 700;
}

@media (max-width: 991px) {
    .seo-trust-card {
        padding: 40px 30px;
        margin-top: 50px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .seo-card-heading {
        font-size: 24px;
    }
}

@media (max-width: 650px) {
    .seo-trust-card {
        padding: 30px 20px;
        text-align: left;
    }
    .seo-card-heading {
        font-size: 21px;
    }
    .seo-card-paragraphs p {
        font-size: 14px;
        line-height: 1.6;
    }
}
/* ------------why Najmat Al Dar End------------------ */

/* -------------service Location Start--------------- */
.locations-section {
    background-color: #FFFFFF;
    padding: 100px 4%;
    border-top: 1px solid #EEEEEE;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.locations-header .section-tag {
    justify-content: center;
    margin-bottom: 15px;
}

.locations-main-heading {
    font-size: 36px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.locations-sub-heading {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.location-card {
    background-color: #FAFAFA;
    border: 1px solid #EAEAEA;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    background-color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border-color: #FF6600;
}

.loc-circle-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #EAEAEA;
    transition: border-color 0.3s ease;
}

.location-card:hover .loc-circle-img {
    border-color: #FF6600;
}

.loc-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-card-text h3 {
    font-size: 18px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
}

.loc-sub-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.loc-sub-services-list li a {
    font-size: 13.5px;
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.loc-sub-services-list li a svg {
    stroke: #555555;
    stroke-width: 2.5;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.loc-sub-services-list li a:hover {
    color: #111111; 
}

.loc-sub-services-list li a:hover svg {
    stroke: #FF6600;
    transform: translateX(4px);
}


.location-action-card {
    max-width: 1200px;
    margin: 80px auto 10px auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    padding: 45px;
    position: relative;
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 12px 35px rgba(0, 0, 0, 0.04),
        0 30px 60px rgba(17, 17, 17, 0.03);
        
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 1px 3px rgba(255, 102, 0, 0.05),
        0 15px 40px rgba(255, 102, 0, 0.07),
        0 35px 70px rgba(17, 17, 17, 0.06);
    border-color: rgba(255, 102, 0, 0.2);
}

.loc-action-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.loc-action-heading {
    font-size: 34px;
    color: #FF6600;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.loc-action-text {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.loc-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.loc-btn-call, .loc-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.loc-btn-call {
    background-color: #111111;
    color: #FFFFFF;
}

.loc-btn-call:hover {
    background-color: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .location-card {
        align-items: flex-start;
    }
}


/* --------------service Location End--------------- */

/* -----------why choose Section start------------ */
.why-us-section {
    background-color: #FAFAFA;
    padding: 100px 4%;
    border-top: 1px solid #EEEEEE;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.why-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-stat-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.mini-stat-card h3 {
    font-size: 32px;
    color: #FF6600;
    font-weight: 800;
    margin-bottom: 5px;
}

.mini-stat-card p {
    font-size: 14px;
    color: #444444;
    font-weight: 600;
}

.why-features-grid-8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feat-8-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 30px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.feat-8-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #FF6600;
}

.feat-8-icon {
    background-color: #FFF5EE;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-8-content h3 {
    font-size: 18px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-8-content p {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
}

.why-orange-action-card {
    background-color: #FF6600;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 15px 35px rgba(255, 102, 0, 0.1),
        0 30px 60px rgba(17, 17, 17, 0.05);
}

.orange-card-left {
    flex: 1.1;
    color: #FFFFFF;
}

.orange-card-left h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.orange-card-paras {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.orange-card-paras p {
    font-size: 15px;
    color: #FFF0E6;
    line-height: 1.6;
    font-weight: 500;
}
.nested-white-commitment-card {
    flex: 0.9;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 440px;
}

.nested-white-commitment-card h3 {
    font-size: 20px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #EAEAEA;
}

.commitment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.commitment-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.commitment-list li span {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .why-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-features-grid-8 {
        grid-template-columns: 1fr;
    }
    .why-orange-action-card {
        flex-direction: column;
        padding: 40px 25px;
        gap: 40px;
    }
    .nested-white-commitment-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .why-stats-row {
        grid-template-columns: 1fr;
    }
    .orange-card-left h2 {
        font-size: 24px;
    }
    .nested-white-commitment-card {
        padding: 25px 15px;
    }
}

/* ------------why choose section End------------ */

/* --------------Our Moving Process Start------- */
.process-section {
    background-color: #FFFFFF;
    padding: 100px 4%;
    border-top: 1px solid #EEEEEE;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.process-header .section-tag {
    justify-content: center;
    margin-bottom: 15px;
}

.process-main-heading {
    font-size: 36px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.process-sub-heading {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step-card {
    background-color: #FAFAFA;
    border: 1px solid #EAEAEA;
    padding: 40px 25px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    background-color: #FFFFFF;
    border-color: #FF6600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number-badge {
    position: absolute;
    top: -20px;
    left: 25px;
    background-color: #FF6600;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.12);
}

.process-step-card h3 {
    font-size: 19px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 5px;
}

.process-step-card p {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
}

.process-action-combo-card {
    background-color: #FAFAFA;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 40px;
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 12px 30px rgba(0, 0, 0, 0.03),
        0 30px 60px rgba(17, 17, 17, 0.02);
}

.proc-action-left {
    flex: 1.1;
    max-width: 650px;
}

.proc-action-left h2 {
    font-size: 30px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: left;
}

.proc-action-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.proc-green-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
}

.proc-green-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.green-check-box {
    background-color: #DCFCE7;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proc-green-checklist li span {
    font-size: 14px;
    color: #222222;
    font-weight: 600;
}

.nested-contact-details-box {
    flex: 0.9;
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.contact-box-header-icon {
    background-color: #FFF5EE;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.contact-info-block h4 {
    font-size: 13px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-link-txt {
    font-size: 20px;
    color: #FF6600;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.contact-link-txt:hover {
    color: #111111;
}

.border-top-sep {
    border-top: 1px solid #EEEEEE;
    margin-top: 20px;
    padding-top: 20px;
}

.map-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.btn-view-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #111111;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(17, 17, 17, 0.15);
    transition: all 0.3s ease;
}

.btn-view-map:hover {
    background-color: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

@media (max-width: 991px) {
    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }
    .process-action-combo-card {
        flex-direction: column;
        padding: 40px 25px;
        gap: 40px;
    }
    .proc-action-left {
        max-width: 100%;
    }
    .nested-contact-details-box {
        max-width: 100%;
    }
}

@media (max-width: 650px) {
    .process-grid-4 {
        grid-template-columns: 1fr;
    }
    .process-main-heading {
        font-size: 28px;
    }
    .proc-green-checklist {
        grid-template-columns: 1fr;
    }
    .btn-view-map {
        width: 100%;
        justify-content: center;
    }
}

/* ---------------Our Moving Process End----------*/

/* ----------------Pricing Start------------------ */
.pricing-section {
    background-color: #FFFFFF;
    padding: 100px 4%;
    border-top: 1px solid #EEEEEE;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.pricing-header .section-tag {
    justify-content: center;
    margin-bottom: 15px;
}

.pricing-main-heading {
    font-size: 36px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.pricing-sub-heading {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.pricing-main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.pricing-standard-table {
    flex: 1.1;
}

.pricing-standard-table h3 {
    font-size: 24px;
    color: #111111;
    font-weight: 800;
    margin-bottom: 8px;
}

.table-note {
    font-size: 12px;
    color: #999999;
    margin-bottom: 35px;
    font-weight: 500;
}

.price-estimate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px dashed #EAEAEA;
}
.item-name {
    white-space: nowrap;
}


.item-name {
    font-size: 15.5px;
    color: #222222;
    font-weight: 600;
    white-space: normal;
}

.item-dash-line {
    flex-grow: 1;
    margin: 0 15px;
    border-bottom: 1px dashed #DDD;
}

.item-cost {
    font-size: 16px;
    color: #FF6600;
    font-weight: 800;
    white-space: nowrap;
}

.calculator-estimation-card {
    flex: 0.9;
    background-color: #FAFAFA;
    border: 1px solid #EAEAEA;
    padding: 40px;
    border-radius: 12px;
    max-width: 460px;
    width: 100%;
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.03),
        0 15px 35px rgba(0, 0, 0, 0.04),
        0 30px 60px rgba(17, 17, 17, 0.02);
}

.calculator-estimation-card h3 {
    font-size: 22px;
    color: #111111;
    font-weight: 800;
    margin-bottom: 10px;
}

.calculator-estimation-card p {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #222222;
}

.estimate-form select, .estimate-form input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    background-color: #FFFFFF;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    color: #333333;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s ease;
}

.estimate-form select:focus, .estimate-form input:focus {
    border-color: #FF6600;
}

.btn-calculate-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #FF6600;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-calculate-submit:hover {
    background-color: #111111;
    box-shadow: 0 5px 15px rgba(17, 17, 17, 0.2);
    transform: translateY(-2px);
}


@media (max-width: 991px) {

    .pricing-section{
        padding: 80px 20px;
    }

    .pricing-main-wrapper{
        flex-direction: column;
        gap: 40px;
    }

    .pricing-standard-table,
    .calculator-estimation-card{
        width: 100%;
        max-width: 100%;
    }

    .calculator-estimation-card{
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .pricing-main-heading{
        font-size: 32px;
    }

    .pricing-sub-heading{
        font-size: 14px;
    }

    .price-estimate-row{
        flex-wrap: wrap;
        gap: 10px;
    }

    .item-dash-line{
        display: none;
    }

    .item-name{
        width: 100%;
        white-space: normal;
        font-size: 14px;
    }

    .item-cost{
        width: 100%;
        font-size: 15px;
    }

    .calculator-estimation-card{
        padding: 25px;
    }
}

@media (max-width: 576px) {

    .pricing-section{
        padding: 60px 15px;
    }

    .pricing-main-heading{
        font-size: 26px;
        line-height: 1.4;
    }

    .pricing-header{
        margin-bottom: 40px;
    }

    .pricing-standard-table h3,
    .calculator-estimation-card h3{
        font-size: 20px;
    }

    .form-grid-2{
        grid-template-columns: 1fr;
    }

    .estimate-form select,
    .estimate-form input{
        font-size: 16px;
    }

    .btn-calculate-submit{
        width: 100%;
        padding: 14px;
    }
}
/* ---------------Pricing End-------------------- */

/* ---------------Costumer Review start---------- */
.real-reviews-section {
    background-color: #FAFAFA;
    padding: 100px 4%;
    border-top: 1px solid #EEEEEE;
}

.reviews-wrapper-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.reviews-header-block {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.reviews-header-block .section-tag {
    justify-content: center;
    margin-bottom: 15px;
}

.reviews-main-heading {
    font-size: 36px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.reviews-sub-heading {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.reviews-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
}

.happy-customer-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 40px 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quote-svg-icon {
    position: absolute;
    top: 30px;
    right: 35px;
}

.review-star-rating {
    display: flex;
    gap: 4px;
}

.customer-feedback-text {
    font-size: 14.5px;
    color: #444444;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
    flex-grow: 1;
}

.customer-profile-meta {
    border-top: 1px dashed #EAEAEA;
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.customer-details h4 {
    font-size: 16px;
    color: #111111;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.verified-tick {
    color: #22C55E;
    font-weight: 800;
    font-size: 14px;
}

.customer-details p {
    font-size: 12px;
    color: #777777;
    font-weight: 600;
}

.happy-customer-card:hover {
    transform: translateY(-6px);
    border-color: #FF6600;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.06);
}

@media (max-width: 1024px) {
    .happy-customer-card {
        max-width: 46%;
    }
    .reviews-main-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .happy-customer-card {
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .real-reviews-section {
        padding: 60px 4% 40px 4%;
    }
    .happy-customer-card {
        padding: 30px 20px;
        min-width: 100%;
    }
    .reviews-main-heading {
        font-size: 26px;
    }
    .customer-feedback-text {
        font-size: 13.5px;
        line-height: 1.6;
    }
}

.reviews-bottom-trust-card {
    max-width: 1200px;
    margin: 60px auto 10px auto;
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 40px 50px;
    width: 100%;
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 12px 30px rgba(0, 0, 0, 0.03),
        0 25px 50px rgba(17, 17, 17, 0.02);
        
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reviews-bottom-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 1px 3px rgba(255, 102, 0, 0.04),
        0 15px 35px rgba(255, 102, 0, 0.06),
        0 30px 60px rgba(17, 17, 17, 0.05);
    border-color: rgba(255, 102, 0, 0.25);
}

.trust-card-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-card-main-title {
    font-size: 24px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
    text-align: left;
}

.trust-card-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FF6600;
    border-radius: 2px;
}

.trust-metrics-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.metric-mini-item {
    background-color: #FAFAFA;
    border: 1px solid #EAEAEA;
    padding: 22px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.metric-mini-item:hover {
    background-color: #FFFFFF;
    border-color: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.metric-icon-circle {
    background-color: #FFF5EE;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-counter-number {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
}

.metric-label-txt {
    font-size: 13px;
    color: #666666;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .reviews-bottom-trust-card {
        padding: 35px 30px;
    }
    .trust-metrics-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 550px) {
    .reviews-bottom-trust-card {
        padding: 30px 20px;
    }
    .trust-card-main-title {
        font-size: 20px;
    }
    .trust-metrics-grid-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .metric-mini-item {
        padding: 18px 15px;
    }
    .metric-counter-number {
        font-size: 18px;
    }
}
/* -----------------Costumer Review End----------- */

/* -------------------FAQs Start------------------ */
.minimal-faq-section {
    background-color: #FFFFFF;
    padding: 90px 4%;
    border-top: 1px solid #EEEEEE;
}

.minimal-faq-container {
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.minimal-faq-header {
    text-align: left;
}

.minimal-faq-header .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #FF6600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.minimal-faq-header .tag-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #FF6600;
}

.faq-main-title-text {
    font-size: 34px;
    color: #111111;
    font-weight: 800;
    line-height: 1.3;
}

.faq-text-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.qa-item-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 3px solid #EAEAEA;
    padding-left: 20px;
    transition: border-color 0.3s ease;
}

.qa-item-block:hover {
    border-left-color: #FF6600; 
}

.qa-question {
    font-size: 18px;
    color: #FF6600;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.qa-answer {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .minimal-faq-section {
        padding: 60px 4% 40px 4%;
    }
    .faq-main-title-text {
        font-size: 26px;
    }
    .qa-question {
        font-size: 16px;
    }
    .qa-answer {
        font-size: 13.5px;
        line-height: 1.6;
    }
    .qa-item-block {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .faq-main-title-text {
        font-size: 22px;
    }
}
/* ---------------------FAQS End------------------ */

/* -----------------contact form start-------------- */

.premium-contact-section {
    background-color: #FAFAFA;
    padding: 80px 4%;
    font-family: 'Poppins', sans-serif;
}

.p-contact-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.p-contact-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.p-contact-tag {
    display: inline-block;
    background-color: #FFF0E6;
    color: #FF6600;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-contact-header h2 {
    font-size: 34px;
    color: #1A202C;
    font-weight: 700;
    margin-bottom: 12px;
}

.p-contact-header p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

.p-contact-row-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.p-contact-cards-col {
    flex: 0.85;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
    width: 100%;
}

.p-info-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.p-card-icon-orange {
    background-color: #FFF5EE;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-card-text-block h4 {
    font-size: 13px;
    color: #4A5568;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.p-card-text-block .text-muted-headline {
    color: #E65100;
    font-size: 13px;
    font-weight: 700;
}

.p-card-highlight-txt {
    font-size: 18px;
    color: #C2410C;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.p-card-email-txt {
    font-size: 15px;
    color: #C2410C;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.p-card-plain-txt {
    font-size: 16px;
    color: #1A202C;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.p-info-card p {
    font-size: 12px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.p-card-link-maps {
    font-size: 12px;
    color: #718096;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 4px;
}

.p-card-link-maps:hover {
    color: #FF6600;
    text-decoration: underline;
}

.p-mini-features-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.p-mini-features-list span {
    font-size: 11px;
    color: #4A5568;
    font-weight: 600;
}

.p-contact-form-col {
    flex: 1.15;
    width: 100%;
}

.p-form-card-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.p-form-heading-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #EDF2F7;
    padding-bottom: 15px;
}

.p-form-heading-row h3 {
    font-size: 20px;
    color: #1A202C;
    font-weight: 700;
    margin: 0;
}

.p-real-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-form-flex-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.p-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.p-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #4A5568;
}

.p-real-form-grid input, .p-real-form-grid select, .p-real-form-grid textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 13.5px;
    background-color: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    color: #334155;
    outline: none;
    transition: all 0.2s ease;
}

.p-real-form-grid input:focus, .p-real-form-grid select:focus, .p-real-form-grid textarea:focus {
    border-color: #FF6600;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.p-form-submit-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.p-btn-submit-orange {
    width: 100%;
    background-color: #E65100;
    color: #FFFFFF;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.p-btn-submit-orange:hover {
    background-color: #BF360C;
    transform: translateY(-1px);
}

.p-form-footer-note {
    font-size: 11px;
    color: #94A3B8;
    margin: 0;
}

@media (max-width: 991px) {
    .p-contact-row-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .p-contact-cards-col {
        max-width: 100%;
    }
    .p-info-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .p-form-card-box {
        padding: 25px 20px;
    }
    .p-form-flex-row {
        flex-direction: column;
        gap: 20px;
    }
    .p-contact-header h2 {
        font-size: 26px;
    }
}
/* -----------------contact form start-------------- */


/* -------------footer start------------------- */
.premium-footer {
    background-color: #111827;
    color: #9CA3AF;
    padding: 80px 4% 0 4%;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #FF6600;
}

.footer-top-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.footer-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-about {
    max-width: 320px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.footer-orange-txt {
    color: #FF6600;
}

.footer-about-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #9CA3AF;
    margin: 0;
}

.footer-working-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 102, 0, 0.1);
    color: #FF6600;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    width: fit-content;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.footer-col-title {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #FF6600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-list li a:hover {
    color: #FF6600;
    padding-left: 4px;
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-contact-item a, .footer-text-normal {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-call-link {
    font-size: 16px !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

.footer-call-link:hover { color: #FF6600 !important; }
.footer-whatsapp-link:hover { color: #22C55E !important; }
.footer-email-link:hover { color: #FF6600 !important; }

.footer-bottom-bar {
    background-color: #0B0F19;
    margin-top: 60px;
    padding: 24px 4%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6B7280;
}

.footer-bottom-container p { margin: 0; }
.footer-bottom-container strong { color: #9CA3AF; }
@media (max-width: 991px) {
    .footer-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-col-about { max-width: 100%; }
}

@media (max-width: 550px) {
    .premium-footer {
        padding: 60px 4% 0 4%;
    }
    .footer-grid-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* ----------------footer end----------------- */

/* ------------whatsapp button start--------- */
.whatsapp-floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-main-btn {
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-main-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
}

.wa-unread-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #EF4444;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.wa-ping-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: 5;
    opacity: 0.7;
    pointer-events: none;
    animation: whatsappPingAnimation 2.2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

.wave-delay {
    animation-delay: 0.6s;
}

@keyframes whatsappPingAnimation {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-floating-wrapper {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-main-btn {
        width: 54px;
        height: 54px;
    }
    .whatsapp-main-btn svg {
        width: 26px;
        height: 26px;
    }
    .wa-unread-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

.whatsapp-main-btn.shake-active {
    animation: badgeShakeEffect 0.5s ease-in-out;
}

@keyframes badgeShakeEffect {
    0%, 100% { transform: scale(1); }
    20%, 60% { transform: scale(1.05) rotate(-6deg); }
    40%, 80% { transform: scale(1.05) rotate(6deg); }
}

/* -----------whatsapp button end----------- */



/* ---------------------Services Details page Start------------------------------------------------ */

.page-breadcrumb{
    background:#fff;
    border-bottom: 2px solid #e5e7eb;
    padding:5px 0;
    margin-top:0px; 
}

.breadcrumb-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.breadcrumb-home{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#111827;
    font-weight:600;
    transition:.3s;
}

.breadcrumb-home:hover{
    color:#FF6600;
}

.breadcrumb-home svg{
    color:#FF6600;
}

.breadcrumb-separator{
    color:#9ca3af;
    font-weight:600;
}

.breadcrumb-current{
    color:#FF6600;
    font-weight:700;
}


@media(max-width:767px){

    .page-breadcrumb{
        padding:2px 0;
        margin-top:2px;
    }

    .breadcrumb-wrapper{
        font-size:14px;
    }

}
:root{
    --primary:#FF6600;
    --dark:#111827;
}

body{
    font-family: 'Poppins', sans-serif;
    background:#fff;
    color:#333;
}


.services-hero{
    padding-top:120px;
}

.section-badge{
    background:rgba(255,102,0,.1);
    color:var(--primary);
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
}

.hero-title{
    font-size:52px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:20px;
}

.hero-text{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.hero-image{
    border-radius:20px;
    width:100%;
    height:500px;
    object-fit:cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 
                0 5px 15px rgba(0, 0, 0, 0.06);
}


.services-section{
    background:#f8f9fa;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    height:100%;
    border:1px solid #eee;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-card h3{
    font-size:24px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.service-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.service-badges span{
    background:#f2f2f2;
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:500;
}

.service-badges-li {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
}

.service-badges-li span a {
    text-decoration: none !important;
    font-size: 13px;
    color: #FF6600;
    font-weight: 600;
    transition: color 0.2s ease;
    display: inline-block;
}

.service-badges-li span a:hover {
    color: #111111;
}

.service-badges-li span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px; 
    background-color: #E2E8F0;
    margin-left: 8px;
    vertical-align: middle;
}


.service-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
}

.service-btn:hover{
    background:var(--dark);
    color:#fff;
}

.btn-orange{
    background:var(--dark);
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-orange:hover{
    background:var(--primary);
    color:#fff;
}
.service-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.service-image{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:12px 12px 0 0;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.service-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #eee;
    height:100%;
    transition:.3s;
}

.service-content{
    padding:25px;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

@media(max-width:991px){

    .hero-title{
        font-size:40px;
    }

    .hero-image{
        height:400px;
    }

}

@media(max-width:767px){

    .services-hero{
        text-align:center;
    }

    .hero-title{
        font-size:32px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-image{
        height:300px;
    }

    .service-card{
        padding:25px;
    }

}
/* -----------------------Services Details Page Edn----------------------------------------------- */

/* ------------------------------Dubai Details page start---------------------------------------- */

.page-breadcrumb{
    padding:15px 0;
    border-bottom:1px solid #eee;
    background:#fff;
}

.breadcrumb-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.breadcrumb-home{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#111827;
    font-weight:600;
}

.breadcrumb-home svg{
    color:#FF6600;
}

.breadcrumb-wrapper span:last-child{
    color:#FF6600;
    font-weight:700;
}



.location-hero{
    padding:80px 0;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    background:#fff3eb;
    color:#FF6600;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.location-hero h1{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.location-hero p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.hero-features{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.hero-features li{
    padding:8px 0;
    color:#111827;
    font-weight:600;
}

.hero-features li::before{
    content:"✓";
    color:#FF6600;
    margin-right:10px;
    font-weight:bold;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-call,
.btn-whatsapp{
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-weight:700;
}

.btn-call{
    background:#FF6600;
    color:#fff;
}

.btn-whatsapp{
    background:#111827;
    color:#fff;
}

.hero-image{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}



@media(max-width:768px){

    .location-hero{
        padding:50px 0;
    }

    .location-hero h1{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-call,
    .btn-whatsapp{
        width:100%;
        text-align:center;
    }

}

.location-content-section{
    padding:90px 0;
}

.content-image{
    border-radius:20px;
    width:100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 
                0 5px 15px rgba(0, 0, 0, 0.06);
}

.content-tag{
    display:inline-block;
    background:#fff3eb;
    color:#FF6600;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:15px;
    font-weight:600;
}

.location-content-section h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.location-content-section p{
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

.moving-services-details{
    padding:90px 0;
    background:#f8f9fa;
}

.section-heading{
    margin-bottom:50px;
}

.section-heading h2{
    color:#111827;
    font-size:40px;
    font-weight:800;
}

.service-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    height:100%;
    border:1px solid #eee;
}

.service-box h4{
    color:#111827;
    font-weight:700;
    margin-bottom:15px;
}

.service-box p{
    color:#666;
    line-height:1.8;
}


.service-areas{
    padding:90px 0;
}

.area-badges{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.area-badges span{
    background:#111827;
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-weight:600;
}

.area-badges span:hover{
    background:#FF6600;
}

.dubai-services-section{
    padding:90px 0;
    background:#f8f9fa;
}

.section-badge{
    display:inline-block;
    background:#fff3eb;
    color:#FF6600;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.dubai-services-section h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.dubai-services-section p{
    color:#666;
    line-height:1.8;
}

.dubai-service-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    border:1px solid #FF6600;
    height:100%;
    transition:0.3s ease;
}

.dubai-service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    border-color:#FF6600;
}

.dubai-service-card h4{
    color:#111827;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.dubai-service-card p{
    margin:0;
    color:#666;
}


@media(max-width:768px){

    .dubai-services-section{
        padding:60px 0;
    }

    .dubai-services-section h2{
        font-size:32px;
    }

}


.service-details-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    text-decoration:none;
    color:#FF6600;
    font-weight:700;
    transition:0.3s ease;
}

.service-details-link svg{
    transition:0.3s ease;
}

.service-details-link:hover{
    color:#111827;
}

.service-details-link:hover svg{
    transform:translateX(5px);
}

.view-all-services-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#FF6600;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:8px;
    font-weight:700;
    transition:0.3s ease;
}

.view-all-services-btn svg{
    transition:0.3s ease;
}

.view-all-services-btn:hover{
    background:#111827;
    color:#fff;
}

.view-all-services-btn:hover svg{
    transform:translateX(5px);
}


/* ------------------------Other Service Section Start-------------------------------- */
.other-services-section{
    padding:90px 0;
    background:#f8f9fa;
}

.services-links-wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.services-links-wrapper a{
    text-decoration:none;
    color:#111827;
    border:1px solid #e5e7eb;
    background:#fff;
    padding:14px 22px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.services-links-wrapper a:hover{
    background:#FF6600;
    color:#fff;
    border-color:#FF6600;
}
/* -------------------------Other Service Section End-------------------------------- */

/* -------------------------Areas Service Start------------------------------------- */
.areas-serve-section{
    padding:90px 0;
}

.areas-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px 30px;
    margin-top:40px;
}

.areas-list a{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#FF6600;
    font-weight:600;
    font-size:16px;
    transition:.3s ease;
}

.areas-list a svg{
    color:#FF6600;
    flex-shrink:0;
}

.areas-list a:hover{
    color:#111827;
    transform:translateX(5px);
}

.areas-list a:hover svg{
    color:#111827;
}

@media (max-width:768px){

    .areas-list{
        flex-direction:column;
        align-items:flex-start;
    }

    .areas-list a{
        font-size:15px;
    }

}
/* -------------------------Areas Service Start------------------------------------- */

/* -----------------------Useful relocation Resources start-------------------------- */
.resources-section{
    padding:90px 0;
    background:#f8f9fa;
}

.resource-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:30px;
    height:100%;
    transition:.3s;
}

.resource-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.resource-card h4{
    color:#111827;
    font-weight:700;
    margin-bottom:15px;
}

.resource-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.resource-card a{
    text-decoration:none;
    color:#FF6600;
    font-weight:700;
}

.resource-card a:hover{
    color:#111827;
}
/* -------------------------Useful relocation Resources End-------------------------- */
/* -------------------------------Dubai Details Page End----------------------------------------- */

.brand-star-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.custom-brand-star {
    width: auto; 
    height: 65px;        
    max-width: 75px;     
    object-fit: contain;
    
   
    transition: transform 0.3s ease, filter 0.3s ease;
}

.custom-brand-star:hover {
    transform: scale(1.08) rotate(5deg); 
}

@media (max-width: 768px) {
    .custom-brand-star {
        height: 28px;     
        max-width: 35px;
    }
}



.lang-btn{
display:inline-flex;
align-items:center;
justify-content:center;

min-width:120px;
height:48px;

padding:0 22px;

background:#FF6600;
color:#FFFFFF !important;

text-decoration:none;

font-size:15px;
font-weight:700;

border-radius:10px;

transition:0.35s ease;

box-shadow:
0 10px 25px rgba(255,102,0,.18);

white-space:nowrap;
}

.lang-btn:hover{

background:#111827;

color:#FFFFFF !important;

transform:translateY(-2px);

box-shadow:
0 14px 30px rgba(17,24,39,.18);

}

.lang-btn:active{

transform:scale(.98);

}

.lang-btn:focus{

outline:none;

color:#fff;

}


@media(max-width:768px){

.lang-btn{

height:40px;

font-size:12px;

padding:0 18px;

min-width:100px;

}

}

/* --------------------Arabic Fonts----------------------------- */


/* ------------------------Arabic Fonts End------------------------ */

.simple-call-btn {
    position: fixed;
    bottom: 109px; 
    right: 35px;  
    width: 42px;
    height: 42px;
    background-color: #ff6a00; 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.2s ease;
}


.simple-call-btn:hover {
    transform: scale(1.1);
    background-color: #e05d00;
}

@media (max-width: 768px) {
    .simple-call-btn {
        bottom: 95px; 
        right: 23px;  
        width: 38px; 
        height: 38px;
    }
}