.container {
    max-width: 1820px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container2 {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

/*  ==== TOPBAR ==== */
.topbar {
    background: #0b125a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

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

.topbar-info,
.topbar-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.topbar-social {
    gap: 15px;
}

.topbar-info-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s all ease;
}

.topbar-info-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.topbar-social-link {
    transition: 0.3s all ease;
}

.topbar-social-link:hover {
    transform: scale(1.1);
}

/* ===== Navbar==== */
.navbar {
    background-color: #F08526;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* padding: 20px 0; */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
}

.navlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.navbar-menu .navlist .active {
    width: fit-content;
    /* text-decoration: underline; */

}

.navlink {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #0b125a;
    transition: 0.3s ease;
    position: relative;
}

.navlink svg path {
    transition: 0.3s ease;
}

.navlink::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 0%;
    background: #fff;
    top: 100%;
    transition: 0.3s ease;
}

.navlink:hover {
    color: #fff;
}

.navlink:hover::before {
    width: 100%;
}

.navlink:hover svg path {
    stroke: #fff;
}

.navbar-action-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ede1f3;
    color: #0b125a;
}

.btn-primary:hover {
    color: #0b125a;
    border-color: currentColor;
}

/* ==== sign in dropdown ==== */

.navbar-btns .sign-dropdown {
    position: relative;

}

