:root {
    --color-1: #4B7EB6;
    --color-2: #002E56;
    --color-3: #FFF;
    --color-4: #282881;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;

}



.hero-section {
    width: 100%;
    min-height: 100vh;
    background: var(--color-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    overflow: hidden;
}

.hero-left {
    width: 50%;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-flex;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-1);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: var(--color-4);
    transform: translateY(-3px);
}

.hero-right {
    width: 50%;
    position: relative;
    height: 500px;
}

.card-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.nfc-card-main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.7s ease;
    z-index: 5;
}

.nfc-card-main.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.nfc-card-main img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.nfc-card-bg {
    position: absolute;
    width: 220px;
    opacity: 0.2;
    animation: floatY 6s ease-in-out infinite;
}

.nfc-card-bg img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08);
}

.bg1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg2 {
    bottom: 15%;
    left: 20%;
    animation-delay: 1s;
}

.bg3 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .nfc-card-main {
        width: 280px;
    }

    .nfc-card-bg {
        width: 180px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 15px;
    }

    .nfc-card-main {
        width: 250px;
        height: auto;
    }

    .nfc-card-bg {
        width: 140px;
    }

    .bg1,
    .bg2,
    .bg3 {
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        position: relative;
        margin: 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .hero-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .nfc-card-main {
        width: 200px;
    }

    .nfc-card-bg {
        width: 120px;
    }
}

.stats-section {
    position: relative;
    margin-top: -90px;
    padding: 0 80px 80px;
    z-index: 10;
}

.stats-wrapper {
    background: #fff;
    border-radius: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s ease;
}


.stat-box.show {
    opacity: 1;
    transform: translateY(0);
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.02);
}

.stat-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(75, 126, 182, 0.12), transparent);
    opacity: 0;
    transition: 0.4s;
}

.stat-box:hover::before {
    opacity: 1;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(75, 126, 182, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-wrap i {
    font-size: 24px;
    color: var(--color-1);
    z-index: 5;
}

.icon-wrap::before,
.icon-wrap::after,
.icon-wrap span {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
}

.icon-wrap::before {
    border: 2px solid rgba(75, 126, 182, 0.3);
}

.icon-wrap::after {
    border: 2px solid rgba(75, 126, 182, 0.5);
}

.icon-wrap span {
    border: 2px solid rgba(75, 126, 182, 0.8);
}

.stat-box:hover .icon-wrap::before {
    animation: ripple 0.9s ease-out;
}

.stat-box:hover .icon-wrap::after {
    animation: ripple 0.9s ease-out 0.15s;
}

.stat-box:hover .icon-wrap span {
    animation: ripple 0.9s ease-out 0.3s;
}

@keyframes ripple {
    0% {
        opacity: 0.6;
        transform: scale(0.6);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.stat-box h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: var(--color-2);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: #666;
}

.stat-box:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-box:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        padding: 0 25px 60px;
    }
}

@media (max-width: 500px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
}


.work-section {
    background: #fff;
    padding: 100px 80px;
}

.work-container {
    max-width: 1200px;
    margin: auto;
}

.work-head {
    text-align: center;
    margin-bottom: 60px;
}

.work-head h2 {
    font-size: 38px;
    font-family: 'Poppins', sans-serif;
    color: var(--color-2);
}

.work-head p {
    color: #666;
    margin-top: 10px;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}



.work-step {
    text-align: center;
    padding: 20px;
    position: relative;

    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.work-step.show {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: rgba(75, 126, 182, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon i {
    font-size: 22px;
    color: var(--color-1);
    z-index: 2;
}

.step-icon span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--color-1);
    opacity: 0;
}

.work-step:hover .step-icon span {
    animation: ripple 0.8s ease-out;
}

@keyframes ripple {
    0% {
        opacity: 0.5;
        transform: scale(0.6);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

.work-step h3 {
    margin-top: 15px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--color-2);
}

.work-step p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.work-step:hover {
    transform: translateY(-8px);
}

@media (max-width: 992px) {
    .work-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-steps::before {
        display: none;
    }
}

:root {
    --primary: #1B1464;
    --accent: #4E79A7;
    --bg: #FFFFFF;
    --card-bg: linear-gradient(135deg, #f0f4ff, #e0eaff);
    --shadow: rgba(30, 30, 60, 0.15);
}

.benefits-section {
    padding: 120px 20px;
    background: var(--color-2);
    text-align: center;
    overflow: hidden;
}

.b-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg);
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.b-title.show-heading {
    opacity: 1;
    transform: translateY(0);
}

.b-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.b-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px 30px;
    width: 280px;
    min-height: 360px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(50px) rotateY(10deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 40px var(--shadow);
    cursor: pointer;
}

.b-card.show-card {
    opacity: 1;
    transform: translateY(0) rotateY(0);
}

.b-card:hover {
    transform: translateY(-20px) rotateY(8deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 40px 80px rgba(30, 30, 60, 0.25);
}

.b-card .icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: transform 0.5s ease;
}

.b-card:hover .icon {
    transform: rotate(15deg) scale(1.2);
}

.b-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.b-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


.benefits-section {
    position: relative;
    padding: 120px 20px;

    overflow: hidden;
}

#network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}








:root {
    --kp-primary: #1B1464;
    --kp-accent: #4E79A7;
    --kp-bg: #FFFFFF;
    --kp-card: #F5F8FC;
    --kp-shadow: rgba(0, 0, 0, 0.15);
}

.korejo-products {
    position: relative;
    padding: 40px 0;
    background: var(--kp-bg);
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


.kp-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kp-slider {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: hidden;
}

.kp-card {
    position: absolute;
    width: 260px;
    height: 420px;
    border-radius: 25px;
    background: var(--kp-card);
    transition: all 0.8s cubic-bezier(.22, 1, .36, 1);
    cursor: pointer;
    overflow: hidden;
    transform-style: preserve-3d;
}

.kp-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.kp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
    -webkit-user-drag: none;
}

.kp-card.active {
    transform: translateX(0) scale(1.2) rotateY(0deg);
    z-index: 10;

}

.kp-card.left {
    z-index: 5;
}

.kp-card.right {
    z-index: 5;
}

.kp-card:nth-child(1) {
    transform: translateX(-500px) scale(0.7) rotateY(25deg);
}

.kp-card:nth-child(2) {
    transform: translateX(-260px) scale(0.9) rotateY(15deg);
}

.kp-card:nth-child(3) {
    transform: translateX(0) scale(1.2);
}

.kp-card:nth-child(4) {
    transform: translateX(260px) scale(0.9) rotateY(-15deg);
}

.kp-card:nth-child(5) {
    transform: translateX(500px) scale(0.7) rotateY(-25deg);
}

.kp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: all .6s cubic-bezier(.22, 1, .36, 1);
    color: #fff;
}

.kp-overlay {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.kp-card.active .kp-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.kp-card:hover .kp-overlay {
    transform: translateY(0);
}

.kp-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.kp-overlay p {
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--kp-accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all .4s ease;
}

.btn1:hover {
    transform: scale(1.05);
    background: var(--kp-primary);
}

.kp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 20;
    transition: all .4s ease;
}

.kp-prev {
    left: -60px;
}

.kp-next {
    right: -60px;
}

.kp-nav:hover {
    background: var(--kp-accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.kp-card:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.kp-card.active:hover {
    transform: translateX(0) scale(1.25) rotateY(5deg);
}

.kp-card.left:hover {
    transform: translateX(-260px) scale(1) rotateY(10deg);
}

.kp-card.right:hover {
    transform: translateX(260px) scale(1) rotateY(-10deg);
}

.kp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: all .6s ease;
}

.kp-card:hover::before {
    opacity: 1;
}

.kp-slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2), transparent);
    filter: blur(20px);
}

