:root {
    --letter-spacing-heading: 0px;
    --letter-spacing-body: 0px;
    --space-base: 1rem;
    --radius-small: 4px;
    --radius-large: 12px;
    --border-width: 1px;
    --shadow-color: 0 0 0;
    --shadow-offset-x: 0px;
    --shadow-offset-y: 4px;
    --shadow-blur: 6px;
    --shadow-spread: -1px;
    --shadow-opacity: 0.1;
    --shadow-custom: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-custom-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --brand-orange: #F58634;
    --brand-purple: #5B42C0;
    --brand-purple-dark: #4A33A3;
}

body {
    color: #212529;
    height: auto;
    min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212529;
}

.btn-brand-orange {
    background: linear-gradient(90deg, #E67E22 0%, #F58634 100%);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-small);
    padding: 0.75rem 2rem;
    transition: all 0.3s;
}

.btn-brand-orange:hover {
    background: #e07525;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.3);
}

.btn-brand-purple {
    background: linear-gradient(to right, #f6844b, #2c1fe8);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-small);
    padding: 0.5rem 1.25rem;
    transition: opacity 0.3s;
}

.btn-brand-purple:hover {
    opacity: 0.9;
    color: white;
}

.btn-outline-brand {
    background: transparent;
    color: #212529;
    font-weight: 700;
    border: 2px solid #212529;
    border-radius: var(--radius-small);
    padding: 0.75rem 2rem;
    transition: all 0.3s;
}

.btn-outline-brand:hover {
    background: #212529;
    color: white;
    transform: translateY(-2px);
}

.service-card-new {
    background: white;
    border-radius: var(--radius-large);
    padding: 2rem;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff5f0 0%, #f0f0f9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card-new:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-purple) 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-new:hover .service-icon-wrapper i {
    color: white;
}

.service-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--brand-orange);
    transition: color 0.3s ease;
}

.service-list-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-list-item i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.card-service {
    border-radius: var(--radius-large);
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    height: 100%;
    background: #fff;
}

.card-service:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.card-service:hover .icon-circle {
    background: #fff5f0;
}

.card-service:hover .icon-circle i {
    color: var(--brand-orange);
}

.hero-diagram {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.hero-center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.orbit-item {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    z-index: 0;
}

.orbit-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, 95%);
}

.orbit-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -95%);
}

.orbit-left {
    top: 50%;
    left: 0;
    transform: translate(-25%, -50%);
}

.orbit-right {
    top: 50%;
    right: 0;
    transform: translate(25%, -50%);
}

.orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 1px dashed var(--brand-orange);
    border-radius: 50%;
    opacity: 0.5;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brand-orange);
    border-radius: 50%;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #212529;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.floating-chat {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
}

.floating-chat:hover {
    background: #e07525;
    transform: scale(1.1);
}

.flag-india {
    width: 32px;
    height: 20px;
    background: linear-gradient(to bottom, #FF9933 33.33%, white 33.33%, white 66.66%, #138808 66.66%);
    border: 1px solid #dee2e6;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.flag-india::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #000080;
    border-radius: 50%;
}

.step-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.constraint-card {
    background: #f8fafc;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-large);
    padding: 2rem;
    height: 100%;
}

@media (min-width: 768px) and (max-width: 1380px) {
    .text13 {
        max-width: 96%;
        padding-left: 0;
    }
}

@media screen and (min-width: 360px) and (max-width: 768px) {
    #mob-des {
        width: 100% !important;
    }
}

#moretext {
    display: none;
}

.slide2 {
    margin-left: 40% !important;
    margin-bottom: 3% !important;
}

.services .slide2 {
    margin-left: 0px !important;
}

.slider {
    width: 100%;
    height: 200px;
    position: relative;
    margin: auto;
    overflow-x: scroll;
    overflow-y: hidden;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider .slide {
    display: flex;
    position: relative;
    left: 0;
    transition: 0.3s left ease-in-out;
}

.slider .item {
    margin-right: 10px;
}

.slider .item:last-child {
    margin-right: 0;
}

.ctrl {
    text-align: center;
    margin-top: 5px;
}

.ctrl-btn {
    padding: 20px 20px;
    min-width: 50px;
    background: none;
    border: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    outline: none;
    top: 50%;
    margin-top: 27%;
    /* margin-left: 44%; */
    position: absolute;
}

.ctrl-btn.pro-prev {
    margin-left: 73%;
}

.ctrl-btn.pro-next {
    right: 10%;
}

#Resources {
    margin-top: -50% !important;
}

.hero-section .text-dark {
    line-height: 40px;
    margin-top: 15px;
    background: none;
}

.card-text1 {
    max-width: 90%
}