/* Button */
.dropdown-btn {
    background: #e6e1f0;
    color: #1e1b4b;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Menu */
.dropdown-menu {
    position: absolute;
    top: 190px;
    right: 200px;
    background: #0b1b6f;
    border-radius: 16px;
    padding: 10px 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

/* Show dropdown */
.sign-dropdown:hover .dropdown-menu,
.sign-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu items */
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.dropdown-menu li a:hover {
  color: var(--orange);
}


.btn-secondary {
    background: #0b125a;
    color: #ede1f3;
}

.btn-secondary:hover {
    color: #0b125a;
    background: #ede1f3;
    border-color: currentColor;
}

.menu-btn {
    display: none;
    font-size: 18px;
}

.nav-item {
    position: relative;
}

.dropdown-navlist {
    right: 50%;
    transform: translateX(50%);
    top: 60px;
    position: absolute;
    background: #0B125A;
    padding: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;

    /* Hide Dropdown */
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY((10px));
    transition: 0.3s ease;
    z-index: 9999;
}

/* show dropdown on hover */
.nav-item:hover .dropdown-navlist {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(50%) translateY((0));
}

/* for click toggle (mobile) */
.nav-item.active .dropdown-navlist {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(50%) translateY(0);
}

.dd-navitem:not(:last-child) {
    margin-bottom: 18px;
}

.dd-navitem {
    position: relative;
}

.dd-navitem::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* right: 0; */
    height: 10px;
    width: 10px;
    background: url('../asset/HOME_PAGE/navbar/arrow-cream-orange.svg') no-repeat center;
    padding-left: 25px;
}

.dd-navlink {
    font-size: 18px;
    font-family: "Judson", serif;
    letter-spacing: 0.05em;
    color: #FFE8D2;
    white-space: nowrap;
    transition: 0.3s all ease;
}

.dd-navlink:hover {
    color: #F08526;
}

.dropdown-navlist hr {
    border-top: 1px solid rgb(255, 255, 255, 0.3);
    margin-bottom: 16px;
}


/* ==== topbar end ==== */

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */




/* tobbar start */
@media screen and (max-width: 1440px) {
    .navlist {
        gap: 18px;
    }

    .navbar-action-btns {
        gap: 16px;
    }

    .btn {
        padding: 13px 30px;
    }
}

/* Large devices (laptops) */
@media (max-width: 1200px) {
    nav {
        gap: 10px;
    }

    .btn {
        padding: 8px 14px;
    }
}

/* Medium devices (tablets landscape) */
@media screen and (max-width: 1024px) {
    .topbar {
        padding: 18px 0;
    }

    .topbar-info {
        gap: 12px;
    }

    .topbar-social {
        gap: 6px;
    }

    .topbar-info-link {
        font-size: 12px;
    }

    .topbar-info-link figure,
    .topbar-social-link figure {
        max-width: 12px;
    }

    .navbar {
        padding: 16px 0;
    }

    nav {
        padding: 8px 10px;
        position: relative;
    }

    .navbar-brand {
        max-width: 70px;
    }

    .navlink {
        color: #ffe8d2;
    }

    .navlink svg path {
        stroke: #ffe8d2;
    }

    .navbar-menu {
        /* display: none; */
        position: absolute;
        top: 110%;

        transform: translateX(-50%);
        /* Frost / base */
        background: rgba(11, 18, 90, 1);
        backdrop-filter: blur(16px) saturate(140%);
        -webkit-backdrop-filter: blur(16px) saturate(140%);
        /* Depth */
        border: 1px solid rgba(255, 255, 255, 0.14);
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 0;
        border-radius: 50px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.3s ease;
        z-index: 999;
    }

    .navbar-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
        z-index: 999;
    }

    .navlist {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-action-btns {
        gap: 12px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 16px;
    }

    .menu-btn {
        font-size: 35px;
        display: block;
        /* color: #ede1f3; */
    }


    /* sign in dropdown */

    .dropdown-menu {
        top: 75px;
        right: 130px;

    }

    .dropdown-menu li a {
        padding: 10px 12px;
        font-size: 16px;
    }
}

/* Tablets */
@media (max-width: 992px) {}

/* Small tablets / large phones */
@media screen and (max-width: 768px) {
    .topbar-wrapper {
        justify-content: center;
    }

    .topbar-rgt {
        display: none;
    }



}

/* Mobile devices */
@media (max-width: 576px) {
    nav {
        padding: 4px 8px 4px 4px;
    }

    .navbar-brand {
        max-width: 55px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .menu-btn {
        font-size: 30px;
    }

    .navlink {
        font-size: 12px;
    }

    .navbar-menu {
        border-radius: 30px;
    }

    /* sign in dropdown */

    .dropdown-menu {
        top: 60px;
        right: 100px;

    }

    .dropdown-menu li a {
        font-size: 14px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .topbar {
        display: none;
    }

    .navbar-action-btns {
        gap: 8px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {

    /* sign in dropdown */
    .dropdown-menu {
        top: 60px;
        right: 110px;
    }

    .dropdown-menu li a {
        font-size: 10px;
    }
}

/* Very small phones */
@media (max-width: 320px) {}



/* topbar end */



/* profile-section" */

.profile-section {
    padding: 30px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    color: #0B125A;
    margin-bottom: 18px;
}

.profile-info {
    display: block;
    margin: auto;
    max-width: 800px;
    gap: 18px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.profile-header img {
    width: 67px;
    height: 63px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}

.profile-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #e56c00;
}

.profile-header .designation {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.favorite-star {
    margin-left: auto;
    font-size: 24px;
    color: #ccc;
}

.details-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.details-list li {
    margin: 6px 0;
}

.details-list a {
    color: #1a2a55;
}


.badge-group,
.more-services {

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    transition: 0.3s all ease;
}

.badge-group .label {
    font-weight: 500;
    margin-right: 6px;
}

.badge {

    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.2), -3px 3px 8px rgba(0, 0, 0, 0.2);
    color: #333;
    transition: .3s all ease;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-3px);
}

.more-services .label {
    font-weight: 500;
    margin-right: 6px;
}

.bio-box {
    margin-top: 24px;
    border: 1px solid #ddd;
    background: #fcfcfc;
    border-radius: 6px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 768px) {
    .nav-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 992px) {


    .top-info-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .top-info-bar a {
        font-size: 13px;
    }

    .top-info-bar .info-right {
        align-self: flex-end;
    }


    .nav-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
        font-size: 15px;
    }

    .nav-buttons .btn {
        padding: 8px 14px;
        font-size: 13px;
    }


    .profile-section {
        padding: 24px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }


    .details-list {
        font-size: 13px;
    }

    .details-list li {
        margin: 5px 0;
    }

    .badge-group .badge,
    .more-services .badge {
        padding: 4px 8px;
        font-size: 12px;
    }


    .bio-box {
        font-size: 13px;
        padding: 14px 16px;
    }
}


@media (max-width: 768px) {


    .top-info-bar .container {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }

    .top-info-bar .info-right {
        justify-content: center;
    }

    .top-info-bar a,
    .top-info-bar .icon {
        font-size: 12px;
    }


    .nav-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
        font-size: 14px;
    }

    .nav-buttons {
        width: 100%;
        text-align: center;
    }

    .nav-buttons .btn {
        display: block;
        width: 80%;
        margin: 0 auto;
        font-size: 14px;
        padding: 8px;
    }


    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .favorite-star {
        margin-left: 0;
    }


    .details-list {
        font-size: 13px;
    }

    .details-list li {
        margin: 5px 0;
    }


    .badge-group .badge,
    .more-services .badge {
        padding: 4px 8px;
        font-size: 12px;
    }


    .bio-box {
        font-size: 13px;
        padding: 14px 16px;
    }

}


@media (max-width: 480px) {


    .top-info-bar a,
    .top-info-bar .icon {
        font-size: 11px;
    }

    .nav-links {
        font-size: 13px;
    }

    .nav-buttons .btn {
        font-size: 13px;
    }

    .details-list {
        font-size: 12px;
    }

    .details-list li {
        line-height: 1.4;
    }

    .badge-group .badge,
    .more-services .badge {
        font-size: 11px;
        padding: 3px 7px;
    }

    .bio-box {
        font-size: 12px;
        padding: 12px 14px;
    }
}







.performance-section {
    padding: 28px 0;
    background: #fff;
    font-family: Arial, sans-serif;
}



.performance-header h2 {
    font-size: 48px;
    color: #0B125A;
    text-align: center;
    margin-bottom: 4px;
    font-family: var(--judson);
}

.performance-header .subtitle {
    font-size: 14px;
    text-align: center;
    color: #555;
    margin-bottom: 18px;
}


.stats-block {
    border: 1px solid #ddd;
    padding: 16px 18px;
    border-radius: 6px;
    font-size: 14px;
    color: #444;
    margin-bottom: 22px;
}

.stat-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.stat-row .head {
    font-size: 24px;
    font-weight: 400;
    color: var(--orange);
    text-decoration: underline;
    font-family: var(--poppins);
}

.stat-label {
    font-weight: 600;
    width: 180px;
}

.stat-value {
    font-weight: 500;
}


.badge-sm {
    display: inline-block;
    background: #f8f8f8;
    border: 1px solid #ccc;
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 20px;
    margin-right: 6px;
    color: #333;
    box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.2), -3px 3px 8px rgba(0, 0, 0, 0.2);

}


.feedbacks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.feedbacks-header h3 {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--poppins);
    color: var(--orange);
    text-decoration: underline;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444;
}

