@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* :root {
    --pointy-blue-primary: #1251E6;
    --pointy-blue-dark: #1A4FD0;
    --pointy-orange: #F39C12;
    --text-primary: #374151;
    --text-secondary: #4B5563;
    --white: #FFFFFF;
    --font-primary: 'Inter', sans-serif;
} */

:root {
    --pointy-blue-primary: #1251E6;
    --pointy-blue-dark: #1A4FD0;
    --pointy-orange: #F39C12;
    --text-primary: #374151;
    --text-secondary: #4B5563;
    --white: #FFFFFF;
    --font-primary: 'Inter', sans-serif;
    --primary-blue: #0061FE;
    --primary-blue-hover: #155dfc;
    --success-green: #22C55E;
    --success-green-light: #f0fdf4;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-lite: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

body {
    word-break: break-word;
    font: 15px/25px "Inter", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 300;
    line-height: 1.6;
}

/* Logo specific styles */
.navbar-brand {
    padding: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--pointy-blue-primary);
    letter-spacing: -0.5px;
    line-height: 1;
    font-family: "Inter", sans-serif;
}

/* Custom 4-dot Logo Icon */
.logo-icon-grid {
    display: flex;
    flex-wrap: wrap;
    width: 20px;
    height: 20px;
    gap: 3px;
    /* Space between the dots */
    padding-top: 2px;
}

.icon-dot {
    width: 8px;
    height: 8px;
}

/* Creating the rounded corners on the outside, matching the PointyDot logo */
.dot-tl {
    background-color: var(--pointy-orange);
    border-radius: 4px 0 0 0;
}

.dot-tr {
    background-color: var(--pointy-blue-primary);
    border-radius: 0 4px 0 0;
}

.dot-bl {
    background-color: var(--pointy-blue-primary);
    border-radius: 0 0 0 4px;
}

.dot-br {
    background-color: var(--pointy-blue-primary);
    border-radius: 0 0 4px 0;
}

/* Navigation Links */
.pointy-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 5px;
    transition: 0.2s ease-in-out;
}

.pointy-nav-link:hover {
    color: var(--text-primary) !important;
}

.pointy-nav-link svg {
    margin-top: 1px;
    color: #8c9097;
    /* The chevron color is usually lighter gray */
    transition: 0.2s ease-in-out;
}

/* ----------------------------------
   Banner Section
----------------------------------- */
.pointy-banner {
    width: 100%;
    /* Exact banner height estimation based on screenshot proportion */
    min-height: 380px;
    padding: 60px 0;
    background: linear-gradient(0deg, rgba(0, 53, 176, 1) 0%, rgba(18, 81, 230, 1) 100%);
}

.banner-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    /* Adjusted font weight and size to match React text-5xl (48px) and default weight */
    letter-spacing: -0.5px;
}

.banner-subtitle {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    letter-spacing: 0.2px;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* Dropdown styling */
.pointy-dropdown {
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.pointy-dropdown .dropdown-item {
    font-size: 15px;
    color: #000;
    transition: background-color 0.2s;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #f1f1f1;
}

.pointy-dropdown .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}


@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid #e5e7eb;
    }
}

.service-card {
    border-color: #e5e7eb;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-color: #60a5fa !important;
}

/*  */

/* Generated Utility Classes */
.cursor-pointer {
    cursor: pointer;
}

.fs-sm {
    font-size: 13.5px;
}

.feature-icon-purple {
    width: 64px;
    height: 64px;
    background-color: #f3e8ff;
}

.fs-15 {
    font-size: 15px;
}

.header-logo-img {
    height: 32px;
}

.fs-xs {
    font-size: 13px;
}

.max-w-2xl {
    max-width: 42rem;
}

.inset-0 {
    top: 0;
    left: 0;
}

.bg-gray-50 {
    background-color: #f9fafb !important;
}

.min-h-480 {
    min-height: 480px;
}

.avatar-sm {
    width: 44px;
    height: 44px;
}

.min-h-56 {
    min-height: 56px;
}

