* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif !important;

}

.container {
    max-width: 1450px;
    margin: auto;
    padding: 0px 15px !important;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1600px !important;
    }
}

@media (min-width: 1251px) and (max-width: 1500px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1001px) and (max-width: 1250px) {
    .container {
        max-width: 980px !important;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .container {
        margin: 0px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

body {
    width: 100vw;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary: #3fada2;
    --secondary: #3b6aac;
    --text-dark: #222;
    --text-light: #666;
    --border-light: #f1f1f1;
}

a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

button {
    cursor: pointer;
}

a:hover {
    color: inherit;
}

img {
    width: 100%;
    max-width: 100%;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 17px;
    font-weight: 400;
}

p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #111;
}

h1 {
    font-size: 42px;
    letter-spacing: 0.3px;
}

h2 {
    font-size: 40px;
    letter-spacing: 0.3px;
}

h3 {
    font-size: 30px;
    letter-spacing: 0.3px;
}

h4 {
    font-size: 20px;
    letter-spacing: 0.3px;
}

h5 {
    font-size: 19px;
    letter-spacing: 0.3px;
}

.form-control,
.form-control:focus,
.form-control:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: black;
    opacity: 1;
}

.bg-black {
    background-color: black;
}

.m-15 {
    margin: 15px 0;
}

.pt-20 {
    padding-top: 20px;
}

.m-60 {
    margin: 60px 0;
}

.mt-3 {
    margin-top: 30px;
}

.mb-3 {
    margin-bottom: 30px;
}

.margin-main {
    margin: 80px 0;
}

.padding-main {
    padding: 60px 0;
}

.d-flex {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.align-center {
    align-items: center !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.space-between {
    justify-content: space-between !important;
}

.text-right {
    text-align: right;
}

.row {
    display: flex;
    flex-flow: row wrap;
}

.w-100 {
    width: 100% !important;
}

.col-md,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
    width: 100%;
    min-height: 1px;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .col-md {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-md-2 {
        flex: 0 0 16.666%;
        max-width: 16.666%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-md-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-md-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        width: 83.333%;
        max-width: 83.333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-xl-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-xl-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}


@media (min-width: 1300px) and (max-width: 1500px) {
    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-xxl-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-xxl-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}


/* Responsive Breakpoints */
@media (max-width: 768px) {
    .flex-reverse {
        flex-direction: column-reverse !important;
    }

    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 5px;
        padding-right: 5px;
    }

    .padding-main {
        padding: 20px 0;
    }

    .p--0 {
        padding: 0 !important;
    }
}


.btn-main {
    padding: 12px 25px;
    font-weight: 400;
    font-size: 14px;
    border-radius: 4px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    white-space: nowrap;
    border: none;
}

.btn-one {
    color: rgb(255, 255, 255);
    background: var(--primary);
}

.btn-one:hover {
    transform: translateY(-1px);
    color: var(--primary);
    background-color: white;
    border: solid 1px var(--primary);
}

.btn-one:hover::before {
    transform: translate(0, 0);
}

.btn-one:hover::after {
    transform: translate(0, 0);
}

.btn-one:hover i {
    transform: translateX(3px);
    color: white;
}

@media (max-width: 768px) {
    .btn-main {
        padding: 10px 18px;
    }
}


.btn-two {

    background: var(--secondary);
    color: #fff;
}

.btn-two:hover {
    background: white;
    color: var(--secondary);
    border: solid 1px var(--secondary);
}


/* CSS THEME */

.main-header {
    position: sticky;
    padding: 10px 0px;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .logo img {
    height: 60px;
    object-fit: contain;
}

.main-header .nav-menu {
    display: flex;
    gap: 28px;
}

.main-header .nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.main-header .nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary);
    transition: 0.3s;
}

.main-header .nav-menu a:hover {
    color: var(--primary);
}

.main-header .nav-menu a:hover::after {
    width: 100%;
}

.main-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-header .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.main-header .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    display: block;
    transition: 0.3s;
}

.main-header .mobile-sidebar,
.main-header .mobile-sidebar-backdrop {
    display: none;
}

@media (max-width: 992px) {
    .main-header .logo img {
        height: 50px;
    }


    .main-header .nav-menu {
        display: none;
    }


    .main-header .nav-menu.active {
        display: none;
    }

    .main-header .header-actions {
        display: none;
    }

    .main-header .menu-toggle {
        display: flex;
    }

    .main-header .mobile-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1100;
    }

    .main-header .mobile-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: fixed;
        top: 0;
        right: 0;
        width: min(85vw, 360px);
        height: 100vh;
        background: #fff;
        padding: 18px;
        border-left: 1px solid var(--border-light);
        box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1200;
    }

    .main-header .mobile-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--border-light);
    }

    .main-header .mobile-sidebar-close {
        border: none;
        background: transparent;
        color: var(--text-dark);
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
    }

    .main-header .mobile-sidebar-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .main-header .mobile-sidebar-nav a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .main-header .mobile-sidebar-actions {
        display: grid;
        gap: 10px;
        text-align: center;
    }

    body.mobile-sidebar-open .main-header .mobile-sidebar {
        transform: translateX(0);
    }

    body.mobile-sidebar-open .main-header .mobile-sidebar-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.mobile-sidebar-open {
        overflow: hidden;
    }
}