@media(max-width:1200px) {
    .kp-card {
        width: 220px;
        height: 360px;
    }
}

@media(max-width:900px) {

    .kp-card:nth-child(1),
    .kp-card:nth-child(5) {
        display: none;
    }
}

@media(max-width:600px) {
    .kp-card {
        width: 180px;
        height: 300px;
    }

    .kp-nav {
        display: none;
    }
}

.kp-card {
    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1),
        box-shadow .6s ease,
        opacity .6s ease;
}

.kp-overlay {
    transition:
        transform .6s cubic-bezier(.22, 1, .36, 1),
        opacity .4s ease;
}

.kp-card img {
    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1),
        filter .6s ease;
}

.kp-card:hover img {
    filter: brightness(1.1);
}

.kp-card.active img {
    filter: brightness(1.15);
}

.kp-card:not(.active) {
    filter: blur(1px);
}

.kp-card.active {
    filter: none;
}

.kp-slider {
    transition: all .8s ease;
}

.kp-card {
    backface-visibility: hidden;
}

.kp-card-inner {
    transform-style: preserve-3d;
}

.kp-overlay {
    backdrop-filter: blur(5px);
}

.kp-card {
    will-change: transform;
}

.kp-card:hover {
    will-change: transform;
}

.kp-slider {
    will-change: transform;
}

.kp-card {
    outline: none;
}

.kp-card:focus {
    outline: none;
}

.kp-nav {
    outline: none;
}

.kp-nav:focus {
    outline: none;
}

.kp-card.active {
    animation: kpPop .6s ease;
}

@keyframes kpPop {
    0% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1.2);
    }
}

.kp-card {
    transform-origin: center center;
}

.kp-overlay {
    opacity: 1;
}

.kp-card:hover .kp-overlay {
    opacity: 1;
}

.kp-card {
    mix-blend-mode: normal;
}

.kp-card.active {
    mix-blend-mode: normal;
}

.kp-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kp-card.active {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.p-desc01 {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.p-list01 {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.p-list01 li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #333;
}

.p-list01 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #002E56;
    border-radius: 50%;
}

.p-list01 span {
    font-weight: 600;
    color: #000;
}

.p-showcase01 {
    padding: 50px 5%;
    background: #ffffff;
}

.p-showcase01__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 50px;
    width: 85vw;
    margin: 25px auto;
}