.section-title {
    font-size: 30px;
    font-weight: 400;
}

.feature-icon-green {
    width: 64px;
    height: 64px;
    background-color: #dcfce7;
}

.border-l-primary {
    border-left: 4px solid #2563eb;
}

/*  */

/* Generated Utility Classes */
.cursor-pointer {
    cursor: pointer;
}

.fs-sm {
    font-size: 13.5px;
}

.feature-icon-purple {
    width: 64px;
    height: 64px;
    background-color: #f3e8ff;
}

.fs-15 {
    font-size: 15px;
}

.header-logo-img {
    height: 32px;
}

.fs-xs {
    font-size: 13px;
}

.max-w-2xl {
    max-width: 42rem;
}

.inset-0 {
    top: 0;
    left: 0;
}

.bg-gray-50 {
    background-color: #f9fafb !important;
}

.min-h-480 {
    min-height: 480px;
}

.avatar-sm {
    width: 44px;
    height: 44px;
}

.min-h-56 {
    min-height: 56px;
}

.section-title {
    font-size: 30px;
    font-weight: 500;
}

.feature-icon-green {
    width: 64px;
    height: 64px;
    background-color: #dcfce7;
}

.border-l-primary {
    border-left: 4px solid #2563eb;
}

.max-w-7xl {
    max-width: 72rem;
}

.section-title-lg {
    font-size: 36px;
    font-weight: 500;
}

.feature-icon-blue {
    width: 64px;
    height: 64px;
    background-color: #dbeafe;
}

.fs-16 {
    font-size: 16px;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.feature-icon-orange {
    width: 64px;
    height: 64px;
    background-color: #ffedd5;
}

/* Footer Classes */
.bg-gray-900 {
    background-color: #111827 !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.border-t-gray-800 {
    border-top: 1px solid #1f2937 !important;
}

.footer-link-hover {
    transition: color 0.2s ease-in-out;
}

.footer-link-hover:hover {
    color: #ffffff !important;
}

header .dropdown-toggle::after {
    display: none;
}

.pointy-dropdown>li:last-child .dropdown-item {
    border: 0;
}

header .pointy-nav-link:hover {
    color: #0e68de !important;
}

header .pointy-nav-link:hover svg {
    color: #1251e6;
}

header .pointy-nav-link.show svg {
    transform: rotate(180deg);
}

.pointer-features p.text-secondary.fs-15 {
    line-height: 1.6;
    width: 80%;
    font-weight: 300;
}

.service-card h3 {
    font-weight: 400;
}

.service-card p {
    font-weight: 300;
}

.slick-arrow:before {
    display: none;
}

.success-stories-slider .slick-list {
    padding: 30px 0px 50px;
}

.success-stories-slider .slick-list .slick-slide {
    margin: 0 40px;
}

.success-stories-slider .succs_box {
    border-radius: 20px;
}

.success-stories-slider .succs_box img {
    object-fit: cover;
}

.success-stories-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    bottom: 10px;
}

.success-stories-slider .slick-dots>li {
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
}

.success-stories-slider .slick-dots>li>button {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0;
}

.success-stories-slider .slick-dots>li>button:before {
    position: absolute;
    content: "";
    background: #d1d5dc;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 1;
}

.success-stories-slider .slick-dots li.slick-active {
    width: 50px;
    opacity: 1;
}

.success-stories-slider .slick-dots li.slick-active button:before {
    background: #155dfc;
}

.mb-10 {
    margin-bottom: 100px;
}

.pointy-banner.inn_banner {
    min-height: 280px;
}

/* inner pages */

.all_sec {
    padding: 70px 0px;
}