.rating-value {
    font-weight: 600;
    color: #222;
}

.stars {
    color: #f5a623;
    font-size: 16px;
}


.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feedback-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    background: #fcfcfc;
    font-size: 14px;
    color: #333;
}

.feedback-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.fb-icon {
    font-size: 20px;
}

.fb-info .fb-name {
    font-weight: 600;
    font-size: 14px;
}

.fb-info .fb-date {
    font-size: 12px;
    color: #777;
    margin-left: 8px;
}

.fb-text {
    font-size: 16px;
    margin: 4px 0;
    color: #555;
    line-height: 1.5;
}

.fb-job {
    font-size: 16px;
    color: #e56c00;
    font-weight: 600;
}


.see-more-container {
    text-align: right;
    margin-top: 12px;
}

.see-more-link {
    font-size: 13px;
    color: #1a2a55;
    text-decoration: none;
    font-weight: 500;
}

.see-more-link:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .stats-block {
        font-size: 13px;
    }

    .rating {
        font-size: 13px;
    }

    .feedback-card {
        padding: 8px 12px;
    }
}

@media (max-width: 992px) {


    .performance-section .stats-block {
        padding: 14px 16px;
        font-size: 14px;
    }

    .performance-section .stat-label {
        width: 150px;
    }

    .performance-section .badge-sm {
        padding: 4px 8px;
        font-size: 11px;
    }

    .feedbacks-header h3 {
        font-size: 17px;
    }

    .rating {
        font-size: 13px;
    }

    .feedback-card {
        padding: 10px 12px;
        font-size: 14px;
    }

    .fb-info .fb-name {
        font-size: 14px;
    }

    .fb-info .fb-date {
        font-size: 12px;
    }

    .fb-job {
        font-size: 12px;
    }
}


@media (max-width: 768px) {


    .performance-section .stats-block {
        padding: 12px 14px;
        font-size: 13px;
    }

    .performance-section .stat-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .performance-section .stat-label {
        width: auto;
        font-size: 13px;
    }


    .performance-section .badge-sm {
        padding: 3px 7px;
        font-size: 11px;
    }


    .feedbacks-header {
        flex-direction: column;
        gap: 6px;
        text-align: left;
    }

    .feedbacks-header h3 {
        font-size: 16px;
    }

    .rating {
        font-size: 13px;
    }


    .feedback-list {
        gap: 10px;
    }

    .feedback-card {
        padding: 8px 10px;
        font-size: 13px;
    }

    .fb-info .fb-name {
        font-size: 14px;
    }

    .fb-info .fb-date {
        font-size: 12px;
    }

    .fb-text {
        font-size: 13px;
    }

    .fb-job {
        font-size: 12px;
    }

    .see-more-link {
        font-size: 13px;
    }
}


