@font-face {
    font-family: "Nadea";
    src:
        url("../../assets/font/Nadea-Regular.woff2") format("woff2"),
        url("../../assets/font/Nadea-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nadea";
    src:
        url("../../assets/font/Nadea-Black.woff2") format("woff2"),
        url("../../assets/font/Nadea-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nadea" !important;
}
.container {
    width: 100% !important;
    max-width: 1280px !important;
}
.logo img {
    width: 140px;
    height: auto;
}
header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    left: 0;
}
.hearder-box {
    display: flex;
    justify-content: space-between;
    padding: 7px 12px;
    align-items: center;
    transition: box-shadow 0.3s ease;
}
.mob-header {
    display: none;
}
.find-btn {
    background-color: #000;
    color: #fff;
    padding: 9px 26px;
    border: none;
    font-size: 14px;
    font-weight: 500;
}
.button-box img {
    width: 24px;
    height: 24px;
}
.logo {
    height: auto;
}
.button-box {
    display: flex;
    align-items: center;
    gap: 14px;
}
.icons {
    width: 36px;
    height: 36px;
    transition: all 0.3s linear;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icons:hover {
    background-color: #f6f3f4;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
.menu ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 4px;
}

.menu ul li {
    cursor: pointer;
    padding: 8px 16px;
    border-bottom: 2px solid transparent;
    transition:
        border-bottom 0.3s ease,
        transform 0.3s ease;
    font-family: "Nadea";
    font-size: 16px;
    font-weight: 500;
    color: #202020;
}
.menu ul li:hover {
    background-color: #f4f5f2;
    border-radius: 10px;
}
.menu ul li.active {
    border-radius: 10px;
    background-color: #f4f5f2;
}
.menu a {
    color: #202020;
    text-decoration: none;
}
.menu a:hover {
    color: #4a5565;
}
header.scrolled {
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.main-container {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}
/* Hero-section*/
.hero-section {
    background-color: #fff;
    padding: 80px 12px;
    position: relative;
}
/* Animation tetxt */
.custom-modal .modal-content {
    border: none;
    border-radius: 1rem;
    /* rounded-2xl */
    padding: 2rem;
    max-width: 420px;
    margin: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
}

@media (min-width: 768px) {
    .custom-modal .modal-content {
        padding: 2.5rem;
    }
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(171, 153, 117, 0.1);
    /* #AB9975/10 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: #ab9975;
}

.modal-title-custom {
    font-size: 2rem;
    color: #202020;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gradient-box {
    background: linear-gradient(
        to bottom right,
        rgba(171, 153, 117, 0.1),
        rgba(45, 55, 31, 0.1)
    );
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(171, 153, 117, 0.3);
    margin-bottom: 1.5rem;
}

.code-text {
    font-size: 3.5rem;
    color: #b23a2f;
    letter-spacing: -1px;
}

.modal-description {
    color: #202020;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.done-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.done-btn:hover {
    background: #111;
}
.text-wrapper {
    font-size: 48px;
    position: relative;
    font-weight: 600;
}

.text {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.text-wrapper span.text {
    background-color: #000;
    color: #fff;
    padding: 6px 20px;
    font-size: 14px;
    font-family: "Nadea";
}

/* Animations */
.t1 {
    animation: textFade 9s infinite;
}

.t2 {
    animation: textFade 9s infinite;
    animation-delay: 3s;
}

.t3 {
    animation: textFade 9s infinite;
    animation-delay: 6s;
}

/* Cursor */
.cursor {
    margin-left: 10px;
    animation: blink 1s infinite;
    font-weight: bold;
}

/* Keyframes */
@keyframes textFade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

/* Animation text */
.hero-section h1,
.hero-section h2 {
    position: relative;
    font-size: 72px;
    font-family: "Nadea";
    color: #202020;
}
.right-hero-img {
    display: flex;
    justify-content: end;
}
.right-hero-img img {
    width: 100%;
    height: auto;
}
.hero-left-text {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    padding-top: 90px;
}
.hero-left-text p {
    color: #202020;
    position: relative;
    font-family: "Nadea";
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 40px;
}
.cta-btn {
    background: #000;
    color: #fff;
    padding: 20px 48px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    position: relative;
}

.cta-btn:hover {
    background: #1f1f1f;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    font-size: 18px;
}

.arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Arrow slide on hover */
.cta-btn:hover .arrow {
    transform: translateX(6px);
}

/*Most t-shirt section*/
.fit-card {
    width: 100%;
    height: 320px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    font-family: "Nadea";
    transition: transform 0.6s ease;
}

/* COMMON */
.card-face {
    position: absolute;
    inset: 0;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

/* FRONT */
.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.fit-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}
.fit-card:hover {
    transform: translateY(-8px);
    border: 1px solid grey;
}

.gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.4),
        transparent
    );
}

.stat-box {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #f4f5f2;
    text-align: right;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.5s ease;
}

.fit-card:hover .stat-box {
    opacity: 1;
    transform: translateX(0);
}

.bottom-text {
    position: absolute;
    bottom: 58px;
    left: 28px;
    color: #f4f5f2;
}

.line {
    width: 80px;
    height: 2px;
    background: #fff;
    display: block;
    transition: width 0.4s ease;
    margin-bottom: 20px;
}

.fit-card:hover .line {
    width: 120px;
}

/* BACK */
.card-back {
    background: #202020;
    color: #f4f5f2;
    padding: 32px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
}

.card-back h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 8px;
    text-align: center;
    font-family: "Nadea";
}

.subtitle {
    opacity: 0.7;
    margin-bottom: 30px;
    text-align: center;
    font-family: "Nadea";
}

.divider {
    width: 90px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 28px auto;
}

.description {
    font-size: 18px;
    opacity: 0.9;
    font-family: "Nadea";
    list-style: 28px;
    text-align: center;
}

/* ACTIVE STATE */
.fit-card.active .card-front {
    opacity: 0;
    pointer-events: none;
}

.fit-card.active .card-back {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    border-radius: 6px;
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.bottom-text h3 {
    font-size: 22px;
    font-family: "Nadea";
    font-weight: 500;
}
.most-tshirt {
    background-color: #202020;
    padding: 100px 12px;
}
.most-tshirt-heading h2 {
    color: #f4f5f2;
    font-size: 48px;
    font-family: "Nadea";
    text-align: center;
    margin-bottom: 80px;
}
.most-tshirt-heading {
    position: relative;
}
.most-tshirt-heading::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #f4f5f2;
    z-index: 9;
}
/* Section background */
.hero-quote-section {
    background-color: #202020;
    padding: 60px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}
.hero-quote-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#1a1a1a 1px, transparent 1px),
        linear-gradient(90deg, #1a1a1a 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.35;
    pointer-events: none;
}
.quote-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 2;
}
.hero-text {
    text-align: center;
    font-family: "crimson pro", serif;
    font-size: 34px;
    line-height: 1.3;
    color: #f4f5f2;
    margin: 0;
}

.hero-text span {
    display: block;
    color: #ffffff;
    font-style: normal;
    font-weight: 400;
}
.lines {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #f4f5f2);
}

.right-line {
    transform: rotate(180deg);
}

