@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&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=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swap");
/* 
* {
    font-family: "poppins", "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
} */

.tabs-section {
    background-color: #f2f2f2;
    padding: 30px 0;
    text-align: center;
    overflow-x: auto;
}

.tab-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 10px;
}

.tab-menu a {
    color: #222;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tab-menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .tab-menu a {
        flex: 0 0 auto;
    }
}

.mandala-item {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.mandala-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.mandala-section {
    padding: 60px 20px;
    position: relative;
}

.mandala-heading {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 30px;
}

.image-box1 img {
    width: 350px;
    position: absolute;
    border-radius: 30px;
    height: 400px;
    object-fit: cover;
    object-position: center top;
}

.image-box {
    border-radius: 30px;
    overflow: hidden;
    width: 500px;
    height: 350px;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    object-fit: center;
}

.inquiry-btn {
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    border: none;
    margin-top: 20px;
    text-decoration: none;
}

.inquiry-btn:hover {
    background-color: #000;
    color: #fff;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.progress-line {
    flex-grow: 1;
    height: 3px;
    background: #ddd;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

#progress-fill {
    height: 100%;
    background-color: #000;
    width: 25%;
    transition: width 0.3s ease;
}


.progress-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background-color: #000;
}

@media (max-width: 768px) {
    .progress-container {
        padding: 0 5px;
    }

    .progress-line {
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .progress-container {
        gap: 10px;
    }

    .progress-line {
        width: 100%;
        margin: 0;
    }
}

.overlay-number {
    position: relative;
    top: 230px;
    left: 190px;
    font-size: 15rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.left-part,
.right-part {
    padding: 15px;
}

.right-para {
    max-width: 400px;
    font-size: 1.1rem;
}

.arrow-wrapper {
    position: absolute;
    top: 23%;
    left: 43%;
    transform: translate(-50%, -50%);
    z-index: 10;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.arrow-btn {
    border-radius: 50%;
    padding: 8px 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 7px;
}

@media (max-width: 991.98px) {
    .image-box1 img {
        position: static;
        width: 100%;
        height: 350px;
    }

    .overlay-number {
        top: 0;
        left: 0;
        font-size: 2rem;
        text-align: end;
        position: relative;
    }

    .arrow-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 25px;
        align-items: center;
    }



    .right-part {
        margin-top: 20px;
    }

    .right-para {
        max-width: 100%;
        font-size: 1rem;
    }

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

    .mandala-heading {
        font-size: 24px;
        text-align: center;
    }

    .inquiry-btn {
        display: block;
        margin: 20px auto;
    }
}

@media (max-width: 575.98px) {
    .overlay-number {
        font-size: 60px;
    }

    .arrow-btn {
        font-size: 16px;
        padding: 6px 10px;
    }

    .mandala-heading {
        font-size: 20px;
    }

    .progress-line::before {
        width: 40%;
    }
}

.feature-box {
    background-color: #f4f4f4;
    border-radius: 30px;
}

.feature-image {
    overflow: hidden;
    border-radius: 30px;
}

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

@media (max-width: 768px) {
    .feature-image img {
        width: 100%;
        max-height: 70vh;
        border-radius: 30px;
        object-fit: cover;
        border-radius: 30px;
    }
}

@media (max-width: 992px) {
    .feature-image img {
        width: 100%;
        max-height: 70vh;
        border-radius: 30px;
        object-fit: cover;
        border-radius: 30px;
    }
}

.feature-content p {
    max-width: 300px;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    padding-left: 20px;
}

.btn-inquiry {
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-left: 20px;
}

.btn-inquiry:hover {
    background-color: #333;
    color: #fff;
}

.collection-section {
    text-align: center;
    padding: 20px;
    max-width: 950px;
}

.collection-section .brand {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.collection-section .main-heading {
    font-size: 26px;
    line-height: 1.5;
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
}

.collection-section .bold-text {
    font-weight: 600;
    color: #222;
}

.collection-section .light-text {
    font-weight: 600;
    color: #ccc;
}

.new-arrival-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.new-arrival-section h6 {
    color: #666;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
}

.item-box {
    margin-top: 40px;
}

.art-item {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    width: 100%;
    height: auto
}

.art-image {
    width: 100%;
    height: 450px;
}

.art-image1 {
    overflow: hidden;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    height: 450px;
}

.art-image1 img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 30px;
    margin-top: 10%;
}

.art-image3 {
    overflow: hidden;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    height: 450px;
}

.art-image3 img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 30px;
    margin-top: 10%;
}

.art-image2 {
    border-radius: 30px;
    text-align: center;
    width: 100%;
    height: 500px;
    text-align: center;
}

.art-image2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.art-details h5 {
    font-weight: 600;
    text-align: center;
    align-items: center;
}

.art-details p {
    color: #777;
    font-size: 14px;
    /* margin-bottom: 10px; */
}

.art-details a {
    font-weight: 600;
    text-decoration: none;
    color: black;
}

.art-details a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .art-item {
        margin: 0 10px;
    }
}

.text-muted-sm {
    color: #aaa;
    font-size: 14px;
}



.artist-profile-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.artist-profile-wrapper::-webkit-scrollbar {
    display: none;
}

.single-profile {
    text-align: center;
    flex: 0 0 calc((100% - 40px) / 3);
    margin-bottom: 10px;
    width: 100%;
    height: 400px;
}

.single-profile img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .single-profile {
        flex: 0 0 calc((100% - 20px) / 2);
        height: 350px;
    }
}

@media (max-width: 576px) {
    .single-profile {
        flex: 0 0 100%;
        height: 350px;
    }

    .single-profile img {
        height: 350px;
    }
}

.name {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: start;
}

.year {
    font-size: 15px;
    color: #666;
    font-weight: 300;
    text-align: start;
}

.btn-light {
    background-color: #eee;
    color: #000;
}

.progress-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.progress-line1 {
    flex: 1;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.artist-progress-fill {
    height: 100%;
    width: 0%;
    background: #000;
    transition: width 0.3s ease;
}

.arrival-btn {
    border-radius: 50%;
}

.heading-animation-category {
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
    color: gray;
    outline: none;
    white-space: normal;
    margin-left: 5%;
}

.heading-animation-category span {
    align-items: center;
    text-align: center;
    color: gray;
    transition: color 0.3s ease;
}