/* BANNER */

.hero {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    background: #fff;
}

/* .hero .hero-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    opacity: 0.15;
    top: -100px;
    right: -100px;
    filter: blur(80px);
} */

.hero .hero-container {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero .hero-content {
    flex: 1;
}

.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 6px 12px;
    background: rgba(63, 173, 162, 0.1);
    border-radius: 20px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero .hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.hero .hero-buttons {
    display: flex;
    gap: 14px;
}

.hero .hero-visual {
    flex: 1;
    position: relative;
}
.hero .hero-visual img{
    border-radius: 15px;
}
.hero .visual-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    width: 280px;
    margin: auto;
}

.hero .card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hero .avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
}

.hero .line {
    height: 8px;
    background: #eee;
    border-radius: 4px;
}

.hero .line.name {
    width: 100px;
    margin-bottom: 6px;
}

.hero .line.small {
    width: 60px;
}

.hero .qr-box {
    width: 100%;
    height: 120px;
    background: repeating-linear-gradient(45deg,
            #eee,
            #eee 5px,
            #ddd 5px,
            #ddd 10px);
    border-radius: 10px;
    margin: 15px 0;
}

.hero .card-actions {
    display: flex;
    gap: 10px;
}

.hero .action {
    flex: 1;
    height: 30px;
    background: #eee;
    border-radius: 6px;
}

.hero .action.active {
    background: var(--primary);
}

.hero .floating-card {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 13px;
}

.hero .floating-card strong {
    display: block;
    color: #111;
}

.hero .floating-card span {
    color: #666;
    font-size: 12px;
}

.hero .floating-card.one {
    top: 20px;
    left: -20px;
}

.hero .floating-card.two {
    bottom: 20px;
    right: -20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .hero .hero-container {
        flex-direction: column;
        /* text-align: center; */
        gap:20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        margin: 0 auto 25px;
        font-size: 14px;
    }

    

    .hero .floating-card.one {
        left: 0;
    }

    .hero .floating-card.two {
        right: 0;
    }
}

@media (max-width: 576px) {

    .hero {
        padding: 40px 0px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .visual-card {
        width: 100%;
        max-width: 260px;
    }
}


/* FEATURES */

.features {
    padding: 100px 20px;
    background: #fafafa;
    position: relative;
}



.features .features-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.features .section-header {
    text-align: center;

}

.features .section-header h2 {
    font-size: 36px;
    color: #111;
    margin-bottom: 15px;
}

.features .section-header p {
    color: #666;
    font-size: 15px;
}

/* Grid */
.features .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Card */
.features .feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    transition: 0.3s ease;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

/* hover gradient border effect */
.features .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s;
}

.features .feature-card:hover::before {
    opacity: 1;
}

.features .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.features .icon-box {
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(63, 173, 162, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.features .icon-box img {
    width: 22px;
    height: 22px;
}
.features .icon-box svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

/* Text */
.features .feature-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #111;
    margin-bottom: 0px;
}

.features .feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features .section-header{
        text-align: left;
    }

    .features .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .features {
        padding: 20px 0;
    }

    .features .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features .feature-card {
        padding: 12px;
    }

    .features .section-header h2 {
        font-size: 22px;
    }

    .features .section-header p {
        font-size: 14px;
    }

    .features .icon-box {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .features .icon-box svg {
        width: 15px;
        height: 15px;
    }


}


/* HOW IT WORKS */

.how-it-works {
    padding: 100px 20px;
    background: #3fada214;
    position: relative;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.how-it-works .section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #111;
}

.how-it-works .section-header p {
    color: #666;
}

.how-it-works .steps-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.how-it-works .progress-line {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.how-it-works .step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.how-it-works .step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: bold;
    font-size: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(63, 173, 162, 0.3);
}

.how-it-works .step-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}

.how-it-works .step:hover .step-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.how-it-works .step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

.how-it-works .step-card p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 992px) {

    .how-it-works .steps-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .how-it-works .progress-line {
        display: none;
    }

    .how-it-works .step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }

    .how-it-works .step-circle {
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 16px;
        position: absolute;
        right: 15px;
        top: -22px;
        z-index: 9;
    }

    .how-it-works .step-card {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .how-it-works {
        padding: 20px 0;
    }

    .how-it-works .section-header h2 {
        font-size: 22px;
    }

    .how-it-works .step-card {
        padding: 20px 15px;
    }
}