@media (max-width: 480px) {


    .performance-section .stats-block {
        font-size: 12px;
    }

    .performance-section .stat-label {
        font-size: 12px;
    }

    .performance-section .badge-sm {
        font-size: 10px;
        padding: 2px 6px;
    }


    .feedback-card {
        padding: 7px 8px;
        font-size: 12px;
    }

    .fb-info .fb-name {
        font-size: 13px;
    }

    .fb-info .fb-date,
    .fb-job {
        font-size: 11px;
    }

    .fb-text {
        font-size: 12px;
        line-height: 1.4;
    }


    .rating {
        font-size: 12px;
    }

    .stars {
        font-size: 14px;
    }


    .see-more-link {
        font-size: 12px;
    }
}








.similar-explore {
    padding: 32px 0;
    background: #f2f6fb;
    font-family: Arial, sans-serif;
}

.similar-explore .container2 {
    max-width: 960px;
    margin: auto;
    padding: 0 16px;
}

.title {
    font-size: 24px;
    color: #1a2a55;
    font-weight: 500;
    text-align: left;
    margin-bottom: 18px;
}

.title span {
    color: #f5821f;
}


.work-card {
    display: flex;
    gap: 20px;
    background: #0f1d66;
    border-radius: 12px;
    color: #fff;
    padding: 18px;
    margin-bottom: 24px;
}

.card-left img {
    width: 190px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-header h3 {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}

.card-header .role,
.card-header .location {
    font-size: 13px;
    margin: 0;
    color: #ddd;
}


.details-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.details-list li {
    margin: 4px 0;
}

.details-list .label {
    font-weight: 600;
    width: 144px;
    display: inline-block;
}

.details-list a {
    color: #a8d1ff;
}

.skill-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: none;
}


.card-text {
    font-size: 13px;
    line-height: 1.5;
    color: #e0e6ff;
    margin-top: 8px;
}


.card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.star-icon {
    font-size: 22px;
    color: #eee;
}

.btn-see-more {
    flex: 1;
    display: inline-block;
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 22px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.like-perc {
    font-size: 14px;
    font-weight: bold;
}


.see-all-wrapper {
    text-align: center;
    margin-top: 12px;
}

.btn-view-all {
    display: inline-block;
    border: 1px solid #0f1d66;
    color: #0f1d66;
    padding: 8px 24px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 500;
}


@media (max-width: 768px) {

    .work-card {
        flex-direction: column;
        gap: 12px;
    }

    .card-left img {
        width: 100%;
        height: auto;
    }

    .details-list .label {
        display: block;
        width: auto;
        margin-bottom: 4px;
    }

}

@media (max-width: 992px) {


    .work-card {
        padding: 16px;
        gap: 16px;
    }

    .card-left img {
        width: 140px;
        height: 100px;
    }

    .card-header h3 {
        font-size: 18px;
    }

    .card-header .role,
    .card-header .location {
        font-size: 13px;
    }

    .details-list {
        font-size: 13px;
    }

    .details-list .label {
        width: 120px;
    }

    .skill-badges .badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .card-text {
        font-size: 13px;
    }

    .btn-see-more {
        font-size: 13px;
    }

    .like-perc {
        font-size: 13px;
    }
}


@media (max-width: 768px) {


    .work-card {
        flex-direction: column;
        text-align: left;
        gap: 12px;
    }


    .card-left img {
        width: 100%;
        height: auto;
        border-radius: 6px;
    }


    .card-header {
        text-align: left;
        gap: 6px;
    }

    .card-header h3 {
        font-size: 18px;
    }


    .details-list {
        font-size: 13px;
    }

    .details-list li {
        display: block;
        margin-bottom: 6px;
    }

    .details-list .label {
        display: inline-block;
        width: auto;
        font-weight: 600;
    }


    .skill-badges .badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .card-text {
        font-size: 13px;
    }


    .btn-see-more {
        font-size: 13px;
        padding: 8px 12px;
    }

    .like-perc {
        font-size: 13px;
    }
}


@media (max-width: 480px) {


    .card-left img {
        width: 100%;
        height: auto;
    }

    .card-header h3 {
        font-size: 16px;
    }

    .card-header .role,
    .card-header .location {
        font-size: 12px;
    }

    .details-list {
        font-size: 12px;
    }

    .details-list .label {
        font-size: 12px;
    }

    .skill-badges .badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    .card-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .btn-see-more {
        font-size: 12px;
        padding: 6px 10px;
    }

    .like-perc {
        font-size: 12px;
    }

    .btn-view-all {
        font-size: 12px;
        padding: 6px 14px;
    }
}


.discover {

    background: #F08526 url('../asset/HOME_PAGE/freeliance_project_bg/bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;

}

.discover_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.discover_content .discover_text {
    text-align: center;
    font-size: 36px;
    font-family: "Judson", serif;
    color: var(--white);
    margin-bottom: 30px;


}

.discover_content .discover_text .change {
    color: black;
}

.Oppotunities {
    padding: 16px 30px;
    border: 2px solid white;
    border-radius: 30px;
    color: var(--white);
    transition: 0.3s all ease-in;
}

.Oppotunities:hover {
    background-color: white;
    color: #F08526;
    border: 2px solid #F08526;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);

}



@media (max-width: 768px) {
    .discover_text {
        font-size: 22px;
    }

    .Oppotunities {
        font-size: 14px;
        padding: 8px 22px;
    }
}




.related-categories {
    padding: 28px 0;
    background: #f2eaff;
    font-family: Arial, sans-serif;
}

.related-categories .container {
    max-width: 960px;
    margin: auto;
    padding: 0 16px;
    text-align: center;
}


.related-title {
    font-size: 36px;
    font-weight: 500;
    color: #0B125A;
    margin-bottom: 18px;
    text-align: center;
}


.categories-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 8px;

}