.p-showcase01__row.reverse {
    flex-direction: row-reverse;
}

.p-showcase01__content {
    width: 50%;
}

.p-showcase01__content h2 {
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--color-2);
}

.p-showcase01__content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
}

.p-btn01 {
    display: inline-block;
    padding: 12px 25px;
    background: #002E56;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.p-btn01:hover {
    background: #004a8f;
}

.p-showcase01__grid {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.p-card01 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.p-card01 img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: 0.5s;
}

.p-card01__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;

    transform: translateY(100%);
    transition: 0.4s;
}

.p-card01:hover img {
    transform: scale(1.1);
}

.p-card01:hover .p-card01__overlay {
    transform: translateY(0);
}

.p-contact01 {
    padding: 100px 5%;
    background: #2F3C8F;
    color: #fff;
}

.p-contact01__wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.p-contact01__info {
    width: 45%;
    animation: fadeUp01 0.8s ease;
}

.p-contact01__info h2 {
    font-size: 32px;
    margin-bottom: 15px;


}

.p-contact01__info p {
    margin-bottom: 25px;
    opacity: 0.85;
}

.p-contact01__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.p-contact01__map iframe {
    width: 100%;
    height: 200px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
}

.p-contact01__form {
    width: 55%;
    animation: fadeUp01 1s ease;
}

.p-contact01__form h2 {
    font-size: 32px;
    margin-bottom: 15px;
}


.p-contact01__form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.p-contact01__form input,
.p-contact01__form textarea {
    padding: 14px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.p-contact01__form textarea {
    min-height: 120px;
    resize: none;
}

.p-contact01__form button {
    padding: 14px;
    border: none;
    background: #ffffff;
    color: #2F3C8F;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.p-contact01__form button:hover {
    background: #ddd;
}

@keyframes fadeUp01 {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-contact01 {
    background-color: var(--color-2);
    color: var(--color-3);
    padding: 80px 20px;
}

.p-contact01__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.p-contact01__info {
    flex: 1 1 400px;
}

.p-contact01__info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.p-contact01__info p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.p-contact01__item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 15px;
}

.p-contact01__item i {
    font-size: 20px;
    color: var(--color-1);
}

.p-contact01__map {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.p-contact01__form {
    flex: 1 1 400px;
}

.p-contact01__form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-contact01__form-group {
    position: relative;
}

.p-contact01__form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 14px;
    color: var(--color-3);
    pointer-events: none;
    transition: 0.3s ease all;
    background-color: var(--color-2);
    padding: 0 5px;
}

.p-contact01__form-group input,
.p-contact01__form-group textarea {
    width: 100%;
    padding: 15px;
    padding-left: 15px;
    border: 1px solid var(--color-3);
    border-radius: 6px;
    background-color: transparent;
    color: var(--color-3);
    font-size: 16px;
    outline: none;
    transition: 0.3s ease all;
}

.p-contact01__form-group input:focus,
.p-contact01__form-group textarea:focus {
    border-color: var(--color-1);
}

.p-contact01__form-group input:focus+label,
.p-contact01__form-group input:not(:placeholder-shown)+label,
.p-contact01__form-group textarea:focus+label,
.p-contact01__form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--color-1);
}

.p-contact01__submit {
    padding: 15px;
    background-color: var(--color-1);
    color: var(--color-3);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease all;
}

.p-contact01__submit:hover {
    background-color: var(--color-4);
}

@media (max-width: 900px) {
    .p-contact01__wrapper {
        flex-direction: column;
    }
    .p-contact01__info,.p-contact01__form{
        width: 100%;
    }
    .p-showcase01__row,.reverse{
        display: flex;
        flex-direction: column-reverse;
    }
    .p-showcase01__row.reverse{
        display: flex;
        flex-direction: column-reverse;
    }
    .p-showcase01__content,.p-showcase01__grid{
        width: 100%;
    }
}
.brands-section {
  background: #f9fafb;
  padding: 40px 0;
  overflow: hidden;
}

.brands-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  width: calc(16 * 200px);
  animation: scrollBrands 20s linear infinite;
}

.brands-track a {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.brands-track img {
  max-height: 100px;
  object-fit: contain;
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.p-subscribe01 {
    background-color: var(--color-3);
    color: var(--color-2);
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    text-align: center;
}

.p-subscribe01__wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.p-subscribe01 h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.p-subscribe01 p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.p-subscribe01__form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.p-subscribe01__form input[type="email"] {
    flex: 1 1 250px;
    padding: 15px;
    border: 1px solid var(--color-2);
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease all;
}

.p-subscribe01__form input[type="email"]:focus {
    border-color: var(--color-1);
}

.p-subscribe01__form button {
    padding: 15px 25px;
    background-color: var(--color-1);
    color: var(--color-3);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease all;
}

.p-subscribe01__form button:hover {
    background-color: var(--color-4);
}

@media (max-width: 500px) {
    .p-subscribe01__form {
        flex-direction: column;
        gap: 10px; 
    }

   
        .p-subscribe01__form input[type="email"] {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
        display: block;
        height: max-content;
        flex: 0;
    }
}