/* CTA */

.cta-section {
    position: relative;
    padding: 30px 0px;
    overflow: hidden;
    background: #fff;
}




.cta-section .cta-box {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    cursor: pointer;
}



.cta-section .cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111;
}

.cta-section .cta-box p {
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-section .cta-primary {
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: 0.3s;
}

.cta-section .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(63, 173, 162, 0.3);
}

.cta-section .cta-secondary {
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: 0.3s;
}

.cta-section .cta-secondary:hover {
    background: var(--primary);
    color: #fff;
}

/* SELLER FORM */
.seller-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.seller-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.seller-section-header h2 {
    font-size: 34px;
    color: #111;
    margin-bottom: 12px;
}

.seller-section-header p {
    color: #666;
    font-size: 15px;
}

.seller-form-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.seller-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seller-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 0px;
}

.seller-form-group input,
.seller-form-group textarea {
    width: 100%;
    border: 1px solid #dce5ed;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #111;
    background: #fff;
}

.seller-form-group input:focus,
.seller-form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(63, 173, 162, 0.15);
}

.seller-form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.seller-form-group-full {
    grid-column: 1 / -1;
}

.seller-form-submit {
    margin-top: 4px;
}

@media (max-width: 768px) {
    .seller-section {
        padding: 30px 0;
    }

    .seller-section-header h2 {
        font-size: 24px;
    }

    .seller-form-grid {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 14px;
    }
    .seller-form-group label{
        font-size: 14px;
        font-weight: 500;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .cta-section .cta-box {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
    }

    .cta-section .cta-box h2 {
        font-size: 28px;
    }
    .cta-section .cta-actions{
        width: 100%;
    }



    .cta-section .cta-primary,
    .cta-section .cta-secondary {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

@media (max-width: 576px) {

    .cta-section {
        padding: 30px 0;
    }

    .cta-section .cta-box h2 {
        font-size: 24px;
    }
}


/* FOOTER */

.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 70px;
}

.main-footer .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.main-footer .footer-brand img {
    height: 50px;
    margin-bottom: 15px;
    width: auto;
}

.main-footer .footer-brand p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
}

.main-footer .footer-links-group h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
}

.main-footer .footer-links-group a {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.main-footer .footer-links-group a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.main-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #64748b;
}

.main-footer .footer-bottom p {
    color: white;
}

