@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Judson:ital,wght@0,400;0,700;1,400&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Judson:ital,wght@0,400;0,700;1,400&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');



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

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

:root {
    --dark_blue: #0B125A;
    --white: #FFFFFF;
    --color-grey: #F5F7F9;
    --purple: #EDE1F3;
    --orange: #F08526;
    --purple: #EDE1F3;
    --black: #000000;

}

.section-padding {
    padding: 50px 0;
}


/*  ==== 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;
  
}

.nav-item .active {
  width: fit-content;
  border-bottom: 2px solid var(--dark_blue) ;
}

.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 {
    background: rgba(255, 255, 255, 0.12);
}


.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 ==== */




/*===============================
DESIGNER SECTION
=================================
*/
.designer-section {
    padding: 50px 20px;
    background: var(--purple);
}

.design-title {
    text-align: center;
    font-family: "Judson";
}

.designer-section h1 {
    font-size: 64px;
    font-weight: 600;
    color: var(--dark_blue);
    line-height: 1.3;
}

.designer-section h1 span {
    display: block;
}

.subtitle {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark_blue);
}

.filter-bar {
    margin: 35px auto;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.dropdown {
    padding: 10px 14px;
    border-radius: 20px;
    border: 1px solid #d8cce0;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}

.category-wrapper {
    position: relative;
    width: 220px;
}

.category-wrapper .dropdown-btn {
    width: 100%;
    padding: 18px 10px;
    border-radius: 20px;
    border: 1px solid black;
    background: #fff;

    cursor: pointer;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    letter-spacing: 0.02em;
    font-family: "Judson", serif;
}

.main-arrow {
    transition: transform 0.25s ease;
}

.category-wrapper:focus-within .main-arrow {
    transform: rotate(180deg);
}

/* Menu */
.category-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 270px;
    background: var(--dark_blue);
    border-radius: 16px;
    padding: 14px;
    display: none;
    z-index: 100;
}

.category-wrapper:focus-within .category-menu {
    display: block;
}

/* Menu links */
.category-menu a {
    display: flex;
    align-items: center;
    justify-content: left;
    font-family: "Poppins";
    padding: 10px 8px;
    font-size: 13px;
    color: #ffe8d2;
    text-decoration: none;
    gap: 10px;
}

/* SVG arrow in menu */
.menu-arrow {
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.8;
}

/* Hover effect */
.category-menu a:hover .menu-arrow {
    transform: translateX(4px);
    opacity: 1;
}

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

.category-menu hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 10px 0;
}

.highlight {
    color: var(--orange) !important;
    text-decoration: underline !important;
    font-family: "Judson";
}

.highlight:hover {
    color: var(--white) !important;
}

.dropdown-btn:focus {
    outline: none;
}



.search-box {
    position: relative;
    flex: 1;
    max-width: 420px;
    margin: 0 20px;
}

.search-box input {
    width: 100%;
    padding: 20px 10px;
    border-radius: 20px;
    border: 1px solid black;
    font-size: 16px;
    background: transparent;
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #7a7aa1;
}

.sort-wrapper {
    position: relative;
}

.sort-btn {

    padding: 18px 10px;
    border-radius: 24px;
    border: 1px solid #0b125a;

    background: transparent;
    color: #0b125a;
    font-size: 24px;
    letter-spacing: 0.02em;
    font-family: "Judson", serif;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 10px;

    appearance: none;
}

.sort-arrow {
    transition: transform 0.3s ease;
}

.sort-wrapper:focus-within .sort-arrow {
    transform: rotate(180deg);
}

.sort-menu {
    position: absolute;
    top: 70px;
    right: 0PX;
    font-family: "Poppins";
    padding: 10px;

    background: var(--dark_blue);
    border-radius: 14px;

    display: none;
    z-index: 200;
}

.sort-wrapper:focus-within .sort-menu {
    display: block;
}

.sort-menu a {
    display: block;
    padding: 8px 10px;

    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
}

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

.sort-btn:focus {
    outline: none;
}

.popular-title {
    width: fit-content;
    margin: 0 auto;
    font-size: 36px;
    color: var(--dark_blue);
    font-weight: 500;
    /* text-align: center; */
    font-family: "Judson";
    /* justify-content: center; */
}