h2.sub-title {
    color: #101828;
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

p.sub-para {
    color: #4a5565;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission_secc .mission_box {
    padding: 25px;
    background: #eff6ff;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 100%;
    max-height: -webkit-fill-available;
}

.mission_secc .mission_box svg {
    color: #155dfc;
    width: 50px;
    height: 50px;
}

.mission_secc .mission_box>h3 {
    color: #101828;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 9px;
}

.mission_secc .mission_box>p {
    margin: 0;
    font-size: 16px;
    color: #4a5565;
}

.our_story_secc .story_text_box {
    width: 70%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.our_story_secc .story_text_box p {
    color: #000;
}

.our_story_secc .story_text_box p:last-child {
    margin: 0;
}

.core_values_secc .core_value_box {
    text-align: center;
    padding: 30px;
}

.core_values_secc .core_value_box>span {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
    background: #dbeafe;
    border-radius: 50%;
}

.core_values_secc .core_value_box>span>svg {
    width: 35px;
    height: 35px;
    color: #155dfc;
}

.core_values_secc .core_value_box>h3 {
    color: #101828;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
}

.core_values_secc .core_value_box>p {
    margin: 0;
    color: #4a5565;
}

.cta_sec {
    background: #155dfc;
    text-align: center;
    padding: 70px 0px;
}

.cta_sec h2 {
    color: #fff;
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta_sec p {
    color: #dbeafe;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.cta_sec ul.cta_btns {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.theme_btn {
    color: #0758ef;
    background: #fff;
    padding: 0px 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.theme_btn:hover {
    background: #e4e4e4;
    color: #0758ef;
}

.contact_sec form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.contact_sec form>h2 {
    color: #101828;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.contact_sec form>.grp_inp>label {
    display: block;
    color: #364153;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact_sec form>.grp_inp {
    margin-bottom: 20px;
}

.contact_sec form>.grp_inp>input {
    width: 100%;
    height: 50px;
    border: 1px solid #d1d5dc;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 300;
}

.contact_sec form>.grp_inp>input:focus {
    border-color: #1251e6;
}

.contact_sec form>.grp_inp>textarea {
    width: 100%;
    border: 1px solid #d1d5dc;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 300;
    resize: none;
    height: 150px;
}

.contact_sec form>.grp_inp>textarea:focus {
    border-color: #1251e6;
}

.contact_sec form>button.sub_btn {
    width: 100%;
    align-items: center;
    gap: 10px;
    display: flex;
    justify-content: center;
    color: #fff;
    border: 0;
    background: #1251e6;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 300;
    transition: 0.2s ease-in-out;
}

.contact_sec form>button.sub_btn:hover {
    background: #083ebc;
}

.how_can_help_sec .how_can_help_box {
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #ebe6e7;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.2s ease-in-out;
    height: 190px;
}

.how_can_help_sec .how_can_help_box>svg {
    color: #155dfc;
}

.how_can_help_sec .how_can_help_box>.how_can_help_textt_box>h3 {
    color: #101828;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.how_can_help_sec .how_can_help_box>.how_can_help_textt_box>p {
    color: #4a5565;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.how_can_help_sec .how_can_help_box>.how_can_help_textt_box>a {
    color: #155dfc;
}

.how_can_help_sec .how_can_help_box:hover {
    box-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
}

.video_tutorial_sec .video_tutorial_box {
    background: #fbf9fa;
    border: 1px solid #ebe6e7;
    border-radius: 10px;
    transition: 0.2s ease-in-out;
}

.video_tutorial_sec .video_tutorial_box>img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.video_tutorial_sec .video_tutorial_box>h3 {
    color: #101828;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-top: 20px;
}

.video_tutorial_sec .video_tutorial_box>p {
    color: #4a5565;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-left: 20px;
}

.video_tutorial_sec .video_tutorial_box>a {
    padding-bottom: 20px;
    display: block;
    padding-left: 20px;
    color: #0e68de;
    font-size: 16px;
}

.video_tutorial_sec .video_tutorial_box:hover {
    box-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
}

.sign_in_secc {
    background: #e8efff;
}

.sign_in_secc .sign_in_form_wrpr {
    box-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 95%;
    margin: 0 auto;
}

.sign_in_secc .sign_in_form_wrpr>span {
    text-align: center;
    display: block;
    color: #155dfc;
    font-size: 16px;
    margin-bottom: 15px;
}

.sign_in_secc .sign_in_form_wrpr>p {
    text-align: center;
    color: #4a5565;
    font-size: 16px;
    margin-bottom: 20px;
}

.sign_in_secc .sign_in_form_wrpr>form>.grp_inp {
    position: relative;
    margin-bottom: 20px;
}

.sign_in_secc .sign_in_form_wrpr>form>.grp_inp>label {
    display: block;
    color: #364153;
    font-size: 15px;
    margin-bottom: 5px;
}

.sign_in_secc .sign_in_form_wrpr>form>.grp_inp>input {
    width: 100%;
    height: 50px;
    border: 1px solid #d1d5dc;
    padding: 0 20px;
    border-radius: 10px;
    padding-left: 35px;
    font-size: 14px;
}

.sign_in_secc .sign_in_form_wrpr>form>.grp_inp>svg {
    position: absolute;
    left: 10px;
    bottom: 15px;
    width: 20px;
    height: 20px;
}

.sign_in_secc .sign_in_form_wrpr>form>.grp_inp>input:focus {
    border-color: #1251e6;
}

.sign_in_secc .sign_in_form_wrpr>form .remembr_bx {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sign_in_secc .sign_in_form_wrpr>form .remembr_bx>label {
    display: block;
    color: #364153;
    font-size: 15px;
}

.sign_in_secc .sign_in_form_wrpr>form a.f_link {
    color: #155dfc;
    font-size: 16px;
    font-weight: 500;
}

.sign_in_secc .sign_in_form_wrpr>form button {
    width: 100%;
    margin: 20px 0px;
    height: 50px;
    border: 0;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    background: #1251e6;
    font-weight: 300;
    transition: 0.2s ease-in-out;
}

.sign_in_secc .sign_in_form_wrpr>form button:hover {
    background: #0d43c4;
}

.sign_in_secc .sign_in_form_wrpr>form p.continue_textt {
    text-align: center;
    position: relative;
    color: #6a7282;
    font-size: 14px;
    font-weight: 400;
    margin: 20px auto;
}

.sign_in_secc .sign_in_form_wrpr>form p.continue_textt:after {
    position: absolute;
    content: "";
    background: #dddddd;
    width: 37%;
    height: 1px;
    left: 0;
    bottom: 10px;
}

.sign_in_secc .sign_in_form_wrpr>form p.continue_textt:before {
    position: absolute;
    content: "";
    background: #dddddd;
    width: 37%;
    height: 1px;
    right: 0;
    bottom: 10px;
}

.sign_in_secc .sign_in_form_wrpr>form ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sign_in_secc .sign_in_form_wrpr>form ul>li>a {
    box-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0px;
    color: #000;
    border-radius: 5px;
    background: #fff;
    transition: 0.2s ease-in-out;
}

.sign_in_secc .sign_in_form_wrpr>form ul>li {
    width: 100%;
}

.sign_in_secc .sign_in_form_wrpr>form ul>li>a>svg {
    width: 20px;
    height: 20px;
}

.sign_in_secc .sign_in_form_wrpr>form ul>li>a:hover {
    background: #fbf9fa;
}

.sign_in_secc.create_acc .sign_in_form_wrpr>span {
    font-size: 24px;
    color: #1345d5;
}

.sign_in_secc.create_acc .sign_in_form_wrpr>p {
    border-bottom: 1px solid #d1d5dc;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.freelancer_services_secc h2.sub-title {
    font-size: 3rem;
    color: #000;
    font-weight: 500;
}

.freelancer_services_secc form.filtr_wrpr {
    margin-top: 90px;
    margin-bottom: 30px;
}

.freelancer_services_secc form.filtr_wrpr select.form-select {
    border: 1px solid #d1d5dc;
    height: 50px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 300;
    color: #000;
}

.freelancer_services_secc form.filtr_wrpr select.form-select:focus {
    box-shadow: none;
    border-color: #2e65e9;
}

.freelancer_services_secc form.filtr_wrpr .grp_inp {
    position: relative;
}

.freelancer_services_secc form.filtr_wrpr .grp_inp>input {
    width: 100%;
    border: 1px solid #d1d5dc;
    height: 50px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 300;
    color: #000;
    padding-left: 40px;
    outline: none;
    padding-right: 10px;
}

.freelancer_services_secc form.filtr_wrpr .grp_inp>svg {
    position: absolute;
    left: 10px;
    top: 12px;
    width: 20px;
}

.freelancer_services_secc .servc_box {
    border: 1px solid #ebe6e7;
    display: block;
    border-radius: 10px;
    transition: 0.2s ease-in-out;
    height: 100%;
    margin-bottom: 25px;
    max-height: -webkit-fill-available;
}

.freelancer_services_secc .servc_box .servc_img>img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.freelancer_services_secc .servc_box .servc_textt {
    padding: 20px;
}

.freelancer_services_secc .servc_box .servc_textt h3 {
    font-size: 1.125rem;
    color: #000;
}

.freelancer_services_secc .servc_box .servc_textt p {
    color: #4a5565;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.6;
}

.freelancer_services_secc .servc_box .servc_textt span.tgg {
    color: #1447e6;
    font-size: 13px;
    background: #dbeafe;
    display: block;
    padding: 7px 15px;
    line-height: 1;
    border-radius: 20px;
}

.freelancer_services_secc .servc_box .servc_textt .rat_wt svg {
    width: 16px;
    color: #4a5565;
    height: 16px;
}

.freelancer_services_secc .servc_box .servc_textt .rat_wt svg.lucide.lucide-star.w-4.h-4.fill-yellow-400.text-yellow-400 {
    fill: #fdc700;
    color: #fdc700;
}

.freelancer_services_secc .servc_box .servc_textt .rat_wt span {
    color: #4a5565;
    font-size: 14px;
}

.freelancer_services_secc .servc_box .servc_textt .addr_wt svg {
    width: 16px;
    color: #4a5565;
    height: 16px;
}

.freelancer_services_secc .servc_box .servc_textt .addr_wt span {
    color: #4a5565;
    font-size: 14px;
}

.freelancer_services_secc .servc_box .servc_textt ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ebe6e7;
    padding-top: 20px;
    margin-top: 20px;
}

.freelancer_services_secc .servc_box .servc_textt ul>li {
    color: #4a5565;
    font-size: 15px;
}

.freelancer_services_secc .servc_box .servc_textt ul>li>h4 {
    color: #101828;
    font-size: 24px;
    line-height: 1;
    margin: 0;
}

.freelancer_services_secc .servc_box:hover {
    box-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
}

.freelancer_services_secc form.filtr_wrpr .grp_inp>input:focus {
    border-color: #1251e6;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt span.tgg {
    color: #008236;
    background: #dcfce7;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .annual_wrpr {
    margin-top: 15px;
    border-bottom: 1px solid #ebe6e7;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .annual_wrpr span.hding {
    color: #4a5565;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .annual_wrpr p {
    color: #101828;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .annual_wrpr .staff_div>svg {
    width: 16px;
    height: 16px;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .annual_wrpr .staff_div>span {
    font-size: 15px;
    color: #4a5565;
    font-weight: 300;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .annual_wrpr span {
    font-size: 15px;
    color: #4a5565;
    font-weight: 300;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .asking_wrpr {
    border-top: 1px solid #ebe6e7;
    padding-top: 15px;
    margin-top: 15px;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .asking_wrpr p {
    color: #4a5565;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .asking_wrpr h4 {
    color: #000;
    font-size: 20px;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .asking_wrpr span {
    color: #6a7282;
    font-size: 12px;
    display: block;
    line-height: 1;
    font-weight: 300;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .views_div {
    border-top: 1px solid #ebe6e7;
    padding-top: 15px;
    margin-top: 15px;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .views_div>svg {
    width: 16px;
    height: 16px;
    color: #6a7282;
}

.freelancer_services_secc.business_serv .servc_box .servc_textt .views_div>span {
    color: #6a7282;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.howit_works_secc .howit_works_box {
    border: 1px solid #ebe6e7;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.howit_works_secc .howit_works_box>span {
    background: #155dfc;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.howit_works_secc .howit_works_box>h3 {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 300;
}

.howit_works_secc .howit_works_box>p {
    margin: 0;
    color: #6a7282;
    font-size: 16px;
}

.hire_team_secc {
    background: #fbf9fa;
}

.hire_team_secc .hire_team_box {
    border: 1px solid #f6f3f4;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: 0.2s ease-in-out;
    margin-bottom: 20px;
}

.hire_team_secc .hire_team_box>.hire_team_top {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-bottom: 20px;
}

.hire_team_secc .hire_team_box>.hire_team_top>img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

.hire_team_secc .hire_team_box>.hire_team_top>.hire_team_top_textt>h3 {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.2;
    margin-bottom: 5px;
    font-weight: 400;
}

.hire_team_secc .hire_team_box>.hire_team_top>.hire_team_top_textt>p {
    margin: 0;
    color: #4a5565;
    font-size: 14px;
}

.hire_team_secc .hire_team_box>.hire_team_top>span.blue_tickk {
    position: absolute;
    right: 0;
    top: 0;
    background: #155dfc;
    color: #fff;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hire_team_secc .hire_team_box>p {
    color: #6a7282;
    font-size: 15px;
}

.hire_team_secc .hire_team_box>.hire_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hire_team_secc .hire_team_box>.hire_rating>svg {
    fill: #f0b100;
    color: #f0b100;
    width: 16px;
    height: 16px;
}

.hire_team_secc .hire_team_box>.hire_rating>span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.hire_team_secc .hire_team_box>.hire_rating>p {
    margin-bottom: 0;
    font-size: 14px;
    margin-left: 10px;
    padding-left: 10px;
    position: relative;
}

.hire_team_secc .hire_team_box>.hire_rating>p:before {
    position: absolute;
    content: "";
    background: #d1d5dc;
    width: 5px;
    height: 5px;
    left: -3px;
    top: 8px;
    border-radius: 50%;
}

.hire_team_secc .hire_team_box>ul {
    margin-bottom: 20px;
    margin-top: 15px;
    border-top: 1px solid #f6f3f4;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hire_team_secc .hire_team_box>ul>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hire_team_secc .hire_team_box>ul>li>p {
    margin: 0;
    color: #6a7282;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.hire_team_secc .hire_team_box>ul>li>span {
    line-height: 1;
    color: #101828;
    font-size: 14px;
    font-weight: 400;
}

.hire_team_secc .hire_team_box>a {
    background: #155dfc;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 40px;
    color: #fff;
    font-size: 15px;
    border-radius: 10px;
    transition: 0.2s ease-in-out;
}

.hire_team_secc .hire_team_box>a:hover {
    background: #0745ce;
}

.hire_team_secc .hire_team_box:hover {
    box-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
}

/*  */


/* service-detail :start */
.service-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #51a2ff 0%, #ad46ff 100%);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    height: 384px;
}

/* Main Card Styling */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    /* height: 100%; */
    border: 1px solid #ebe6e7;
}

.card-header.tabs {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 0 20px;
    display: flex !important;
    gap: 32px;
    justify-content: space-between;
}

.tab {
    background: none;
    border: none;
    padding: 16px 0;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.tab i {
    font-size: 0.9rem;
}

.tab:hover {
    color: var(--primary-blue);
}

.tab.active {
    color: var(--primary-blue);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
}

.tab-pane {
    display: none;
    padding: 24px;
}

.tab-pane.active {
    display: block;
}

/* Sidebar Styling */
.sidebar-card {
    padding: 24px;
    border: 1px solid #ebe6e7;
    border-radius: 15px;
}

.sidebar-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-main {
    font-size: 2rem;
    margin-bottom: 24px;
}

.bid-box-green {
    background-color: var(--success-green-light);
    border: 1px solid #DCFCE7;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}

.bid-price {
    color: var(--success-green);
    font-size: 1.5rem;
    margin: 0;
}

.btn-primary-bid {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px;
    width: 100%;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.btn-primary-bid:hover {
    background-color: var(--primary-blue-hover);
}

.btn-outline-negotiate {
    background: transparent;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
    border-radius: var(--radius-md);
    padding: 12px;
    width: 100%;
    transition: all 0.2s;
}

.btn-outline-negotiate:hover {
    background: #F0F7FF;
}

.trust-section {
    margin-top: 24px;
    padding: 0 4px;
}

.trust-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Stat Cards */
.stat-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: left;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-value {
    font-size: 1.25rem;
    margin-top: 10px;
}

/* Bid History List */
.bid-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #F8F9FA;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid transparent;
}

.bid-history-item.leading {
    background-color: #f0fdf4;
    border: 1px solid #b9f8cf;
}

.bidder-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background-color: #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
}

.bidder-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.bidder-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bid-amount {
    font-size: 1.1rem;
}

.bid-amount.leading {
    color: var(--success-green);
}

/* Negotiation Content */
.guidelines-card {
    background-color: #F8FAFC;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.chat-container {
    height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    background: white;
    margin-bottom: 20px;
}

/* Message Bubble Alignment */
.message-list {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
}

.message-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    position: relative;
}

.message-bubble.buyer {
    background-color: var(--primary-blue);
    color: white;
    align-self: flex-end;
    /* Move to RIGHT */
    border-bottom-right-radius: 2px;
}

.message-bubble.buyer .text-muted,
.message-bubble.buyer .small {
    color: rgba(255, 255, 255, 0.8) !important;
}

.message-bubble.seller {
    background-color: #F1F5F9;
    color: var(--text-main);
    align-self: flex-start;
    /* Move to LEFT */
    border-bottom-left-radius: 2px;
}

.offer-bubble {
    background-color: var(--primary-blue) !important;
    color: white !important;
    border: none;
    align-self: flex-end;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.offer-bubble .text-muted,
.offer-bubble .small,
.offer-bubble .opacity-75 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.offer-bubble .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.offer-bubble .badge {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

/* Sidebar Sticky */
.sidebar {
    position: sticky;
    top: 95px;
    z-index: 100;
}

.chat-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: white;
    border-top: 1px solid var(--border-color);
}

.chat-input-wrapper {
    flex-grow: 1;
}

.chat-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
}

.chat-input:focus {
    border-color: var(--primary-blue);
}

/* Offer Form Section (instead of modal) */
.offer-form-section {
    display: none;
    /* Hidden by default */
    padding: 24px;
    background: #F8FAFC;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.offer-form-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-blue);
}

.offer-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

section.service-dtl-wrap .container {
    max-width: 72rem;
}

div#details h2 {
    font-size: 1.5rem;
}

html .text-muted {
    color: #4a5565 !important;
}

span.text-warning.me-2 {
    font-size: 1.125rem;
    color: #0a0a0a !important;
}

span.text-warning.me-2 i {
    color: #ffc107;
}

.delivery-time-bdr {
    border-top: 1px solid #ebe6e7;
    border-bottom: 1px solid #ebe6e7;
    padding: 10px 0;
    margin-top: 0px;
}

.row.g-3.mb-4 .col-md-4 {
    margin: 0;
}

.stat-label-text h6 {
    color: #4a5565;
    margin: 0;
    font-size: .875rem;
}

.stat-label-text div {
    color: #0a0a0a;
}

.stat-label i {
    font-size: 20px;
}

.text-success {
    color: oklch(62.7% .194 149.214) !important;
}

span.badge.bg-success.ms-2 {
    background: #00a63e !important;
    border-radius: 50px;
}

.bid-history-item.leading .avatar-circle {
    background: #b9f8cf;
}

button#makeOfferBtn {
    background: #00a63e;
    border: unset;
}

button.btn.btn-primary.flex-grow-1.py-2.fw-semibold {
    background: #1447e6;
}

button.btn.btn-primary.px-4 {
    background: #155dfc;
    height: 50px;
}

input#chatInput {
    height: 50px;
    border-radius: 8px;
}