.banner-rental-portals img {
    width: 100px;
    margin-right: 10px;
    margin-bottom: 0px;
}

#buscon-mob {
    padding-right: 1%;
}

.rental-portals-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (min-width: 360px) and (max-width: 768px) {
    #Resources {
        margin-top: -0% !important;
        display: none !important;
    }

    .carousel-indicators {
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (min-width: 360px) and (max-width: 768px) {
    #Resourcesmob {
        margin-top: -0% !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 2700px) {
    #Resourcesmob {
        margin-top: -0% !important;
        display: none !important;
    }

    #buscon-mob {
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1200px) and (max-width: 2700px) {
    #Resources {
        margin-top: 0% !important;
    }
}

@media screen and (min-width: 360px) and (max-width: 768px) {
    #closemob {
        position: absolute !important;
        margin-left: 60% !important;
    }
}

.toggle-content {
    display: none;
    height: 0;
    overflow: hidden;
    transition: height 150ms ease-in-out;
}

.toggle-content.is-visible {
    display: block;
    height: auto;
    margin-top: -15px;
}

.resercices .nav-item {
    background-color: #fff;
    width: 20%;
    margin: 0.5rem 0.5rem;
    border-radius: 10px;
    border: 1px solid #fff;
}

.resercices .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
}

.resercices .nav-tabs .nav-link.active {
    background-color: #fff;
}

.resercices .nav-tabs h5 i.fa {
    color: #706f6f;
    font-size: 1.50rem;
}

.resercices .nav-item:hover {
    border: 1px solid #4c25d9;
    color: #4c25d9;
}

.resercices .nav-item:hover>a h5 i.fa {
    color: #4c25d9;
}

.resercices .nav-item:hover>a h6 {
    color: #4c25d9;
}

.resercices .tab-content h3 {
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
}

.resercices .tab-content h5 {
    font-weight: bold;
}

.resercices .nav-item a.active:hover {
    border: none;
    background: none;
}

.resercices .nav-item a {
    background: none;
    border: none;
}

.serviceBenefit hr {
    height: 1px;
    opacity: 0.1;
    margin-top: 24px;
    margin-bottom: 25px;
}

.serviceBenefit .services-row [class*='col-'] {
    background-clip: content-box;
    min-height: 100px;
}

.services-row img {
    width: 180px;
    height: 180px;
}

.recent-blogs .card .card-img {
    width: 100%;
    height: 200px;
}

.recent-blogs .card .card-img img {
    width: 100%;
    height: 200px;
}

.recent-blogs .card {
    height: auto;
}

.recent-blogs h5.card-title {
    text-align: left;
    font-weight: 700;
}

.recent-blogs .card-text {
    font-size: 15px;
}

.mobile-view {
    display: none;
}

.mobile-view button.carousel-control-prev {
    background-color: #000;
    width: 25px;
    height: 25px;
    padding: 5px;
    border-radius: 50%;
    top: 50px;
    left: -10px;
}

.mobile-view button.carousel-control-next {
    background-color: #000;
    width: 25px;
    height: 25px;
    padding: 5px;
    border-radius: 50%;
    top: 50px;
    right: -10px;
}

.mobile-view .carousel-control-next-icon {
    top: 0;
}

.carousel-indicators .active {
    background-color: #3e2bd8;
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .resercices .nav-item {
        background-color: #fff;
        width: 31.33%;
    }

    .resercices .nav-tabs {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 960px) {
    .resercices .nav-item {
        background-color: #fff;
        width: 47.7%;
    }
}

@media screen and (max-width: 768px) {
    .resercices .nav-item {
        background-color: #fff;
        width: 45.5%;
    }

    .customers-served {
        background-image: linear-gradient(to right, #fff8f6, #f0f0f9);
    }

    .resercices .tab-content h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .resercices .tab-content h5 {
        font-size: 18px;
        font-weight: bold;
    }

    .hero-section .text-dark {
        line-height: 28px;
    }
    
    .container.header-nav {
        padding-left: 25px;
        padding-right: 25px;
    }

    .service-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .service-icon-wrapper i {
        font-size: 1.2rem;
    }

    .service-header .h5 {
        font-size: 1rem;
    }

    :is(#dmservices, #resource) {
        margin-top: 0% !important;
    }

}

@media screen and (max-width: 448px) {
    .resercices .nav-item {
        background-color: #fff;
        width: 100%;
    }

    .desktop-view {
        display: none !important;
    }

    .mobile-view {
        display: block;
    }

    .mobile-view .carousel-inner {
        height: 125px;
    }

    .banner-rental-portals img {
        width: 80px;
    }

    .rental-portals-flex {
        margin-top: 20px;
    }
}