/* SF Pro Text */

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SFProText-Regular.woff2") format("woff2"),
        url("../fonts/SFProText-Regular.woff") format("woff"),
        url("../fonts/SFProText-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SFProText-Bold.woff2") format("woff2"),
        url("../fonts/SFProText-Bold.woff") format("woff"),
        url("../fonts/SFProText-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SFProText-Heavy.woff2") format("woff2"),
        url("../fonts/SFProText-Heavy.woff") format("woff"),
        url("../fonts/SFProText-Heavy.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SFProText-Light.woff2") format("woff2"),
        url("../fonts/SFProText-Light.woff") format("woff"),
        url("../fonts/SFProText-Light.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SFProText-Medium.woff2") format("woff2"),
        url("../fonts/SFProText-Medium.woff") format("woff"),
        url("../fonts/SFProText-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SFProText-Semibold.woff2") format("woff2"),
        url("../fonts/SFProText-Semibold.woff") format("woff"),
        url("../fonts/SFProText-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
:root {
    --themeColor: #ee5507;
    --themeLighColor: rgba(255, 232, 220, 0.5);
    --themeGray: #f4f4f4;
    --themeColor2: #ffeee5;
    --themeTextColor: #1b1818;
}
/* Reseting Style */
.text-theme {
    color: var(--themeColor);
}
.bg-theme {
    background-color: var(--themeColor);
}
.theme-darktxt {
    color: var(--themeTextColor);
}

body {
    font-family: "SF Pro Text";
    font-weight: normal;
    color: #4a4a4c;
    font-size: 16px;
    line-height: 1.3;
}
label {
    margin-bottom: 0.5rem;
    color: var(--themeTextColor);
    font-weight: 500;
}
.form-control,
.form-select {
    border-color: #e8e8e8;
    color: var(--themeTextColor);
}
.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--themeColor);
}
.form-control::placeholder,
.form-select::placeholder {
    color: var(--themeGray);
}
.btn {
    border-radius: 8px;
}
.btn-theme {
    background-color: var(--themeColor);
    color: #ffffff; /* White text */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-theme:hover {
    background-color: #d14b07;
    color: #ffffff;
}

.btn-theme:active {
    background-color: var(--themeColor);
    transform: scale(0.98);
}

.btn-theme:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}
.btn-outline-theme {
    background-color: transparent;
    color: var(--themeColor);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--themeColor);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline-theme:hover {
    background-color: var(--themeColor);
    color: #ffffff;
}

.btn-outline-theme:active {
    background-color: #d14b07;
    border-color: #d14b07;
    transform: scale(0.98);
}

.btn-outline-theme:disabled {
    background-color: transparent;
    color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}

.auth-box {
    background: #ffffff;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
}
.payment-tabs {
    background-color: var(--themeGray);
}
.payment-tabs .nav-link {
    color: #313133;
}
.payment-tabs .nav-link.active {
    background-color: var(--themeColor);
}
/* Navbar zship */
.navbar-zship {
    background-color: #ffffff;
    background: #ffffff;
    box-shadow: 0px 0px 12px rgba(58, 58, 58, 0.15);
}
.navbar-zship .nav-link {
    font-weight: 700;
    color: #5d5959;
}
.navbar-zship .nav-link.active {
    color: var(--themeColor);
}
/* home Header */
header {
    padding-top: 6rem;
}
.badge-zship {
    background-color: var(--themeLighColor);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--themeColor);
    font-weight: 600;
}
.header-content-box h1 {
    letter-spacing: -0.078px;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--themeTextColor);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.header-content-box p {
    font-size: 28px;
    line-height: 1.4;
    color: #4a4a4c;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    from {
        transform: translate(0, 0px);
    }
    65% {
        transform: translate(0, 15px);
    }
    to {
        transform: translate(0, -0px);
    }
}
.title {
    letter-spacing: -0.078px;
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--themeTextColor);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.subtitle {
    font-size: 28px;
    line-height: 1.4;
    color: #4a4a4c;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.how-card {
    display: flex;
    gap: 1rem;
    background: #ffffff;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.how-card h4 {
    color: var(--themeTextColor);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
}
.how-card p {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 0;
}
.why-card {
    background: #ffffff;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem 1rem;
}
.join-card {
    background-color: var(--themeLighColor);
}
/* Media queries */
@media (max-width: 767px) {
    header {
        padding-top: 4rem;
    }
    .header-content-box h1,
    .title {
        font-size: 1.5rem;
    }
    .header-content-box p,
    .subtitle {
        font-size: 1rem;
    }
}
.feature-item-container {
    position: relative;
}
.feature-item {
    text-align: center;
    position: relative;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    background: var(--themeLighColor);
    box-shadow: 0px 4px 10px rgba(236, 236, 236, 0.8);
}

.feature-icon::after {
    content: attr(data-number);
    position: absolute;
    top: 10px;
    right: -5px;
    background: var(--themeColor);
    color: white;
    border: 2px solid #ffffff;
    font-size: 14px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}
.feature-item h5 {
    color: var(--themeTextColor);
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}
.feature-item p {
    font-size: 14px;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}
.effort-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}
.effort-card .vline {
    position: absolute;
    left: -7px;
    top: 20px;
    width: 7px;
    height: 50%;
    border-radius: 5px 0 0 5px;
    background-color: var(--themeColor);
}
.effort-card .effort-icon {
    width: 55px;
    height: 55px;
    background: var(--themeLighColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.effort-card h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 40px;
    color: var(--themeTextColor);
}
.effort-card p {
    margin-bottom: 0;
}
.slide-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
}
.slide-item h5 {
    color: var(--themeTextColor);
    font-size: 24px;
    font-weight: 600;
}
.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.owl-nav button {
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    border-radius: 50% !important;
    color: var(--themeColor) !important;
    border: 1px solid var(--themeColor) !important;
    position: absolute;
}
.owl-nav button:hover {
    background-color: var(--themeColor) !important;
    color: #ffffff !important;
}
.owl-nav button.owl-next {
    right: -60px;
}
.owl-nav button.owl-prev {
    left: -60px;
}
.team-card {
    background: #ffffff;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 15px 15px;
    padding: 1rem;
}
.team-card .image-box {
    height: 200px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.team-card .image-box img {
    width: 100%;
    height: 100%;
}
.testimonial-item {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 15px;
}

.select2-container--default.select2-container--focus
    .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    border: solid #e8e8e8 1px !important;
}