.cat {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    color: #333;
    border-radius: 20px;
    box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.2), -3px 3px 8px rgba(0, 0, 0, 0.2);
    transition: .3s all ease;
    cursor: pointer;
}

.cat:hover {
    transform: translateY(-3px);
}



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

    .cat {
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .related-title {
        font-size: 18px;
    }

    .cat {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/*      =========== FOOTER ==========      */


.footer-section {
    background: #0B125A;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
}

.footer-app {
    display: flex;
    justify-content: flex-start;
    gap: 10px;

}

.footer-app .app-icon img {
    width: 22px;
    height: 22px;
    transition: 0.5s all ease-in;
}

.footer-app .app-icon img:hover {
    transform: scale(1.1);
}

.footer-icon {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: 0.5s all ease-in;
    border-bottom: 1px solid transparent;
}

.footer-icon svg {
    margin-right: 10px;
    transition: 0.5s all ease-in;


}

.footer-icon a:hover svg {
    transform: scale(1.1);
}

.footer-icon a {

    display: flex;
    color: white;
    margin-top: 10px;

}

.footer-icon a span {
    font-size: 16px;
    transition: 0.5s all ease-in;
    border-bottom: 1px solid transparent;
}

.footer-icon a:hover span {

    color: #F08526;
    border-bottom: 1px solid #F08526;
}


.contact-icon {

    width: 15px;
    height: 15px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 180px;
}



.footer-col>p {
    font-size: 24px;
    font-weight: bold;
    font-family: var(--judson);
    margin-bottom: 12px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s all ease-in;
    border-bottom: 1px solid transparent;

}

.footer-col ul {

    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 18px;
    color: #ddd;
    border-bottom: 1px solid transparent;
    transition: 0.5s all ease-in;
}

.footer-col ul li a:hover {
    color: #F08526;
    border-bottom: 1px solid #F08526;

}



.footer-brand .footer-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
    object-fit: contain;
}

.footer-brand .contact {
    margin-bottom: 6px;
    color: #ddd;
}

.footer-brand .footer-social,
.footer-brand .footer-app {
    margin-top: 10px;

}

.footer-brand .footer-social span,
.footer-brand .footer-app span {
    font-size: 18px;
    margin-right: 8px;
    color: #ccc;
}

.footer-social .social-icon {
    transition: .5s all ease-in;
}

.footer-social .social-icon:hover {
    transform: scale(1.1);
}

.social-icon {
    margin-right: 8px;
    color: #fff;
    font-weight: bold;
}


.footer-bottom {
    border-top: 1px solid #2943a1;
    margin-top: 30px;
    padding-top: 14px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    align-items: center;
    color: #ccc;
}

.footer-bottom a {
    font-size: 18px;
    color: #ccc;
    text-decoration: none;
    margin-right: 14px;
    transition: 0.5s all ease-in;
    border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
    color: #F08526;
    border-bottom: 1px solid #F08526;
}

.lower-footer {
    text-align: center;
    margin-top: 10px;
}

.lower-footer a {
    font-size: 18px;
    color: #aaa;
    transition: 0.5s all ease-in;
    border-bottom: 1px solid transparent;
}

.lower-footer a:hover {
    color: #F08526;
    border-bottom: 1px solid #F08526;
}


/* ========== FOOTER END ========== */