/*engineered section*/
.left-engineer-img {
    padding: 30px 30px;
    border-radius: 12px;
    background-color: #f0f0f0;
    rotate: -2deg;
}
.left-engineer-img img {
    width: 100%;
    height: auto;
}
.engineered-image-bg {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    rotate: 2deg;
}
.engineered-image-bg img {
    width: 100%;
    height: auto;
}
.engineered-section {
    padding: 100px 12px;
}
.right-main-eng-box {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 0px 44px;
}
.right-eng-text h3 {
    font-size: 60px;
    font-family: "Nadea";
    position: relative;
    margin-bottom: 40px;
    line-height: 58px;
    color: #202020;
}
.right-eng-text h3::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #000;
}
.sub-eng-text {
    border-left: 2px solid #000;
    padding: 0px 24px;
    margin-top: 60px;
}
span.better-text {
    background-color: #f4f5f2;
    padding: 4px 6px;
    color: #202020;
}
.sub-eng-text p {
    font-size: 20px;
    font-family: "Nadea";
    line-height: 1.6;
    color: #202020;
    margin-top: 16px;
}
.find-heading {
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.find-heading h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

/* find box css*/

.heading-line {
    display: block;
    width: 140px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
}
.heading-line-two {
    display: block;
    width: 500px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin-bottom: 32px;
}
.find-fit-box {
    position: relative;
    background-color: #202020;
    padding: 100px 12px;
    overflow: hidden;
}

.find-fit-box .grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image:
        linear-gradient(#ffffff 1px, transparent 1px),
        linear-gradient(90deg, #ffffff 1px, transparent 1px);
    background-size: 60px 60px;
}

.find-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.find-heading h3 {
    font-size: 60px;
    color: #f4f5f2;
    margin-bottom: 20px;
    font-family: "Nadea";
}
.step-card {
    position: relative;
    background: rgba(24, 24, 27, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.5s ease;
    overflow: hidden;
    z-index: 99;
}

.step-card:hover {
    border-color: rgba(171, 153, 117, 0.5);
    transform: scale(1.05);
}

/* big background number */
.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 64px;
    font-weight: 600;
    color: #3f3f46;
    transition: color 0.5s ease;
}

.step-card:hover .step-number {
    color: rgb(101 108 123);
}

/* icon */
.icon-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.icon-circle-1 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #4b5563, #1f2937);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.5s ease;
}

/* title */
.step-title {
    font-size: 24px;
    color: #f4f4f2;
    font-weight: 500;
    line-height: 1.3;
    font-family: "Nadea";
}

/* bottom gradient line */
.step-line {
    margin-top: 24px;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #6a7282, transparent);
}
.step-card {
    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgb(101 108 123);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.step-card:hover .icon-circle-1 {
    box-shadow: 0 10px 25px rgba(75, 85, 99, 0.5);
}

/* bottom line animation */
.step-line {
    width: 90%;
    transition: width 0.5s ease;
}

.step-card:hover .step-line {
    width: 100%;
}

.steps-wrapper {
    position: relative;
    padding: 80px 0 40px;
}

.steps-line {
    position: absolute;
    top: 140px; /* adjust to align with icons */
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(
        to right,
        #27272a,
        rgba(171, 153, 117, 0.6),
        #27272a
    );
    z-index: 1;
}

.timeline-line {
    position: absolute;
    width: 100%;
    max-width: 600px;
    height: 2px;
    margin: 40px auto;
    top: 41%;
    left: 0;
    background: linear-gradient(to right, #27272a, rgb(101 108 123), #27272a);
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 59%; /* same as 58.9667% */
    width: 8px;
    height: 8px;
    background-color: #f4f5f2;
    border-radius: 50%;
    transform: translateY(-50%);
}
.timeline-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: rgb(101 108 123);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: moveDot 6s linear infinite;
}
.footer-top {
    border-bottom: 1px solid #333;
    padding: 0px 10px 64px 10px;
}
.center-text p {
    font-size: 14px;
    color: #f4f5f2;
    margin-top: 8px;
    font-family: "Nadea";
}

@keyframes moveDot {
    0% {
        left: 0%;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}
.bottom-heading {
    margin-top: 60px;
    text-align: center;
}
.bottom-heading h3 {
    font-size: 24px;
    color: #f4f5f2;
    text-align: center;
    font-family: "Nadea";
    font-weight: 300;
    line-height: 38px;
}
.bold-text {
    font-weight: 600;
}
.button-color-white {
    margin-top: 40px;
    background-color: #fff;
    color: #202020;
}
.button-color-white:hover {
    background-color: #e5e5e5;
}
/** Footer section */
.footer-section {
    background-color: #000;
    padding: 60px 10px 0px 10px;
    color: #fff;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-logo img {
    width: 194px;
    height: auto;
}
.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
    font-family: "Nadea";
    font-size: 14px;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-links a {
    font-family: "Nadea";
}
.footer-links ul li a:hover {
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding: 24px 0px 24px 0px;
    font-size: 14px;
    font-family: "Nadea";
    color: #94a3b8;
}
.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
.footer {
    padding: 60px 12px 0px 12px;
    background-color: #000;
    color: #fff;
}
.email-box {
    display: flex;
    gap: 8px; /* gap-2 */
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.email-input::placeholder {
    color: #9ca3af; /* gray-400 */
}

.email-input:focus {
    border-color: #f4f5f2;
}

.email-btn {
    background: #b23a2f;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.email-btn:hover {
    background: #831208;
}
.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-icon:hover {
    border-color: #f4f5f2;
    background: rgba(171, 153, 117, 0.1);
}

.footer-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #9ca3af;
    font-family: var(--body-font, sans-serif);
}
.footer-inner p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #f4f5f2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b23a2f;
    text-decoration: none;
}
.logo-text p {
    font-size: 14px;
    color: #f4f5f2;
    margin-top: 8px;
    font-family: "Nadea";
}
.center-text h5 {
    font-size: 16px;
    font-family: "Nadea";
    margin-bottom: 16px;
}
.list-unstyled li a {
    font-size: 14px;
    font-family: "Nadea";
    text-decoration: none;
    color: #f4f5f2;
}
.list-unstyled li {
    margin-bottom: 4px;
    line-height: 22px;
    transition: transform 0.5s ease;
}
.list-unstyled li a:hover {
    color: #b23a2f;
    transition: background-color 0.5s ease;
}
.center-text {
    padding: 0px 20px;
}
.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.fit-modal {
    position: fixed;
    inset: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

.fit-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #eee;
}

#progressBar {
    height: 100%;
    width: 0%;
    background: #2d371f;
}

.fit-body {
    flex: 1;
    padding: 40px;
    max-width: 700px;
    margin: auto;
}

/* .step {
  display: none;
} */

.step.active {
    display: block;
}

.option,
.pill,
.card {
    width: 100%;
    padding: 16px;
    margin: 10px 0;
    border-radius: 10px;
    border: 2px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.primary {
    background: #2d371f;
    color: #fff;
    padding: 16px;
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.secondary {
    margin-top: 12px;
    background: transparent;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.result-box {
    padding: 40px;
    background: #f6f6f3;
    border-radius: 16px;
    text-align: center;
}

/* Responsive (md:flex-row) */

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* .step { display:none } */
.step.active {
    display: block;
}

.option {
    border: 2px solid #ebe6e7 !important;
    padding: 20px 24px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 12px;
    text-align: left;
    transition: transform 0.3s ease;
}
.option.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

.top-bar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.question {
    flex: 1;
    text-align: center;
    font-weight: 600;
}

.subtext {
    text-align: center;
    color: #6c757d;
    margin-bottom: 20px;
}

.continue-btn {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 8px;
    background: #202020 !important;
    color: #fff !important;
}
.continue-btn:disabled {
    opacity: 0.5;
}

.link-text {
    text-align: center;
    font-weight: 500;
    cursor: pointer;
}
.small-muted {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

#progress-wrapper {
    margin-bottom: 25px;
    position: relative;
}
.option.active {
    background: #000;
    color: #fff;
}
.progress {
    height: 2px !important;
    position: relative;
    width: 100%;
    background-color: #e5e7eb; /* light gray background */
    overflow: hidden;
}
.hidden {
    display: none !important;
}
.com-btn {
    padding: 20px 48px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 0px !important;
    font-family: "Nadea" !important;
    background-color: #000 !important;
}
.com-btn:hover {
    background-color: #101828 !important;
}
.header-box {
    padding: 8px 34px !important;
    min-height: 52px;
}
.progress-bar {
    height: 100%;
    width: 20%; /* change this dynamically */
    background: linear-gradient(to right, #2d371f, #424242, #2d371f);
    transition: width 0.4s ease;
}
.container-modal {
    max-width: 700px;
    margin: auto;
    padding-top: 20px;
}
.top-mature-logo {
    width: 64px;
    height: 64px;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.modal-content-heading {
    font-size: 36px;
    font-family: "Nadea";
    color: #f4f5f2;
}
.modal-content-description {
    color: #f4f5f2;
    font-family: "Nadea";
    font-size: 16px;
    margin-bottom: 32px;
}
.top-mature-logo img {
    width: 28px;
    height: 28px;
}
.option h3 {
    font-size: 16px;
    font-family: "Nadea";
    margin-bottom: 0px;
    color: #202020;
}
.option p {
    font-size: 14px;
    margin-top: 2px;
    line-height: 1.4;
    font-family: "Nadea";
    margin-bottom: 0px;
    font-weight: 500;
}
.option:hover {
    transform: translateX(5px);
    border: 2px solid #f4f5f2 !important;
}
.back-btn {
    text-decoration: none !important;
    font-size: 14px !important;
    font-family: "Nadea" !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 500 !important;
}
.chest-input {
    background-color: #f9fafb;
    padding: 24px;
    margin: 0 auto;
    border-radius: 16px;
}
.chest-input label {
    font-size: 14px;
    font-family: "Nadea";
    margin-bottom: 12px;
    display: block;
    text-align: left;
}
.input-number {
    padding: 16px 20px !important;
    border: 2px solid #ebe6e7 !important;
    height: 64px !important;
    border-radius: 16px !important;
}
.box-measurement-guide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.measurement-btn {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    border: none;
    background-color: #ffffff00;
    text-decoration: underline;
    margin-top: 15px;
    color: #2d371f;
    font-family: "Nadea";
}
.information-box {
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 16px;
    box-shadow:
        0 1px 3px 0 var(--tw-shadow-color, #0000001a),
        0 1px 2px -1px var(--tw-shadow-color, #0000001a);
}
.name-input {
    margin-bottom: 20px;
}
.name-input label {
    font-size: 16px;
    font-family: "Nadea";
    margin-bottom: 8px;
    display: block;
    text-align: left;
    font-weight: 500;
    color: #202020;
}
.bottom-note {
    font-size: 14px;
    color: #202020;
    text-align: center;
    margin-top: 24px;
    font-family: "Nadea";
}
.or-box {
    text-align: center;
    margin: 24px 0px;
    position: relative;
}
.or-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 46%;
    height: 1px;
    background-color: #e5e7eb;
    z-index: 1;
}
.or-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    width: 46%;
    height: 1px;
    background-color: #e5e7eb;
    z-index: 1;
}
.form-control:focus {
    box-shadow: none !important;
}
.dont-know {
    color: #000 !important;
    background-color: #f3f4f6 !important;
    padding: 16px 24px !important;
    width: 100% !important;
    border: 2px solid #dddfe1 !important;
    border-radius: 10px !important;
    margin-bottom: 18px !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    font-family: "Nadea";
}
.shape-box img {
    width: 100%;
    height: 60px;
}
.shape-main-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}
.shape-main-box .option {
    text-align: center !important;
}
.shape-dec {
    font-size: 12px !important;
}
.shape-main-box .padding-css-shape {
    padding: 10px 0px !important;
}
.modal-content-description-sub {
    color: #f4f5f2;
    font-family: "Nadea";
    font-size: 14px;
    margin-bottom: 24px;
}
.modal-backdrop {
    z-index: 99 !important;
}
.check-icon-box {
    width: 64px;
    height: 64px;
    background-color: #f4f5f21a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.check-icon-box img {
    width: 32px;
    height: 32px;
    color: #f4f5f2;
}
.result-heading-box {
    padding: 48px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.result-heading-box h1 {
    font-size: 36px;
    font-family: "Nadea";
}
.result-heading-box p {
    font-size: 16px;
    color: #4a5565;
    font-family: "Nadea";
}
.fit-code-card {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid rgba(171, 153, 117, 0.3);
    margin-bottom: 24px;
    position: relative;
}

.fit-code-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.fit-code-icon {
    color: #f4f5f2;
}

.fit-code-label {
    font-size: 20px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0;
    font-family: "Nadea";
}

.fit-code-number {
    font-size: 90px;
    color: #b23a2f;
    margin-bottom: 24px;
    font-family: "Nadea";
    letter-spacing: 24px;
    position: relative;
    display: inline-block;
}

.fit-code-desc {
    color: #202020;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: "Nadea";
}

.fit-code-box {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(45, 55, 31, 0.1);
    text-align: left;
}

.fit-code-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fit-code-iconbox {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #202020;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fit-code-iconbox span {
    color: #fff;
    font-size: 18px;
    font-family: "Nadea";
}

.fit-code-item-title {
    font-size: 14px;
    color: #202020;
    margin-bottom: 0;
    font-family: "Nadea";
}

.fit-code-item-sub {
    font-size: 12px;
    color: #4b5563;
    font-family: "Nadea";
    margin-bottom: 0;
}

.fit-code-note {
    font-size: 16px;
    color: #202020;
    margin-top: 16px;
}

/* .fit-profile-card {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
} */

.fit-profile-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    font-family: "Nadea";
}

.fit-profile-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fit-profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.fit-profile-row.no-border {
    border-bottom: none;
}

.fit-profile-label {
    font-size: 16px;
    color: #6b7280;
    font-family: "Nadea";
}

.fit-profile-value {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    font-family: "Nadea";
}

.capitalize {
    text-transform: capitalize;
}
.custom-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    color: #202020;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.custom-accordion-btn::after {
    display: none; /* remove default bootstrap arrow */
}

.custom-accordion-btn:hover {
    background: rgba(171, 153, 117, 0.05);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: #202020;
    transition: transform 0.3s ease;
}

/* rotate icon when open */
.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(180deg);
}

/* -------------------------------
   EARLY ACCESS SECTION
---------------------------------*/
.early-access-card {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border-radius: 24px;
    padding: 24px;
    border: 2px solid #e2ddd2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.early-access-primary-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 12px;
    font-family: "Nadea";
}

.early-access-primary-btn:hover {
    background: #101828;
}

.early-access-small-text {
    font-size: 14px;
    color: #202020;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: "Nadea";
}

.early-access-info-text {
    font-size: 18px;
    color: #202020;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Nadea";
}

.early-access-highlight {
    font-weight: 600;
    color: #b23a2f;
    font-family: "Nadea";
}

.early-access-secondary-btn {
    width: 100%;
    border: 2px solid #d1d5db;
    color: #202020;
    padding: 16px 18px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
    font-family: "Nadea";
}

.early-access-secondary-btn:hover {
    background: #f3f4f6;
}

.early-access-refresh-icon {
    width: 16px;
    height: 16px;
}
.size-box {
    display: flex;
    gap: 10px;
}
.size-content {
    padding: 10px 0px !important;
    text-align: center !important;
    height: 60px !important;
    line-height: 80px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.size-container {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 16px;
    text-align: left;
    margin-bottom: 32px;
}
.size-container h3 {
    font-size: 18px;
    font-family: "Nadea";
    margin-bottom: 5px;
}
.size-container p {
    font-size: 16px;
    font-family: "Nadea";
    margin-bottom: 5px;
}
.fit-result-row {
    padding: 0px 46px;
}
.fit-code-top img {
    width: 22px;
    height: 22px;
}

.custom-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.custom-accordion-btn {
    width: 100%;
    padding: 20px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 2px solid rgba(171, 153, 117, 0.3);
    font-family: "Nadea";
}

.custom-accordion-content {
    display: none;
    padding: 10px;
    background: #fafafa;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.custom-accordion.open .custom-accordion-content {
    display: block;
}

.custom-accordion.open .accordion-icon {
    transform: rotate(180deg);
}
.custom-accordion-content p {
    font-size: 14px;
    color: #202020;
    margin-bottom: 10px;
    font-family: "Nadea";
}
.how-it-works-section {
    background-color: #202020;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.how-to-work {
    display: flex;
    justify-content: center;
}
.how-to-work p {
    color: #f4f5f2;
    font-size: 16px;
    font-family: "Nadea";
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 24px;
}
.how-to-work h1 {
    font-size: 128px;
    color: #f4f5f2;
    font-family: "Nadea";
    margin-bottom: 0px;
}
.how-to-work h2 {
    font-size: 128px;
    color: #f4f5f2;
    font-family: "Nadea";
}
.how-to-work-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.border-center-text {
    position: relative;
    color: #f4f5f2;
    font-size: 16px;
    font-family: "Nadea";
}
.border-center-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    width: 35%;
    height: 1px;
    background-color: #6a7282;
}
.border-center-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    width: 35%;
    height: 1px;
    background-color: #6a7282;
}
.tell-as-about {
    background-color: #18181b;
    padding: 128px 40px;
}
.tell-as-about-number h3 {
    font-size: 128px;
    font-family: "Nadea";
    color: #ffffffa3;
    transition: transform 0.3s ease;
}
.num-img {
    width: 80px;
    height: 80px;
    border: 2px solid #fff3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background-color: #ffffff0d;
}
.shape-size:hover {
    transform: scale(1.08);
    border: 2px solid rgba(255, 255, 255, 0.603);
    background-color: #f1f1f11f;
}
.shape-size {
    width: 80px;
    height: 80px;
    border: 2px solid #fff3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background-color: #000;
}
.tell-as-about-number h3:hover {
    transform: scale(1.08);
    color: #cecccc6c;
}
.num-img:hover {
    transform: scale(1.08);
    border: 2px solid rgba(255, 255, 255, 0.603);
    background-color: #f1f1f11f;
}

.info-card {
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    transition:
        border-color 0.5s ease,
        transform 0.5s ease;
    margin-bottom: 60px;
    color: #f4f5f2;
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Title */
.card-title {
    font-size: 44px;
    color: #f4f5f2 !important;
    margin-bottom: 24px !important;
    line-height: 1.2;
    font-family: "Nadea";
}

/* Description */
.card-description {
    font-size: 18px;
    color: #f4f5f2;
    margin-bottom: 32px;
    font-family: "Nadea";
}

/* Feature list */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #f4f5f2;
    font-size: 18px;
    line-height: 1.7;
    font-family: "Nadea";
}

/* Bullet dots */
.dot-outer {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.dot-inner {
    width: 6px;
    height: 6px;
    background-color: #f4f5f2;
    border-radius: 50%;
}

/* Divider */
.dividers {
    height: 1px;
    margin-top: 32px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}
.info-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
}

.after-lines {
    position: relative;
}
.after-lines::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 68px;
    width: 2px;
    height: 80px;
    border-radius: 2px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}
.exmple-box {
    background-color: #18181b;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}
.exmple-box p {
    font-size: 16px;
    color: #f4f5f2;
    font-family: "Nadea";
}
.center-size-box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 24px;
}
.shape-size p {
    margin-bottom: 0px;
    color: #f4f5f2;
    font-family: "Nadea";
    font-size: 28px;
}
.after-lines-shape {
    position: relative;
}
.after-lines-shape::after {
    content: "";
    position: absolute;
    right: -48px;
    width: 35px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}
.three-shape {
    padding: 128px 0px;
    background-color: #202020;
}
.s-m-l-box {
    padding: 48px;
    border: 2px solid #fb2c364d;
    border-radius: 24px;
    background-color: #18181b;
    position: relative;
    margin: 0px 35px;
}
.s-m-l-box:hover {
    border: 2px solid #f526317c;
}
.s-m-l-box h3 {
    color: #ababab91;
    font-family: "Nadea";
    font-size: 48px;
}
.stander-size {
    text-transform: uppercase;
    color: #6a7282;
    font-family: "Nadea";
    font-size: 14px;
}
.size-content-box {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 26px;
    position: relative;
}
.crosse-img {
    position: absolute;
    left: 50%;
    top: 37%;
    transform: translate(-50%, -50%);
}
.arrow-right-img {
    position: absolute;
    right: -9%;
    top: 42%;
}
.card-title-sub {
    font-size: 30px;
    font-family: "Nadea";
    color: #f4f5f2;
    margin-bottom: 24px;
    border-bottom: 1px solid #ffffff47;
    padding-bottom: 24px;
}
.fit-code-box-2 {
    background: linear-gradient(to bottom right, #18181b, #000);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.fit-code-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.fit-code-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fit-code-item-2 {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.fit-code-text {
    font-size: 1.5rem;
    color: #f4f5f2;
    font-family: sans-serif;
}

.fit-code-line {
    width: 16px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.fit-code-label {
    text-align: center;
    color: #202020;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.mid-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fit-code-box-2:hover {
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.body-profile {
    padding: 64px 0px;
    background-color: #000;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 48px;
}
.body-profile:hover {
    border: 1px solid #ffffff47;
}
.body-profile h3 {
    font-family: "Nadea";
    font-size: 30px;
    color: #f4f5f2;
    font-weight: 400;
    margin-bottom: 32px;
}
.body-profile-box {
    margin: 0px 116px;
}
.band-box {
    padding: 32px;
    border: 1px solid #ffffff47;
    border-radius: 16px;
    background-color: #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition:
        border-color 0.5s ease,
        transform 0.5s ease;
}
.band-box h3 {
    font-size: 20px;
    font-family: "Nadea";
    color: #fff;
}
.band-text {
    text-align: center;
    margin-top: 20px;
}
.band-box p {
    font-size: 16px;
    font-family: "Nadea";
    color: #6a7282;
    margin-bottom: 0;
}
.band-box:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
}
.band-box:hover .shape-size {
    transform: scale(1.08);
    border: 2px solid rgba(255, 255, 255, 0.603);
    background-color: #f1f1f11f;
}
.band-content-text {
    font-size: 32px !important;
    font-family: "Nadea" !important;
    color: #f4f5f2 !important;
}
.bg-color-dark {
    background-color: #161617 !important;
}
.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    transition: transform 0.4s ease-in-out;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-box span {
    font-size: 48px;
    color: #f4f5f2;
    font-family: "Nadea";
}

/* Connector line */
.connector {
    width: 2rem; /* w-8 */
    height: 1px; /* h-px */
    background-color: rgba(255, 255, 255, 0.3);
}
.logo-box {
    width: 128px;
    height: 128px;
    background-color: #18181b;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}
.logo-row:hover {
    transform: scale(1.08);
}
.hover-custom:hover {
    transform: scale(1.08);
}
.border-center-text-upper {
    position: relative;
    color: #f4f5f2;
    font-size: 14px;
    font-family: "Nadea";
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}
.border-center-text-upper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -100px;
    width: 35%;
    height: 1px;
    background-color: #f4f5f2;
}
.border-center-text-upper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -100px;
    width: 35%;
    height: 1px;
    background-color: #f4f5f2;
}
.sigma-box {
    text-align: center;
}
.center-box {
    margin-bottom: 40px;
}
.size-card {
    position: relative;
    height: 100%;
    padding: 30px;
}

.card-bg {
    position: absolute;
    inset: 0;
    border-radius: 1rem; /* rounded-2xl */
    background: linear-gradient(to bottom right, #1f2937, #111827);
    overflow: hidden;
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Size letters */
.size-labels {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.size-labels span {
    font-size: 3.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Red cross lines */
.cross-lines {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}
.line-red {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgba(178 58 47);
}

.line-1 {
    transform: rotate(45deg);
}

.line-2 {
    transform: rotate(-45deg);
}
.hr-line {
    width: 100%;
    height: 1px;
    background-color: #565656;
    margin-bottom: 24px;
}
.text-24-cri {
    color: #f4f5f2;
    font-size: 24px;
    font-family: "Nadea";
}
.abt-rgt {
    padding: 50px 30px;
}
.standard-sizing {
    background-color: #202020;
    padding: 128px 40px;
    text-align: center;
}
.comman-head h2 {
    font-size: 48px;
    font-family: "Nadea";
    color: #f4f5f2;
}
.comman-box {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgb(161 161 161 / 21%);
    background-color: #18181b;
    margin-top: 64px;
    transition: transform 0.3s ease-in-out;
}
.comman-box:hover {
    transform: translateY(-6px);
    border: 1px solid rgb(109, 109, 109);
}
.size-box-comman-text {
    font-size: 72px;
    font-family: "Nadea";
    color: #ababad;
    line-height: 50px;
    transition: transform 0.5s ease-in-out;
    line-height: normal;
}
.size-box-comman {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.font-comman-text {
    font-size: 20px;
    font-family: "Nadea";
    color: #f4f5f2;
    text-align: left;
}
.font-comman-text-sub {
    font-size: 16px;
    font-family: "Nadea";
    color: #fff;
    text-align: left;
    color: #f4f5f2;
}
.options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 */
}

.option {
    /* display: flex; */
    align-items: center;
    gap: 1rem; /* gap-4 */
    cursor: pointer;
}

.icon-circle {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    border-radius: 9999px; /* rounded-full */
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.icon {
    width: 1.5rem; /* w-6 */
    height: 1.5rem; /* h-6 */
    stroke: #9ca3af; /* gray-400 */
    fill: none;
    transition: stroke 0.2s ease;
}

.option-text {
    color: #d1d5db; /* gray-300 */
    font-size: 1.125rem; /* text-lg */
    transition: color 0.2s ease;
}

/* Hover state */
.option:hover .icon-circle {
    background: rgba(255, 255, 255, 0.1);
}

.option:hover .icon {
    stroke: #ffffff;
}

.option:hover .option-text {
    color: #ffffff;
}
.svg-box {
    width: 48px;
    height: 48px;
    background-color: #242427;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-text {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    transition: transform 0.3s ease-in-out;
}
.image-text:hover {
    transform: translateX(6px);
}
.image-text:hover p {
    color: #fff;
}
.image-text:hover .svg-box .icon {
    color: #fff;
}

.image-text p {
    font-size: 18px;
    font-family: "Nadea";
    color: #f4f5f2;
    margin-bottom: 0px;
}
.comman-bottom-text {
    font-family: "Nadea";
    font-size: 30px;
    color: #f4f5f2;
    font-weight: 400;
}
.box-height-box {
    height: 100% !important;
}
.marging-32 {
    margin-bottom: 32px;
}
.approach-right-box {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 32px;
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.center-circle {
    background-color: #fff;
    width: 128px;
    height: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.plus-bg {
    position: absolute;
    left: 142px;
    top: 23px;
}
.sub-sircle {
    width: 80px;
    height: 80px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #504f4f;
    box-shadow: 0px 0px 4px 1px #80808087;
}
.sub-sircle span {
    font-size: 14px;
    font-family: "Nadea";
    color: #f4f5f2;
}
.circle-main-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.the-fit-title {
    margin-bottom: 60px;
}
.big-size {
    width: 160px;
    height: 160px;
    background-color: #1b1718;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #464649;
    margin-bottom: 18px;
    position: relative;
}
.big-size span {
    font-size: 60px;
    font-family: "Nadea";
    color: #f4f5f2;
}
.big-sigma-box {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 64px;
}
.big-content-box {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
}
.big-content-box h3 {
    color: #f4f5f2;
    font-size: 16px;
    font-family: "Nadea";
}
.hide-text-3,
.hide-text-1,
.hide-text-2 {
    display: none;
}
.box-hover-one:hover .hide-text-1 {
    display: block;
    position: absolute;
    bottom: -36px;
    color: #6a7282;
    width: 350px;
}
.box-hover-two:hover .hide-text-2 {
    display: block;
    position: absolute;
    bottom: -36px;
    color: #6a7282;
    width: 350px;
}
.box-hover-three:hover .hide-text-3 {
    display: block;
    position: absolute;
    bottom: -36px;
    color: #6a7282;
    width: 350px;
}
.big-content-box:hover {
    transform: scale(1.08);
}
.big-content-box:hover .big-size {
    background-color: #000;
    border: 2px solid rgb(196, 196, 196);
}
.after-line::after {
    content: "";
    position: absolute;
    bottom: 78px;
    right: -78px;
    width: 50px;
    height: 1px;
    background-color: #cfcfcf;
    z-index: 9;
}
.not-size-box {
    width: 768px;
    margin: auto;
    text-align: center;
    background: linear-gradient(to bottom right, #18181b, #000);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 48px;
}
.border-none {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 24px;
}
.bottom-css {
    margin-bottom: 0px;
}
.bg-black {
    margin: 0;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.font-20 {
    font-size: 20px;
}
.most-important {
    background-color: #000;
    border: 1px solid #ffffff21;
    border-radius: 16px;
    text-align: center;
    padding: 64px;
    margin-top: 64px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 0px 3px 0px grey;
}
.text-white-30-crim {
    font-size: 30px;
    font-family: "Nadea";
    color: #fff;
}
.most-important:hover {
    transform: scale(1.04);
}
.today-box {
    width: 896px;
    margin: auto;
}
.tft-box-content {
    padding: 64px;
    background-color: #1b1718;
    border-radius: 16px;
    text-align: left;
}
.margin-bottom-32 {
    margin-bottom: 32px;
}
.comman-24-intra {
    color: #f4f5f2;
    font-size: 24px;
    font-family: "Nadea";
    margin-bottom: 32px;
}
.text-gr-center {
    text-align: center;
}
.brand-philosophy-box {
    padding: 54px;
    border-radius: 16px;
    background-color: #000;
    margin-bottom: 40px;
    transition: transform 0.5s ease-in-out;
}
.comman-48-crim {
    font-size: 48px;
    font-family: "Nadea";
    color: #fff;
}
.brand-philosophy-box:hover {
    transform: scale(1.04);
    border: 1px solid grey;
}
.brand-philosophy-content {
    transition: transform 0.5s ease-in-out;
}
.brand-philosophy-content:hover {
    transform: translateX(10px);
}
.padding-80 {
    padding: 80px;
    background-color: #000;
    border-radius: 16px;
    border: 2px solid #353536;
    text-align: center;
    transition: transform 0.5s ease-in-out;
    margin-bottom: 100px;
}
.padding-80:hover {
    transform: scale(1.04);
    border: 2px solid grey;
}
.text-60-crim {
    font-size: 60px;
    color: #fff;
    font-family: "Nadea";
    transition: transform 0.5s ease-in-out;
    margin-bottom: 24px;
}
.text-60-crim:hover {
    transform: scale(1.04);
}
.font-24-Intra {
    font-size: 24px;
    font-family: "Nadea";
    color: #f4f5f2;
}
.color-white {
    color: #fff;
    margin-bottom: 25px;
}
.color-white:hover {
    transform: scale(1.08);
}
.hover-effect {
    transition: transform 0.3s ease-in-out;
}
.fit-code-item-2:hover {
    transform: scale(1.08);
}
.did-not-text {
    width: 1024px;
    margin: auto;
}
.sticky-box {
    position: sticky;
    top: 8rem;
    padding-right: 30px;
    text-align: left;
}

.heading {
    color: #ffffff;
    line-height: 1.1;
    font-size: 3rem;
}
.the-pattern-content {
    text-align: left;
}
.diff-way .modal-content-description {
    margin-bottom: 12px;
}
.diff-way .text-white-30-crim {
    margin-bottom: 48px;
}
.down-arrow-box {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}
.down-arrow-box::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.2), transparent);
    left: -40px;
    top: 50%;
}
.down-arrow-box::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    right: -40px;
    top: 50%;
}
.padding-80-basic {
    padding: 80px;
    border-radius: 16px;
    background-color: #000;
    border: 1px solid #464646;
}
.margin-top-css {
    margin: 80px 0px;
}
.bottom-box {
    width: 896px;
    margin: auto;
    text-align: center;
    margin-top: 80px;
}
.text-60-crim-basic {
    font-size: 60px;
    color: #fff;
    font-family: "Nadea";
    margin-bottom: 24px;
}
.logo-row-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 64px;
    transition: transform 0.4s ease-in-out;
}
.logo-row-2 .logo-box {
    transition: transform 0.3s ease-in-out;
    position: relative;
}
.logo-box:hover {
    transform: scale(1.08);
}
.top-basic-text {
    margin-bottom: 48px;
}
.bottom-text-box {
    position: absolute;
    color: #6a7282;
    bottom: -50px;
}
.content-relative {
    position: relative;
}
.logo-box:hover .bottom-text-box {
    color: #fff;
}
.box-center {
    width: 792px;
    margin: auto;
    margin-top: 80px;
    padding-top: 20px;
}
.box-center .font-24-Intra {
    margin-bottom: 32px;
}
.padding-top-36 {
    padding-top: 36px;
}
.margin-bootom-css {
    margin-bottom: 64px;
}
.founder-content-text {
    text-align: left;
    padding-top: 32px;
}
.comman-mgbt-40 {
    margin-bottom: 40px;
}
.hr-padding-css {
    margin: 60px 0px;
}
.width-css-box {
    width: 1064px;
    margin: auto;
}
.text-left-box {
    text-align: end;
}
.text-20-grey {
    font-size: 20px;
    font-family: "Nadea";
    color: #ababab;
}
.before-line {
    position: relative;
}
.before-line::before {
    position: absolute;
    content: "";
    width: 25px;
    right: 88px;
    height: 1px;
    background-color: #fff;
    top: 50%;
}
.box-measurement-guide {
    position: relative;
    padding: 30px !important;
}
.close-btn-measurement {
    position: absolute;
    right: 18px;
    width: 30px !important;
    height: 30px !important;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    color: grey !important;
    top: 22px;
    font-size: 14px;
    opacity: 1 !important;
    box-shadow: 0px 0px 10px 0px #b3b3b3;
}
.footer-copy {
    font-family: "Nadea";
    color: #f4f5f2;
}
.animated-text {
    position: absolute;
    top: 0px;
    left: 0;
    width: 250px;
}
.com-btn:hover .arrow {
    transform: translateX(6px);
}
.faq-box {
    width: 896px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 40px;
}
.faq-heading {
    font-size: 30px;
    font-family: "Nadea";
    margin-bottom: 32px;
    text-align: center;
}
.accordion-custom {
    padding: 20px !important;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
    color: #202020 !important;
    box-shadow: 0px 2px 5px 0px #c7c7c7 !important;
    font-family: "Nadea" !important;
}
.itum-custom {
    border-radius: 16px !important;
    margin-bottom: 15px !important;
}
.accordion-custom:not(.collapsed) {
    background-color: #fbf9fa !important;
}
.itum-custom:not(:first-of-type) {
    border: 1px solid #dddddd !important;
}
.accordion-button.collapsed {
    border-radius: 16px !important;
}
.accordion-custom:hover {
    background-color: #fbf9fa !important;
    box-shadow: 0px 2px 4px 0px #d9d9d9 !important;
}
.accordion-button:focus {
    box-shadow: none !important;
}
.itum-custom p {
    font-family: "Nadea";
    color: #364153;
}
.custom-text-box .padding-80:hover {
    transform: translate(0) !important;
}
.contact-heading {
    font-size: 60px;
    text-align: center;
    position: relative;
    font-weight: 500;
    margin-bottom: 28px;
}
.contact-heading::after {
    content: "";
    background-color: #202020;
    height: 4px;
    width: 100px;
    position: absolute;
    bottom: -8px;
    left: 47%;
}
.contact-box {
    padding: 80px 10px;
}
.anchor-red-color {
    color: #b23a2f;
}
.contact-sub-heading {
    font-size: 18px;
    color: #202020;
    text-align: center;
}
.contact-form-box {
    padding: 32px;
    border-radius: 16px;
    background-color: #f4f5f2;
}
.text-sub-box {
    margin-bottom: 48px;
}
.contact-form-head {
    font-size: 24px;
    color: #202020;
}
.form-input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.form-input-box label {
    margin-bottom: 6px;
    color: #202020;
}
.form-input-box input {
    height: 50px;
    border-radius: 0px;
    padding: 10px 15px;
    background-color: #f4f5f2;
    color: #202020;
    border: 1px solid #dfdfdf;
}
.send-msg {
    border: none;
    padding: 16px 32px;
    background-color: #202020;
    color: #fff;
}
.contact-right-head {
    font-size: 20px;
    color: #202020;
}
.contact-information-box {
    padding-left: 15px;
    margin-bottom: 24px;
}
.circle-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f4f5f2;
}
.phone-box {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 16px;
}
.r-info-box h3 {
    font-size: 16px;
    color: #202020;
    margin-bottom: 4px;
}
.r-info-box p {
    margin-bottom: 0px;
    color: #202020;
}
.follow-box {
    margin-top: 30px;
}
.circle-icons:hover {
    background-color: #202020;
}
.circle-icons:hover .social-1 {
    display: none;
}
.circle-icons:hover .social-2 {
    display: none;
}
.circle-icons:hover .social-3 {
    display: none;
}
.social-hover {
    display: none;
}
.circle-icons:hover .social-hover {
    display: block;
}

textarea {
    background-color: #f4f5f2;
}
.day-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mrg-24 {
    margin-top: 24px;
}
.day-text-gr {
    margin-bottom: 8px;
}
.time-text-charcol {
    color: #202020;
    margin-bottom: 8px;
}
.send-msg:hover {
    background-color: #101828 !important;
}
.privacy-policy-box {
    width: 1000px;
    margin: auto;
    padding: 64px 10px;
}
.privacy-policy-head {
    text-align: center;
    margin-bottom: 64px;
}
.h1-comman {
    font-size: 48px;
    color: #202020;
    margin-bottom: 16px;
}
.h2-20-subb {
    font-size: 20px;
    color: #202020;
}
.privacy-policy-text {
    margin-bottom: 32px;
}
.privacy-policy-text h3 {
    font-size: 24px;
    color: #202020;
    margin-bottom: 16px;
}
.privacy-policy-text p {
    font-size: 16px;
    color: #202020;
    margin-bottom: 12px;
}
.privacy-policy-text ul li {
    margin-bottom: 8px;
    color: #202020;
}
.nav-head {
    padding: 10px 10px !important;
}
.btn-outer {
    background-color: #ab99751a !important;
}
.mob-li a {
    padding: 12px 16px;
    border-radius: 8px;
    color: #202020 !important;
}
.mob-outer-head {
    border-bottom: 1px solid #c7c7c7;
}
/* Mobile menu active background */
.mob-li.active {
    background-color: #ab99751a; /* Bootstrap blue */
    border-radius: 6px;
}

.mob-li.active .nav-link {
    color: #202020 !important;
}
.mob-nav-li {
    padding-bottom: 20px;
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: 20px !important;
}
.navbar-toggler:focus {
    box-shadow: none !important;
}
.toggle-btn-cmn {
    border: none !important;
}
.modal-com-color {
    color: #202020;
}
.modal-com-sub-color {
    color: #202020;
}

@media (max-width: 1050px) {
    .mob-header {
        display: block;
    }
    .hearder-box {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1050px) {
    .hero-section {
        padding: 20px 10px;
    }
    .hero-left-text {
        padding-top: 50px;
    }
    .hero-section h1,
    .hero-section h2 {
        font-size: 48px;
    }
    .hero-left-text p {
        font-size: 18px;
    }
    .right-hero-img {
        padding: 40px 0px;
    }
    .most-tshirt {
        padding: 50px 10px;
    }
    .most-tshirt-heading h2 {
        font-size: 30px;
    }
    .card-front {
        margin-bottom: 15px;
    }
    .bottom-text h3 {
        font-size: 18px;
    }
    .quote-wrapper {
        gap: 0;
    }
    .hero-text {
        font-size: 24px;
    }
    .right-main-eng-box {
        padding: 0;
    }
    .right-eng-text h3 {
        margin-top: 10px;
        font-size: 48px;
    }
    .engineered-section {
        padding: 80px 10px;
    }
    .find-heading h3 {
        font-size: 48px;
    }
    .step-card {
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .bottom-heading h3 {
        font-size: 20px;
    }
    .center-text {
        padding: 0;
    }
    .footer-inner {
        flex-wrap: wrap;
    }
    .how-to-work h1 {
        font-size: 48px;
    }
    .how-to-work h2 {
        font-size: 48px;
        text-align: center;
    }
    .main-container {
        padding-top: 60px;
        min-height: calc(100vh - 60px);
    }
    .tell-as-about {
        padding: 50px 10px;
    }
    .tell-as-about-number {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .tell-as-about-number h3 {
        font-size: 96px;
    }
    .after-lines::after {
        display: none;
    }
    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .card-title {
        font-size: 24px;
    }
    .exmple-box {
        padding: 10px;
    }
    .shape-size {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    .shape-size p {
        font-size: 18px;
    }
    .modal-content-description-sub {
        margin-bottom: 0px;
    }
    .exmple-box p {
        font-size: 18px;
        text-align: center;
    }
    .three-shape {
        padding: 80px 10px;
    }
    .s-m-l-box {
        margin: 0;
    }
    .arrow-right-img {
        display: none;
    }
    .three-shape-content {
        margin-top: 40px;
    }
    .card-title-sub {
        font-size: 18px;
    }
    .text-res-32 {
        font-size: 32px;
    }
    .body-profile-box {
        margin: 0;
    }
    .band-box {
        margin-bottom: 25px;
    }
    .logo-group {
        gap: 15px;
    }
    .logo-box {
        width: 80px;
        height: 80px;
    }
    .center-size-box {
        gap: 30px;
    }
    .after-lines-shape::after {
        right: -26px;
        width: 20px;
    }
    .feature-item {
        font-size: 16px;
        line-height: normal;
    }
    .heading-line-two {
        width: 300px;
    }
    .border-center-text-upper::before {
        width: 40px;
        left: -48px;
    }
    .border-center-text-upper::after {
        width: 40px;
        right: -48px;
    }
    .how-to-work h1 {
        text-align: center;
    }
    .size-card {
        height: 350px;
    }
    .abt-rgt {
        padding: 30px 0px;
    }
    .font-32-res {
        font-size: 32px;
    }
    .text-24-cri {
        font-size: 18px;
    }
    .standard-sizing {
        padding: 80px 10px;
    }
    .comman-box {
        margin-top: 40px;
    }
    .comman-bottom-text {
        font-size: 20px;
    }
    .marging-32 h2 {
        font-size: 36px;
    }
    .center-circle {
        width: 80px;
        height: 80px;
    }
    .center-circle img {
        height: 60px;
    }
    .not-size-box {
        width: auto;
    }
    .big-sigma-box {
        gap: 15px;
        margin-bottom: 40px;
    }
    .big-size {
        width: 80px;
        height: 80px;
    }
    .big-size span {
        font-size: 40px;
    }
    .after-line::after {
        display: none;
    }
    .box-hover-one:hover .hide-text-1 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .box-hover-two:hover .hide-text-2 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .box-hover-three:hover .hide-text-3 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .font-24-res {
        font-size: 24px !important;
    }
    .the-fit-title {
        font-size: 36px !important;
    }
    .row-gap-css {
        row-gap: 15px;
    }
    .most-important {
        padding: 30px;
        margin-top: 30px;
    }
    .text-white-30-crim {
        font-size: 18px;
    }
    .today-box {
        width: auto;
    }
    .tft-box-content {
        padding: 20px;
    }
    .comman-24-intra {
        font-size: 18px;
    }
    .modal-content-heading {
        font-size: 26px;
    }
    .comman-48-crim {
        font-size: 24px;
    }
    .brand-philosophy-box {
        padding: 25px;
        margin-bottom: 15px;
    }
    .text-60-crim {
        font-size: 30px;
    }
    .padding-80 {
        padding: 20px;
        margin-bottom: 50px;
    }
    .size-box-comman-text {
        font-size: 36px;
    }
    .font-24-Intra {
        font-size: 20px;
    }
    .did-not-text {
        width: auto;
    }
    .padding-80-basic {
        padding: 30px;
    }
    .diff-way .text-white-30-crim {
        margin-bottom: 20px;
    }
    .down-arrow-box {
        margin-bottom: 20px;
    }
    .bottom-box {
        width: auto;
    }
    .text-60-crim-basic {
        font-size: 36px;
    }
    .margin-top-css {
        margin: 30px 0px;
    }
    .box-center {
        width: auto;
    }
    .logo-row-2 {
        gap: 15px;
    }
    .contact-information-box {
        padding-left: 0px;
        margin-top: 20px;
    }
    .contact-heading {
        font-size: 48px;
    }
    .contact-heading::after {
        left: 37%;
    }
    .faq-box {
        width: auto;
    }
    .fit-code-number {
        font-size: 64px;
    }
}
@media (max-width: 767px) {
    .fit-code-number {
        font-size: 78px;
    }
    .faq-box {
        width: auto;
    }
    .step-title {
        font-size: 20px;
    }
    .hero-section {
        padding: 20px 10px;
    }
    .hero-left-text {
        padding-top: 50px;
    }
    .hero-section h1,
    .hero-section h2 {
        font-size: 48px;
    }
    .hero-left-text p {
        font-size: 18px;
    }
    .right-hero-img {
        padding: 40px 0px;
    }
    .most-tshirt {
        padding: 50px 10px;
    }
    .most-tshirt-heading h2 {
        font-size: 30px;
    }
    .card-front {
        margin-bottom: 15px;
    }
    .bottom-text h3 {
        font-size: 18px;
    }
    .quote-wrapper {
        gap: 0;
    }
    .hero-text {
        font-size: 24px;
    }
    .right-main-eng-box {
        padding: 0;
    }
    .right-eng-text h3 {
        margin-top: 10px;
        font-size: 48px;
    }
    .engineered-section {
        padding: 80px 10px;
    }
    .find-heading h3 {
        font-size: 48px;
    }
    .step-card {
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .bottom-heading h3 {
        font-size: 20px;
    }
    .center-text {
        padding: 0;
    }
    .footer-inner {
        flex-wrap: wrap;
    }
    .how-to-work h1 {
        font-size: 48px;
    }
    .how-to-work h2 {
        font-size: 48px;
        text-align: center;
    }
    .main-container {
        padding-top: 60px;
        min-height: calc(100vh - 60px);
    }
    .tell-as-about {
        padding: 50px 10px;
    }
    .tell-as-about-number {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .tell-as-about-number h3 {
        font-size: 96px;
    }
    .after-lines::after {
        display: none;
    }
    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .card-title {
        font-size: 24px;
    }
    .exmple-box {
        padding: 10px;
    }
    .shape-size {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    .shape-size p {
        font-size: 18px;
    }
    .modal-content-description-sub {
        margin-bottom: 0px;
    }
    .exmple-box p {
        font-size: 18px;
        text-align: center;
    }
    .three-shape {
        padding: 80px 10px;
    }
    .s-m-l-box {
        margin: 0;
    }
    .arrow-right-img {
        display: none;
    }
    .three-shape-content {
        margin-top: 40px;
    }
    .card-title-sub {
        font-size: 18px;
    }
    .text-res-32 {
        font-size: 32px;
    }
    .body-profile-box {
        margin: 0;
    }
    .band-box {
        margin-bottom: 25px;
    }
    .logo-group {
        gap: 15px;
    }
    .logo-box {
        width: 80px;
        height: 80px;
    }
    .center-size-box {
        gap: 30px;
    }
    .after-lines-shape::after {
        right: -26px;
        width: 20px;
    }
    .feature-item {
        font-size: 16px;
        line-height: normal;
    }
    .heading-line-two {
        width: 300px;
    }
    .border-center-text-upper::before {
        width: 40px;
        left: -48px;
    }
    .border-center-text-upper::after {
        width: 40px;
        right: -48px;
    }
    .how-to-work h1 {
        text-align: center;
    }
    .size-card {
        height: 350px;
    }
    .abt-rgt {
        padding: 30px 0px;
    }
    .font-32-res {
        font-size: 32px;
    }
    .text-24-cri {
        font-size: 18px;
    }
    .standard-sizing {
        padding: 80px 10px;
    }
    .comman-box {
        margin-top: 40px;
    }
    .comman-bottom-text {
        font-size: 20px;
    }
    .marging-32 h2 {
        font-size: 36px;
    }
    .center-circle {
        width: 80px;
        height: 80px;
    }
    .center-circle img {
        height: 60px;
    }
    .not-size-box {
        width: auto;
    }
    .big-sigma-box {
        gap: 15px;
        margin-bottom: 40px;
    }
    .big-size {
        width: 80px;
        height: 80px;
    }
    .big-size span {
        font-size: 40px;
    }
    .after-line::after {
        display: none;
    }
    .box-hover-one:hover .hide-text-1 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .box-hover-two:hover .hide-text-2 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .box-hover-three:hover .hide-text-3 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .font-24-res {
        font-size: 24px !important;
    }
    .the-fit-title {
        font-size: 36px !important;
    }
    .row-gap-css {
        row-gap: 15px;
    }
    .most-important {
        padding: 30px;
        margin-top: 30px;
    }
    .text-white-30-crim {
        font-size: 18px;
    }
    .today-box {
        width: auto;
    }
    .tft-box-content {
        padding: 20px;
    }
    .comman-24-intra {
        font-size: 18px;
    }
    .modal-content-heading {
        font-size: 26px;
    }
    .comman-48-crim {
        font-size: 24px;
    }
    .brand-philosophy-box {
        padding: 25px;
        margin-bottom: 15px;
    }
    .text-60-crim {
        font-size: 30px;
    }
    .padding-80 {
        padding: 20px;
        margin-bottom: 50px;
    }
    .size-box-comman-text {
        font-size: 36px;
    }
    .font-24-Intra {
        font-size: 20px;
    }
    .did-not-text {
        width: auto;
    }
    .padding-80-basic {
        padding: 30px;
    }
    .diff-way .text-white-30-crim {
        margin-bottom: 20px;
    }
    .down-arrow-box {
        margin-bottom: 20px;
    }
    .bottom-box {
        width: auto;
    }
    .text-60-crim-basic {
        font-size: 36px;
    }
    .margin-top-css {
        margin: 30px 0px;
    }
    .box-center {
        width: auto;
    }
    .logo-row-2 {
        gap: 15px;
    }
    .contact-information-box {
        padding-left: 0px;
        margin-top: 20px;
    }
    .contact-heading {
        font-size: 48px;
    }
    .contact-heading::after {
        left: 37%;
    }
}
@media (max-width: 600px) {
    .fit-code-symbole {
        bottom: -28px !important;
    }
    .fit-code-number {
        font-size: 48px;
    }
    .hero-section {
        padding: 20px 10px;
    }
    .hero-left-text {
        padding-top: 50px;
    }
    .hero-section h1,
    .hero-section h2 {
        font-size: 48px;
    }
    .hero-left-text p {
        font-size: 18px;
    }
    .right-hero-img {
        padding: 40px 0px;
    }
    .most-tshirt {
        padding: 50px 10px;
    }
    .most-tshirt-heading h2 {
        font-size: 30px;
    }
    .card-front {
        margin-bottom: 15px;
    }
    .bottom-text h3 {
        font-size: 18px;
    }
    .quote-wrapper {
        gap: 0;
    }
    .hero-text {
        font-size: 24px;
    }
    .right-main-eng-box {
        padding: 0;
    }
    .right-eng-text h3 {
        margin-top: 10px;
        font-size: 48px;
    }
    .engineered-section {
        padding: 80px 10px;
    }
    .find-heading h3 {
        font-size: 48px;
    }
    .step-card {
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .bottom-heading h3 {
        font-size: 20px;
    }
    .center-text {
        padding: 0;
    }
    .footer-inner {
        flex-wrap: wrap;
    }
    .how-to-work h1 {
        font-size: 48px;
    }
    .how-to-work h2 {
        font-size: 48px;
        text-align: center;
    }
    .main-container {
        padding-top: 60px;
        min-height: calc(100vh - 60px);
    }
    .tell-as-about {
        padding: 50px 10px;
    }
    .tell-as-about-number {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .tell-as-about-number h3 {
        font-size: 96px;
    }
    .after-lines::after {
        display: none;
    }
    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .card-title {
        font-size: 24px;
    }
    .exmple-box {
        padding: 10px;
    }
    .shape-size {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    .shape-size p {
        font-size: 18px;
    }
    .modal-content-description-sub {
        margin-bottom: 0px;
    }
    .exmple-box p {
        font-size: 18px;
        text-align: center;
    }
    .three-shape {
        padding: 80px 10px;
    }
    .s-m-l-box {
        margin: 0;
    }
    .arrow-right-img {
        display: none;
    }
    .three-shape-content {
        margin-top: 40px;
    }
    .card-title-sub {
        font-size: 18px;
    }
    .text-res-32 {
        font-size: 32px;
    }
    .body-profile-box {
        margin: 0;
    }
    .band-box {
        margin-bottom: 25px;
    }
    .logo-group {
        gap: 15px;
    }
    .logo-box {
        width: 80px;
        height: 80px;
    }
    .center-size-box {
        gap: 30px;
    }
    .after-lines-shape::after {
        right: -26px;
        width: 20px;
    }
    .feature-item {
        font-size: 16px;
        line-height: normal;
    }
    .heading-line-two {
        width: 300px;
    }
    .border-center-text-upper::before {
        width: 40px;
        left: -48px;
    }
    .border-center-text-upper::after {
        width: 40px;
        right: -48px;
    }
    .how-to-work h1 {
        text-align: center;
    }
    .size-card {
        height: 350px;
    }
    .abt-rgt {
        padding: 30px 0px;
    }
    .font-32-res {
        font-size: 32px;
    }
    .text-24-cri {
        font-size: 18px;
    }
    .standard-sizing {
        padding: 80px 10px;
    }
    .comman-box {
        margin-top: 40px;
    }
    .comman-bottom-text {
        font-size: 20px;
    }
    .marging-32 h2 {
        font-size: 36px;
    }
    .center-circle {
        width: 80px;
        height: 80px;
    }
    .center-circle img {
        height: 60px;
    }
    .not-size-box {
        width: auto;
    }
    .big-sigma-box {
        gap: 15px;
        margin-bottom: 40px;
    }
    .big-size {
        width: 80px;
        height: 80px;
    }
    .big-size span {
        font-size: 40px;
    }
    .after-line::after {
        display: none;
    }
    .box-hover-one:hover .hide-text-1 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .box-hover-two:hover .hide-text-2 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .box-hover-three:hover .hide-text-3 {
        width: auto;
        font-size: 14px;
        line-height: 18px;
        bottom: -45px;
    }
    .font-24-res {
        font-size: 24px !important;
    }
    .the-fit-title {
        font-size: 36px !important;
    }
    .row-gap-css {
        gap: 15px;
    }
    .most-important {
        padding: 30px;
        margin-top: 30px;
    }
    .text-white-30-crim {
        font-size: 18px;
    }
    .today-box {
        width: auto;
    }
    .tft-box-content {
        padding: 20px;
    }
    .comman-24-intra {
        font-size: 18px;
    }
    .modal-content-heading {
        font-size: 26px;
    }
    .comman-48-crim {
        font-size: 24px;
    }
    .brand-philosophy-box {
        padding: 25px;
        margin-bottom: 15px;
    }
    .text-60-crim {
        font-size: 30px;
    }
    .padding-80 {
        padding: 20px;
        margin-bottom: 50px;
    }
    .size-box-comman-text {
        font-size: 36px;
    }
    .font-24-Intra {
        font-size: 20px;
    }
    .did-not-text {
        width: auto;
    }
    .padding-80-basic {
        padding: 30px;
    }
    .diff-way .text-white-30-crim {
        margin-bottom: 20px;
    }
    .down-arrow-box {
        margin-bottom: 20px;
    }
    .bottom-box {
        width: auto;
    }
    .text-60-crim-basic {
        font-size: 36px;
    }
    .margin-top-css {
        margin: 30px 0px;
    }
    .box-center {
        width: auto;
    }
    .logo-row-2 {
        gap: 15px;
    }
    .contact-information-box {
        padding-left: 0px;
        margin-top: 20px;
    }
    .contact-heading {
        font-size: 48px;
    }
    .contact-heading::after {
        left: 37%;
    }
    /* modal-fit-responsive */
    .information-box {
        padding: 25px;
    }
    .shape-main-box {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .shape-main-box .padding-css-shape {
        width: 48%;
    }
    .shape-box img {
        height: 90px;
    }
    .faq-box {
        width: auto;
    }
    .fit-result-row {
        padding: 0px 15px;
    }
    .size-box {
        flex-wrap: wrap;
    }
    .size-content {
        width: 22%;
        margin: 0;
    }

    /* modal-fit-responsive */
}
@media (max-width: 400px) {
    .fit-code-symbole {
        bottom: -28px !important;
    }
    .fit-code-number {
        font-size: 30px;
    }
    .logo-row {
        gap: 10px;
    }
    .logo-box span {
        font-size: 20px;
    }
    .logo-box {
        width: 55px;
        height: 55px;
    }
}

.login_form_box {
    width: 448px;
    margin: 0px auto;
    padding: 50px 40px;
    background-color: #fbfbfb;
    border: 1px solid #cfcfcf;
    border-radius: 16px;
}
.login_right_box {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fbfbfb;
    flex-direction: column;
    padding: 40px 0px;
}
.login_logo_img {
    margin-bottom: 24px;
    text-align: center;
}
.admin-logo-paradox {
    width: 344px;
    height: auto;
    margin-bottom: 24px;
}
.login_form_box h3 {
    font-size: 24px;
    font-family: "Nadea";
    color: #0b0b0b;
    font-weight: 600;
}
.login_form_box p {
    color: #202020;
    font-family: "Nadea";
    font-size: 16px;
}
.login_input_box input {
    height: 52px;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    padding: 14px 12px 14px 40px;
    color: #3f3f3f;
    width: 100%;
    font-size: 16px;
    font-family: "Nadea";
}
.login_input_box label {
    margin-bottom: 8px;
} 
.mail-icons {
    position: absolute;
    top: 55%;
    left: 10px;
}
.login_input_box {
    margin-bottom: 24px;
    position: relative;
}
.Sign_in_btn {
    border: none;
    background-color: #000;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 700;
    padding: 16px;
    font-family: "Nadea";
    height: 52px;
}
 .fit-code-symbole {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    font-size: 16px;
    color: #202020;
    letter-spacing: 4px;
    white-space: nowrap;
}
.login-text {
    font-size: 48px;
    color: #202020;
}
.anchorSizeSelect p {
    margin: 0;
}
.user-profile-box {
    background-color: #202020;
    padding: 26px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.user-box {
    padding: 48px 10px;
    background-color: #fafbfc;
}
.user-image-box {
    width: 64px;
    height: 64px;
    background-color: #ab9975;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-bottom: 10px;
}
.user-profile-box h3 {
    color: #F4F5F2;
    font-size: 20px;
}
.mail-icon-short span {
    font-size: 14px;
    color: #f4f5f2;
}
.tab-box-left {
    padding: 16px;
    background-color: #fdfdfd;
    border: 1px solid #e3e3e3;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.tab-box-left .nav-pills .nav-link.active {
    background-color: #0b0b0b !important;
    color: #ffffff !important;
}
.nav-link .icon-light {
    display: none;
}
.nav-link.active .icon-light {
    display: inline-block;
}
.nav-link.active .icon-dark {
    display: none;
}
.tab-box-left .nav-pills .nav-link {
    text-align: left;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #454648;
    background-color: transparent;
}
.current-fit-card {
    position: relative;
    background-color: #202020;
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    color: #ffffff;
}

/* Glow Effects */
.current-fit-glow-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: rgba(171, 153, 117, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.current-fit-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(171, 153, 117, 0.05);
    border-radius: 50%;
    filter: blur(120px);
}

.current-fit-content {
    position: relative;
    z-index: 2;
}

/* Header */
.current-fit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.current-fit-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #AB9975;
}

.current-fit-icon {
    color: #AB9975;
}

/* Grid */
.current-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}


.fit-label {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.fit-size {
    font-size: 60px;
}

.fit-chest {
    font-size: 36px;
}

.fit-chest span {
    font-size: 18px;
    opacity: 0.6;
}

.fit-comfort {
    font-size: 22px;
}

/* Buttons */
.current-fit-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fit-btn-primary {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    color: #2D371F;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.fit-btn-primary:hover {
    background: #f1f1f1;
}

.fit-btn-secondary {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.fit-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .current-fit-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .current-fit-buttons {
        flex-direction: column;
    }
}