@media (max-width: 992px) {
    .main-footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {

    .main-footer .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .main-footer .footer-brand img{
        height: 38px;
    }

    .main-footer .footer-brand p {
        max-width: 100%;
    }

    .main-footer .footer-bottom {
        font-size: 12px;
    }
}



/* MISSION */

.etisalme-block {
    background-color: white;
    padding: 50px 0px;
}

/* LABEL */
.etisalme-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

/* TITLE */
.etisalme-title {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 25px;
}

/* POINTS */
.etisalme-points {
    margin-bottom: 25px;
}

.etisalme-point {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.etisalme-point p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

/* ICON */
.etisalme-icon {
    width: 38px;
    height: 38px;
    background: rgba(63, 173, 162, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    flex-shrink: 0;
}
.etisalme-icon svg{
    height: 24px;
    width: 24px;
}
/* HIGHLIGHT */
.etisalme-highlight {
    background: #f8fbfb;
    border-left: 4px solid var(--primary);
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.etisalme-highlight p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

/* TAGLINE */
.etisalme-tagline {
    font-weight: 600;
    color: var(--secondary);
}

/* IMAGE */
.etisalme-image img {
    width: 100%;
    border-radius: 16px;
}

/* BOTTOM */
.etisalme-bottom {
    margin-top: 80px;
}

/* SUBTITLE */
.etisalme-subtitle {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.etisalme-text {
    color: var(--text-light);
    font-size: 14px;
}

/* FEATURES */
.etisalme-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.etisalme-feature {
    border: 1px solid var(--border-light);
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s;
}

.etisalme-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.etisalme-feature h6 {
    margin: 8px 0 5px;
    font-size: 14px;
}

.etisalme-feature p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* FINAL */
.etisalme-final {
    margin-top: 40px;
    text-align: center;
}

.etisalme-final strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.etisalme-final p {
    font-size: 14px;
    color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .etisalme-title,
    .etisalme-subtitle {
        font-size: 22px;
    }

    .etisalme-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .etisalme-feature {
        padding: 12px;
    }
    .etisalme-block{
        padding: 20px 0px 0px 0px;
    }
    .etisalme-bottom{
        margin-top: 40px;
    }
}




/* FAQ */

/* ===== FAQ SECTION ===== */

.etisalme-faq {
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
}

/* Header */
.etisalme-faq-header h2 {
    font-size: 34px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.etisalme-faq-header p {
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ LIST */
.etisalme-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

/* ITEM */
.etisalme-faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}

/* QUESTION */
.etisalme-faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.etisalme-faq-icon {
    color: var(--primary);
    font-size: 20px;
    transition: 0.3s;
}

/* ANSWER */
.etisalme-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

/* ACTIVE STATE */
.etisalme-faq-item.active .etisalme-faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.etisalme-faq-item.active .etisalme-faq-icon {
    transform: rotate(45deg);
}

/* HOVER */
.etisalme-faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .etisalme-faq-header h2 {
        font-size: 26px;
    }

    .etisalme-faq {
        padding: 20px 0px;
    }
}






/* how to activate */

.how-to-activate .col-md-3{
    padding: 0px 7px ;
}
.how-to-activate .activate-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.how-to-activate .activate-main-para {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.how-to-activate .activate-card {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    padding: 0;
    transition: 0.3s ease;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%);
}

.how-to-activate .activate-card:hover {
    border-color: #d4d4d4;
    transform: translateY(-3px);
}

.how-to-activate .activate-card-image {
    overflow: hidden;
    aspect-ratio: 7/5;
    margin-bottom: 20px;
    border-radius: 12px ;
}

.how-to-activate .activate-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-to-activate .activate-card-content {
    text-align: left;
    /* padding: 10px 10px 20px 10px; */
}

.how-to-activate .activate-step-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.how-to-activate .activate-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
}

.how-to-activate .activate-card-para {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 0;
}

@media (max-width: 767px) {

    .how-to-activate .activate-main-title {
        font-size: 30px;
    }
    .how-to-activate .col-md-3{
    padding: 0px 15px ;
}

}





.page-breadcrumb {
    padding: 20px 0;
    background: #f8fbfd;
    border-bottom: 1px solid #e8eff5;
}

.page-breadcrumb h1 {
    margin-bottom: 10px;
    font-size: 25px;
    color: #111111;
}

.page-breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
}

.page-breadcrumb nav a {
    color: var(--primary);
    font-size: 14px;
}

@media (max-width: 767px) {
    .page-breadcrumb {
        padding: 15px 0;
    }

    .page-breadcrumb h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .page-breadcrumb .container{
        display: flex;
        justify-content: space-between;
    }
}

.legal-page-section {
    padding: 40px 0;
    background: #ffffff;
}


.legal-page-wrapper h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #111111;
}

.legal-page-wrapper h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #111111;
}

.legal-page-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    margin: 20px 0 10px;
    color: #111111;
}

.legal-page-wrapper h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin: 24px 0 12px;
    color: #111111;
}

.legal-page-wrapper p,
.legal-page-wrapper li {
    font-size: 17px;
    line-height: 1.85;
    font-weight: 400;
    color: #555555;
}

.legal-page-wrapper p {
    margin-bottom: 16px;
}

.legal-page-wrapper ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.legal-page-wrapper li {
    margin-bottom: 8px;
}

.legal-page-wrapper .last-updated {
    font-size: 15px !important;
    font-weight: 500;
    color: #777777 !important;
    margin-bottom: 20px;
}

.legal-page-block {
    margin-bottom: 34px;
}

@media (max-width: 991px) {
    .legal-page-section {
        padding: 56px 0;
    }

    .legal-page-wrapper h1 {
        font-size: 34px;
    }

    .legal-page-wrapper h2 {
        font-size: 28px;
    }

    .legal-page-wrapper h3 {
        font-size: 23px;
        margin-top: 30px;
    }

    .legal-page-wrapper h4 {
        font-size: 19px;
    }

    .legal-page-wrapper p,
    .legal-page-wrapper li {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (max-width: 767px) {
    .legal-page-section {
        padding: 40px 0;
    }

    .legal-page-wrapper h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .legal-page-wrapper h2 {
        font-size: 23px;
    }

    .legal-page-wrapper h3 {
        font-size: 20px;
        margin: 24px 0 12px;
    }

    .legal-page-wrapper h4 {
        font-size: 17px;
        margin: 18px 0 10px;
    }

    .legal-page-wrapper p,
    .legal-page-wrapper li {
        font-size: 15px;
        line-height: 1.75;
    }

    .legal-page-wrapper ul {
        padding-left: 18px;
    }

    .legal-page-wrapper .last-updated {
        font-size: 14px !important;
    }

    .legal-page-block {
        margin-bottom: 26px;
    }
}