.tag-list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {

    padding: 15px;
    border-radius: 20px;
    border: 1px solid #d8cce0;
    background: #fff;
    font-size: 12px;
    color: #2b2f77;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.2), -3px 3px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

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

.tag span {

    margin-left: 10px;
    margin-right: 40px;
}



/*===================================
MAIN SECTION
=====================================
*/

.card-headings h1 {
    font-size: 48px;
    text-align: center;
    color: var(--dark_blue);
    font-family: "Judson";
}

.card-headings span {
    color: var(--orange);
}

.card-part {
    padding: 20px;
    margin: 0 auto;
    background: var(--dark_blue);
    border-radius: 20px;
    max-width: 1120px;
    min-height: 518px;
    margin-top: 20px;
}

.card-part h2 {
    color: var(--white);
    font-family: "Judson";
}

.address-para {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-family: "Poppins";
    font-size: 16px;
    margin-bottom: 20px;
}

.card-image-details {
    display: flex;
    align-items: center;
}

.card-details {
    margin-left: 20px;
}

.info-list li {
    display: flex;
    align-items: center;
}


.label {
    width: 200px;
    font-weight: 600;
    font-family: "Judson";
    color: var(--white);
    margin-bottom: 5px;
    font-size: 24px;
    white-space: nowrap;
}

.colon {
    color: var(--white);
    margin: 0 10px;
}

.value {
    font-size: 18px;
    font-family: "Poppins";
    color: rgba(255, 255, 255, 0.6);
}

.value a {
    color: rgba(255, 255, 255, 0.6);
}

.card-buttons {
    margin-top: 30px;
}

.card-buttons a {
    padding: 10px;
    background: var(--white);
    color: black;
    border-radius: 30px;
    margin-right: 10px;
    font-family: "Poppins";
}

.banner-button {
    margin-right: 0;
}

.text {
    font-family: "Poppins";
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.see-more-btn {
    flex-grow: 1;
    height: 44px;
    /* max-width: 700px; */
    padding: 10px 380px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    font-family: "Poppins";
    text-align: center;
    transition: 0.3s all ease-in-out;

}

.see-more-btn:hover {
    background: var(--color-grey);
    color: var(--dark_blue);
}

.rating-part {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.right-icon {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.like-percentage {
    margin-left: 10px;
    color: var(--white);
    font-family: "Poppins";
}

/*==================================
EXPERT SECTION
====================================
*/
.expert-section {

    background: var(--purple);
}

.expert-section h2 {
    text-align: center;
    font-family: "Judson";
    margin-bottom: 30px;
    font-size: 36px;
    letter-spacing: 0.02em;
    color: var(--dark_blue);
    margin-bottom: 30px;
}

.services-list {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



.service-pill>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 7px;
    padding: 10px;
    background: #ffffff;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 3px -3px 8px 0 rgba(0, 0, 0, 0.2), -3px 3px 8px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-pill a:hover {
    transform: translateY(-3px);
}

.service-pill a span {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin-left: 5px;
}






/*      =========== 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 ========== */




/* =========================================
   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 */




/*=======================
DESIGNER SECTION
=========================
*/
@media screen and (max-width: 992px) {

    .designer-section h1 {
        font-size: 28px;
    }

    .filter-bar {
        max-width: 100%;
        padding: 0 10px;
    }

    .search-box {
        max-width: 360px;
        margin: 0 14px;
    }

}

@media screen and (max-width: 768px) {

    .designer-section {
        padding: 40px 16px;
    }

    .designer-section h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 13px;
    }

    .filter-bar {
        display: flex;
        justify-content: left;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .dropdown {
        width: 100%;
        margin-bottom: 12px;
        text-align: center;
    }

    .search-box {
        max-width: 100%;
        margin: 0 0 12px 0;
    }

    .sort-menu {
        transform: translateX(-50%);
    }

    .popular-title {
        text-align: center;
        font-size: 15px;
    }

    .tag-list {
        justify-content: center;
    }





}

@media screen and (max-width: 576px) {

    .designer-section {
        padding: 30px 14px;
    }

    .designer-section h1 {
        font-size: 20px;
        line-height: 1.25;
    }

    .subtitle {
        font-size: 12px;
    }

    .dropdown {
        font-size: 12px;
        padding: 9px 12px;
    }

    .search-box input {
        font-size: 12px;
    }

    .popular-title {
        font-size: 14px;
        margin-top: 30px;
    }

    .tag {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 10px;
    }
}

/*=========================
MAIN SECTION
===========================
*/
@media screen and (max-width:1440px) {
    .card-part {
        max-width: 900px;
    }

    .card-image-details {
        align-items: flex-start;
    }

    .label {
        width: 160px;
        font-size: 14px;
    }

    .value {
        font-size: 12px;
    }

    .see-more-btn {
        padding: 10px 200px;
    }
}

@media screen and (max-width:1200px) {
    .card-part {
        max-width: 700px;
        text-align: center;
    }

    .card-image-details {
        flex-direction: column;
    }

    .text {
        font-size: 13px;
    }

    .card-image {
        margin: 0 auto;
    }

    .card-details {
        margin: 20px auto 0;
    }

    .card-buttons a {
        font-size: 14px;
    }
}

@media screen and (max-width:992px) {
    .card-part {
        max-width: 600px;
    }

    .see-more-btn {
        padding: 10px 100px;
    }
}

@media screen and (max-width:768px) {
    .card-part {
        max-width: 500px;
    }

    .card-image {
        max-width: 400px;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width:576px) {
    .card-buttons {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .card-buttons a {
        margin-bottom: 20px;
    }

    .see-more-btn {
        padding: 10px 60px;
    }
}

@media screen and (max-width:480px) {
    .info-list li {
        flex-direction: column;
        align-items: center;
        margin-bottom: 12px;
    }

    .label {
        width: auto;
        font-size: 16px;
        white-space: normal;
    }

    .colon {
        display: none;
    }

    .see-more-btn {
        padding: 10px 30px;
    }

    .rating-part {
        display: flex;
        flex-direction: column;
    }

    .card-buttons a {
        font-size: 12px;
    }

    .card-part h2 {
        font-size: 24px;
    }

}

/*=========================
EXPERT SECTION
===========================
*/
@media screen and (max-width:480px) {
    .services-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 10px;
    }

    .service-pill {
        margin: 0 auto;
    }
}