/* @import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@200..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Stack+Sans+Headline:wght@200..700&display=swap');

@font-face {
    font-family: "Bethany Elingston";
    src: url("../fonts/Bethany-Elingston/Bethany-Elingston.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-05s: all ease-in-out 0.5s;

    --font-bethany-elingston: "Bethany Elingston", sans-serif;
    --font-instrument-sans: "Instrument Sans", sans-serif;

    --main-color: #FF7033;
    /* rgb(0, 174, 239, 1); */
    --second-color: 255, 203, 5;
    /* rgba(255, 203, 5, 1) */
    --black-color: #000;
    /* rgb(0, 0, 0); */
    --white-color: #fff;
    /* rgb(255, 255, 255); */

    --orange: #e84c1e;
    --dark: #1a1a1a;
    --mid: #555555;
    --border: #dddddd;
    --circle-size: 130px;

}

body {
    font-family: "Stack Sans Headline", sans-serif;
    overflow-x: hidden;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

/* .row {
    gap: 24px 0px;
} */

.expVideo-main-box .row,
.shareExp-main-box .row,
.shareExp-form .row,
.faq-section .row,
.pighWork-lwr .row,
.pigh-section .row,
.ourMission-main-box .row,
.footer-main .row {
    gap: 24px 0px;
}

/*<======================= Common Css ===============>*/
.common-section {
    padding: 60px 0px;
}

.common-head h3 {
    font-family: var(--font-bethany-elingston);
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: #2A2A2A;
    margin-bottom: 20px;
}

.common-head p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #353535;
    margin-bottom: 20px;
}

.common-btn {
    background: var(--main-color);
    padding: 13px 30px;
    border-radius: 88px;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    border: 1px solid transparent;
    color: #FFFFFF;
    transition: all ease-in-out 0.5s;
    transform: scale(1);
    display: inline-block;
}

.common-btn:hover {
    background: #fff;
    color: var(--main-color);
    transform: scale(1.1);
    border: 1px solid #FF7033;
}





/************************************ Header Section **************************************/
.header-section {
    width: 100%;
    height: max-content;
    position: absolute;
    top: 0px;
    z-index: 10;
    background: transparent;
    /* border-bottom: 1px solid rgba(54, 54, 54, 0.3); */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 15px 0px;
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75); */
}

.navbar.header-fixed {
    position: fixed;
    background: var(--main-color);
    /* background: rgba(0, 0, 0, 0.85); */
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.95);
    /* background: rgba(14, 13, 14, 0.8); */
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



.navbar-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.navbar-brand {
    width: 360px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.navbar-nav .nav-item>a {
    font-weight: 300;
    font-size: 18px;
    color: #2A2A2A;
    text-transform: capitalize;
}

.navbar-nav .nav-item>a:hover,
.navbar-nav .nav-item .active {
    color: var(--main-color);
}

.navbar-toggler-icon {
    filter: invert(0);
    border-color: #fff;
}

.header-bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--white-color);
    box-shadow: 4px 24px 180px rgba(0, 0, 0, 0.59);
    padding: 20px;
    border-radius: 20px;
}

.navbar-nav .common-btn {
    color: var(--white-color) !important;
}

.header-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-icon {
    position: relative;
}

.cart-icon span {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
    font-size: 13px;
}

.user-icon i,
.cart-icon i {
    font-size: 26px;
    color: #1f1f1f;
    display: inline-block;
}

/* Custom Arrow */
.language-select-box::after {
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
    font-size: 14px;
}

/* Optional: Gradient border on focus */
.language-select:focus {
    border: 1px solid #d9d9d9;
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(45deg, #ff8000, #ffb347);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: none !important;
}





/******************************************* Banner Section ***********************************/
.banner-section {
    position: relative;
    min-height: 780px;
    height: 100%;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    overflow: hidden;
}

.banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0.18) 50%);
    width: 100%;
    height: 100%;
    display: block;
}

.bnr-wristband {
    max-width: 175px;
    position: absolute;
    bottom: 50px;
    right: 150px;
    background: #FFF1EB;
    border-radius: 20px;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 20px 20px 20px 20px;
    z-index: 1;
}

.bnr-wristband h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
}

.bnr-wristband-img {
    min-width: 240px;
    height: 85px;
    margin-left: -100px;
}

.bnr-wristband-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnr-wristband p {
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 0;
    color: #2A2A2A;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bnr-wristband p>span {
    color: var(--main-color);
    font-size: 28px;
    line-height: 24px;
    font-weight: 600;
}

.bnr-img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.bnr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inr-banner-section {
    position: relative;
    min-height: 600px;
    height: 100%;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    overflow: hidden;
}

.inr-banner-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.inr-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inr-banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0.18) 50%);
    width: 100%;
    height: 100%;
    display: block;
}

.banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 780px;
    position: relative;
    z-index: 1;
}

.inr-banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.banner-box h1 {
    font-family: var(--font-bethany-elingston);
    font-size: 84px;
    font-weight: 400;
    line-height: 98px;
    color: var(--white-color);
}

.inr-banner-box h1 {
    font-family: var(--font-bethany-elingston);
    font-size: 64px;
    font-weight: 400;
    line-height: 78px;
    color: var(--white-color);
}

.banner-box p {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: var(--white-color);
    width: 70%;
}

.banner-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bnr-btn {
    padding: 13px 30px;
    display: inline-block;
    border-radius: 88px;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    transition: all ease-in-out 0.5s;
    transform: scale(1);
}

.bnr-btn:hover {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid transparent;
    transform: scale(1.1);
}

/****************************** Stories Section ****************************/
.stories-section {
    position: relative;
}

.stories-section .common-head {
    text-align: center;
}

.stories-main-box {
    margin-top: 40px;
}

.stories-item-box {
    border-radius: 20px;
    border: 1px solid #D4D4D4;
    background: #F5F5F5;
    padding: 20px;
    box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.23);
    margin-bottom: 20px;
}

.stories-item-box h6 {
    margin-top: 14px;
    color: #6C6C6C;
    font-size: 14px;
    font-weight: 400;
}

.stories-item-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stories-item-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border: 1px solid #D4D4D4;
    border-radius: 40px;
    background: #f4f4f4;
}

.stories-item-list li i {
    color: var(--main-color);
}

.stories-item-list li {
    color: #6C6C6C;
    font-size: 14px;
}

.stories-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.stories-text i {
    color: #d1d1d1;
    font-size: 30px;
}

.stories-text p {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    color: #353535;
}

/****************************** Our Mission Section ****************************/
.ourMission-main-box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 30px;
    overflow: hidden;
    padding: 80px;
}

.ourMission-content .common-head {
    width: 80%;
}

.ourMission-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ourMission-grid-item {
    padding: 40px;
    background: #FFFFFF;
    border-radius: 24px;
}

.ourMission-grid-item-img {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FFEDD4;
    border: 1px solid rgba(245, 73, 0, 0.161);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ourMission-grid-item-img img {
    object-fit: contain;
}

.ourMission-grid-item h5 {
    font-size: 24px;
    line-height: 20px;
    color: #2A2A2A;
    font-weight: 400;
    margin-bottom: 20px;
}

.ourMission-grid-item p {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    color: #353535;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*************************************** Why PIGH Section *******************************/
.pigh-img-main {
    height: 100%;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
}

.pigh-img-main img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pigh-content {
    padding-left: 40px;
}

.pigh-content-list li {
    display: flex;
    background: #F3F3F3;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    padding: 20px;
    margin: 20px 0px;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: all ease-in-out 0.5s;
}

.pigh-content-list li:hover {
    border: 1px solid #F54900;
    background: transparent;
}

.pigh-content-list-content {
    padding: 20px 0px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pigh-content-list-content>h3 {
    font-family: var(--font-instrument-sans);
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 0;
    color: var(--main-color);
    text-transform: uppercase;
}

.pigh-content-list-content-text {
    width: 60%;
}

.pigh-content-list-content-text h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 20px;
    color: #2A2A2A;
}

.pigh-content-list-content-text p {
    color: #353535;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.pigh-content-list li img {
    border-radius: 20px;
    overflow: hidden;
    height: 140px;
    object-fit: cover;
}

/****************************** Price Section *************************************/
.price-section .common-head {
    width: 50%;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.price-left-box {
    position: relative;
}

.price-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
}

.price-text h3 {
    font-family: var(--font-bethany-elingston);
    color: var(--main-color);
    font-size: 60px;
    line-height: 59px;
    font-weight: 400;
    margin-bottom: 30px;
}

.price-text p {
    margin-bottom: 0;
    background: var(--main-color);
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    width: 100%;
    margin: auto;
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
}

.price-img {
    width: 100%;
    height: 530px;
    border-radius: 30px;
    overflow: hidden;
}

.price-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-right-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.price-card {
    border: 1px solid #D4D4D4;
    background: #F5F5F5;
    border-radius: 30px;
    overflow: hidden;
    padding: 40px 20px 20px;
    position: relative;
}

.price-card h3 {
    font-family: var(--font-bethany-elingston);
    position: absolute;
    top: 40px;
    right: 20px;
    color: #DEDEDE;
    font-size: 54px;
    line-height: 20px;
    font-weight: 400;
}

.price-card h5 {
    font-size: 24px;
    line-height: 20px;
    color: #2A2A2A;
    font-weight: 500;
}

.price-card p {
    color: #353535;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-card ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li {
    color: #6C6C6C;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-color);
    display: block;
}

.price-card ul li:last-child::after {
    display: none;
}

.price-card h4 {
    margin: 20px 0px;
    color: #2A2A2A;
    font-size: 34px;
    font-weight: 500;
    line-height: 20px;
}

.price-card .common-btn {
    width: 100%;
    text-align: center;
    padding: 8px 0px;
}

.price-card .common-btn:hover {
    transform: scale(1);
}

/****************************** How PIGH Work Section ***************************/
.pighWork-section .common-head {
    text-align: center;
    margin-bottom: 40px;
}

.pighWork-lwr {
    padding: 0px 40px;
    margin-top: 40px;
}

/* ── Circle icon wrapper ── */
.step-circle-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
}

.step-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.step-col:hover .step-circle {
    border: 2px solid #e84c1e;
}

.step-col:hover .step-circle {
    border-color: var(--main-color);
    box-shadow: 0 6px 24px rgba(232, 76, 30, 0.12);
}

.step-circle img {
    width: 95px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.step-col:hover .step-circle img {
    transform: scale(1.08);
}

.step-img {
    display: block;
}

.step-img-hover {
    display: none;
}

.step-col:hover .step-img-hover {
    display: block;
}

.step-col:hover .step-img {
    display: none;
}

/* ── Number badge ── */
.step-badge {
    position: absolute;
    top: 4px;
    left: 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #E0E0E0;
    color: #171616;
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-col:hover .step-badge {
    background: var(--main-color);
    color: #fff;
}

/* ── Step title ── */
.step-title {
    font-size: 28px;
    font-weight: 500;
    color: #2A2A2A;
    margin-bottom: 12px;
}

/* ── Step description ── */
.step-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: #353535;
}

/* ── Arrow connector column ── */
.arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    /* align with circle center */
}

.arrow-col img {
    width: 200px;
    height: auto;
}

/* ── Mobile: rotate arrows downward ── */
@media (max-width: 767px) {
    .arrow-col {
        padding-top: 0;
        padding-bottom: 8px;
        transform: rotate(90deg);
    }

    .step-desc {
        max-width: 300px;
    }
}

/********************************* Explore Videos Section *************************/
.expVideo-section .common-head {
    text-align: center;
    margin-bottom: 40px;
}

.expVideo-item {
    position: relative;
}

.expVideo-item p {
    margin-top: 10px;
    color: #2A2A2A;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.expVideo-img {
    height: 385px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.expVideo-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.expVideo-img::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

.expVideo-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.23);
}

.expVideo-play i {
    font-size: 30px;
    color: #fff;
}

/* Modal Box */
.custom-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    background: #000;
}

/* Remove default padding */
.custom-modal .modal-body {
    padding: 0;
}

/* Video */
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Close Button */
.custom-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 22px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-close-btn:hover {
    background: var(--main-color);
    transform: rotate(90deg) scale(1.1);
}

/* Smooth Animation */
.custom-modal .modal-dialog {
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.custom-modal.show .modal-dialog {
    transform: scale(1);
}

/******************************** Share Exp Section *****************************/
.common-section.shareExp-section {
    padding: 60px 0px 0px;
}

.shareExp-content {
    padding-right: 60px;
}

.shareExp-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shareExp-main-box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 30px;
    /* overflow: hidden; */
    padding: 120px 80px;
    margin-bottom: 160px;
}

.shareExp-form {
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10);
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: -240px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.shareExp-input-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
}

.shareExp-input-box label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #2A2A2A;
}

.shareExp-input-box label>span {
    color: #FB2C36;
}

.shareExp-input-box input,
.shareExp-input-box textarea,
.shareExp-input-box select {
    width: 100%;
    padding: 8px 12px;
    background: #F3F3F5;
    border: none;
    border-radius: 14px;
}

.shareExp-input-box select {
    width: 100%;
    padding: 10px 40px 10px 12px;
    background: #F3F3F5;
    border: none;
    border-radius: 14px;
    color: #616161;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* thin modern arrow */
    background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 8L10 12L14 8' stroke='%23616161' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");

    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.shareExp-input-box input::placeholder {
    color: #616161;
}

.shareExp-input-box>span {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #4A5565;
}


.shareExp-form .common-btn {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.shareExp-form .common-btn:hover {
    transform: scale(1);
}





/********************************** FAQ Section *********************************/
.faq-left-box {
    position: relative;
    /* min-height: 700px; */
}

.faq-side-img {
    position: absolute;
    left: -160px;
    bottom: -420px;
    width: 100%;
    height: 500px;
}

.faq-side-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── FAQ Right Box ── */
.faq-right-box {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Accordion Items ── */
.faq-right-box .accordion-item {
    background: #ffffff;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, border-width 0.2s ease;
}

/* Active / Open item — orange border */
.faq-right-box .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1.5px solid #FF7033 !important;
}

/* ── Accordion Button ── */
.faq-right-box .accordion-button {
    background: #ffffff;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    color: #2A2A2A;
    padding: 20px 24px;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.faq-right-box .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: none !important;
}

.faq-right-box .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent;
}

/* ── Custom Chevron Icon ── */
.faq-right-box .accordion-button::after {
    content: '\f107';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    background-repeat: no-repeat;
    background-position: center;
    background: none;
    transition: transform 0.25s ease;
    color: #000;
}

.faq-right-box .accordion-button:not(.collapsed)::after {
    content: '\f106';
    transform: rotate(180deg);
    color: #000;
}

/* ── Accordion Body ── */
.faq-right-box .accordion-body {
    padding: 0 24px 20px;
    margin: 0 24px;
    padding-left: 0;
    padding-right: 0;
}

.faq-right-box .accordion-body p {
    font-size: 16px;
    color: #616161;
    line-height: 25px;
    margin: 0;
    padding-top: 14px;
    font-weight: 300;
}

/* ── Remove flush borders ── */
.faq-right-box .accordion-flush .accordion-item {
    border-right: 1px solid #e0e0e0 !important;
    border-left: 1px solid #e0e0e0 !important;
}

/* .faq-right-box .accordion-flush .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1.5px solid #FF7033 !important;
} */

/***************************************** Contact Us Page *******************************/


.iframe-box {
    width: 100%;
    height: 480px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    border-radius: 20px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}



/******************************** Footer Section *********************************************/
.footer-section {
    position: relative;
    padding: 80px 0px 0px;
    background: #101828;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    overflow: hidden;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo {
    width: auto;
    height: auto;
    object-fit: cover;
}

.footer-main {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.footer-contact-list {
    margin: 20px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.footer-contact-list li:first-child {
    width: 20%;
}

.footer-contact-list li a {
    color: #8E8E8E;
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    transition: all ease-in-out 0.3s;
}

.footer-contact-list li a:hover {
    color: var(--main-color);
}

.footer-contact-list li a i {
    margin-top: 6px;
    color: var(--main-color);
}

.footer-linkBox h5,
.footer-subBox h5 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-subBox p {
    color: #8E8E8E;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    width: 80%;
}

.footer-subBox form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    padding: 10px;
}

.footer-subBox form input {
    width: 80%;
    padding: 10px;
    background: transparent;
    border: none;
    color: #fff;
}

.footer-subBox form input::placeholder {
    color: #fff;
}

.footer-links-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-links-list li a {
    font-size: 18px;
    font-weight: 300;
    color: #8E8E8E;
    line-height: 26px;
    text-transform: uppercase;
    transition: all ease-in-out 0.3s;
}

.footer-links-list li a:hover {
    padding-left: 10px;
    color: var(--main-color);
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-list li a i {
    color: var(--main-color);
    font-size: 20px;
    transition: all ease-in-out 0.5s;
    transform: translateY(0px);
}

.footer-social-list li a i:hover {
    transform: translateY(-5px);
}

.footer-copyright {
    padding: 20px 0px;
    text-align: center;
}

.footer-copyright p {
    font-size: 16px;
    font-weight: 300;
    color: #7C7C7C;
    line-height: 30px;
    margin-bottom: 0;
}










/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

/* @media (min-width: 992px) {
    .dropdown-menu {
      display: grid;
      opacity: 0;
      visibility: hidden;
    }
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
    }
} */
/* @media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
} */

@media (min-width: 1401px) and (max-width: 1540px) {
    .bnr-wristband {
        right: 80px;
    }

    .banner-box h1 {
        font-size: 72px;
        line-height: 88px;
    }

    .banner-box p {
        font-size: 16px;
        width: 80%;
    }

    .common-head h3 {
        font-size: 42px;
        line-height: 54px;
    }

    .ourMission-content .common-head {
        width: 90%;
    }

    .ourMission-grid-item {
        padding: 20px;
    }

    .ourMission-grid-item h5 {
        font-size: 20px;
    }

    .ourMission-grid-item-img {
        width: 60px;
        height: 60px;
    }

    .ourMission-grid-item p {
        font-size: 14px;
    }

    .common-section {
        padding: 40px 0px;
    }

    .price-text p {
        font-size: 18px;
        line-height: 24px;
    }

    .price-text h3 {
        font-size: 50px;
        line-height: 56px;
    }

    .price-card h4 {
        font-size: 28px;
    }

    .price-card h3 {
        font-size: 38px;
    }

    .price-card h5 {
        font-size: 20px;
    }

    .price-card p {
        font-size: 15px;
    }

    .price-card ul li {
        font-size: 15px;
    }

    .arrow-col img {
        width: 140px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .expVideo-img {
        height: 285px;
    }

    .expVideo-play {
        width: 70px;
        height: 70px;
    }

    .shareExp-form {
        margin-bottom: -200px;
    }

    .shareExp-form {
        padding: 22px;
    }

    .common-head p {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-right-box .accordion-button {
        font-size: 18px;
        line-height: 28px;
        padding: 16px 20px;
    }

    .faq-right-box .accordion-body p {
        font-size: 14px;
    }

    .footer-contact-list li a {
        font-size: 16px;
    }

    .footer-links-list li a {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (min-width: 1500px) {}

@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1541px) and (max-width: 1639px) {
    .bnr-wristband {
        right: 50px;
    }
}

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

/* @media (min-width: 1740px){
    .container {
        max-width: 1690px;
    }
} */

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .navbar-nav .nav-item>a {
        font-size: 15px;
    }

    .common-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .banner-box h1 {
        font-size: 66px;
        line-height: 84px;
    }

    .banner-box p {
        font-size: 16px;
        line-height: 28px;
        width: 100%;
    }

    .bnr-btn {
        padding: 8px 20px;
        font-size: 15px;
    }

    .banner-btns {
        gap: 10px;
    }

    .bnr-wristband {
        right: 50px;
    }

    .ourMission-main-box {
        padding: 40px;
    }

    .ourMission-content .common-head {
        width: 100%;
    }

    .common-head h3 {
        font-size: 40px;
        line-height: 46px;
    }

    .common-head p {
        font-size: 15px;
        line-height: 24px;
    }

    .ourMission-grid-item {
        padding: 20px;
    }

    .ourMission-grid-item h5 {
        font-size: 18px;
    }

    .ourMission-grid-item p {
        font-size: 13px;
        line-height: 22px;
    }

    .ourMission-grid-item-img {
        width: 60px;
        height: 60px;
    }

    .common-section {
        padding: 40px 0px;
    }

    .pigh-content {
        padding-left: 20px;
    }

    .pigh-content-list-content-text p {
        font-size: 13px;
        line-height: 22px;
    }

    .pigh-content-list-content {
        gap: 10px;
    }

    .price-img {
        height: 420px;
    }

    .price-card h5 {
        font-size: 18px;
    }

    .price-card h3 {
        top: 30px;
        font-size: 34px;
    }

    .price-card p {
        font-size: 13px;
    }

    .price-card ul li {
        font-size: 12px;
        letter-spacing: 0px;
    }

    .price-card h4 {
        margin: 10px 0px;
        font-size: 20px;
    }

    .price-card {
        padding: 25px 20px 15px;
    }

    .price-right-box {
        gap: 18px;
    }

    .price-text p {
        font-size: 15px;
    }

    .price-text h3 {
        font-size: 44px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .step-circle {
        width: 140px;
        height: 140px;
    }

    .step-circle img {
        width: 70px;
        height: 40px;
    }

    .step-circle-wrap {
        width: 140px;
        height: 140px;
        margin: 0 auto 20px;
    }

    .arrow-col img {
        width: 120px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .expVideo-img {
        height: 240px;
    }

    .expVideo-play {
        width: 50px;
        height: 50px;
        ;
    }

    .expVideo-play i {
        font-size: 18px;
    }

    .shareExp-main-box {
        padding: 60px 40px;
        margin-bottom: 80px;
    }

    .shareExp-form {
        padding: 20px;
        margin-bottom: -120px;
    }

    .shareExp-input-box label {
        font-size: 14px;
    }

    .shareExp-input-box>span {
        font-size: 12px;
    }

    .shareExp-input-box input::placeholder,
    .shareExp-input-box textarea::placeholder,
    .shareExp-input-box select {
        font-size: 13px;
    }

    .faq-right-box .accordion-button {
        font-size: 16px;
        padding: 16px 14px;
    }

    .faq-right-box .accordion-body p {
        font-size: 13px;
        line-height: 18px;
        padding-top: 4px;
    }

    .faq-right-box .accordion-body {
        margin: 0 14px;
    }

    .footer-contact-list li a {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-subBox p {
        font-size: 13px;
        line-height: 20px;
    }

    .footer-linkBox h5,
    .footer-subBox h5 {
        font-size: 18px;
    }

    .footer-links-list li a {
        font-size: 14px;
        line-height: 18px;
    }

    .footer-links-list {
        gap: 14px;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    .footer-contact-list li a {
        gap: 8px;
    }



}

@media (max-width: 1199px) {
    .navbar-nav {
        gap: 10px;
    }

    .navbar-nav .nav-item>a {
        font-size: 13px;
    }

    .bnr-wristband {
        text-align: center;
        align-items: center;
        padding: 10px 10px 10px 10px;
    }

    .common-head h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .common-head p {
        font-size: 13px;
        line-height: 20px;
    }

    .ourMission-grid-item-img img {
        width: 30px;
        height: 30px;
    }

    .ourMission-grid-item h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .pigh-content {
        padding-left: 0px;
    }

    .common-head h3 {
        margin-bottom: 10px;
    }

    .pigh-content-list li {
        padding: 10px;
        margin: 10px 0px;
    }

    .pigh-content-list-content>h3 {
        font-size: 34px;
        line-height: 38px;
    }

    .pigh-content-list-content-text h5 {
        font-size: 20px;
    }

    .pigh-content-list-content-text {
        width: 70%;
    }

    .price-section .common-head {
        width: 60%;
    }

    .price-card h5 {
        font-size: 16px;
        line-height: 18px;
    }

    .price-card p {
        font-size: 12px;
    }

    .price-card h3 {
        font-size: 28px;
    }

    .price-card ul li {
        font-size: 11px;
    }

    .price-card {
        padding: 25px 10px 15px;
    }

    .price-text h3 {
        font-size: 40px;
        line-height: 46px;
    }

    .price-text p {
        font-size: 14px;
    }

    .step-circle-wrap {
        width: 120px;
        height: 120px;
    }

    .step-circle {
        width: 120px;
        height: 120px;
    }

    .step-badge {
        position: absolute;
        top: 4px;
        left: 6px;
        font-size: 14px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .expVideo-img {
        height: 200px;
    }

    .expVideo-play {
        width: 40px;
        height: 40px;
    }

    .expVideo-play i {
        font-size: 12px;
    }

    .shareExp-content {
        padding-right: 20px;
    }

    .footer-links-list li a {
        font-size: 13px;
    }

    .bnr-wristband h3 {
        font-size: 20px;
    }

    .bnr-wristband p>span {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 1);
        /* background: var(--main-color); */
        width: 100%;
        left: 0;
        top: 90%;
        padding: 20px 10px;
        box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.23) !important;
    }

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

    .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .head-contact>.navbar-toggler,
    .head-contact>.navbar-toggler.collapsed {
        padding: 2px;
        border: 1px solid #74747470;
        background: #fff;
        border-radius: 0px;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.23) !important;
    }


    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .banner-box {
        min-height: 620px;
    }

    .banner-section {
        min-height: 620px;
    }

    .banner-box h1 {
        font-size: 54px;
        line-height: 70px;
    }

    .navbar-nav {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .ourMission-content .common-head {
        text-align: center;
    }

    .common-head h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .pigh-content-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pigh-content-list li {
        padding: 10px;
        margin: 0px 0px;
    }

    .pigh-content-list-content-text h5 {
        font-size: 18px;
    }

    .pigh-content-list-content {
        padding: 10px 0px;
    }

    .price-text {
        bottom: 20px;
    }

    .price-card ul li::after {
        width: 4px;
        height: 4px;
    }

    .arrow-col img {
        width: 60px;
    }

    .pighWork-lwr {
        padding: 0px 0px;
        margin-top: 20px;
    }

    .expVideo-img {
        height: auto;
    }

    .common-section.shareExp-section {
        padding: 30px 0px 0px;
    }

    .expVideo-section .common-head {
        margin-bottom: 20px;
    }

    .common-head {
        text-align: center;
    }

    .faq-left-box .common-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin: auto;
    }

    .shareExp-form {
        margin-bottom: 0px;
    }

    .shareExp-main-box {
        padding: 60px 30px;
        margin-bottom: 20px;
    }

    .faq-side-img {
        display: none;
    }

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

    .footer-contact-list {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-contact-list li {
        margin-bottom: 10px;
    }

    .footer-contact-list li:first-child {
        width: 100%;
    }

    .shareExp-content {
        padding-right: 0px;
    }

    .navbar-nav {
        gap: 5px;
        margin-bottom: 5px;
    }


    .navbar-nav .nav-item>a {
        font-size: 13px;
        padding: 0px;
        margin-bottom: 5px;
    }

    .language-select-box::after {
        display: none;
    }



}

@media (max-width: 767px) {


    .navbar-brand {
        width: 240px;
    }

    .header-bg {
        padding: 10px 20px;
    }

    .banner-box h1 {
        font-size: 34px;
        line-height: 40px;
    }

    .banner-box p {
        font-size: 14px;
        line-height: 20px;
    }

    .bnr-wristband {
        max-width: 175px;
        position: absolute;
        bottom: 10px;
        right: 55%;
    }

    .banner-section {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .ourMission-main-box {
        padding: 20px;
    }

    .ourMission-grid-box {
        gap: 12px;
    }

    .common-section {
        padding: 15px 0px;
    }

    .pigh-content-list li {
        flex-direction: column;
    }

    .pigh-content-list-content-text {
        width: 100%;
    }

    .pigh-content-list li img {
        height: auto;
    }

    .price-section .common-head {
        width: 100%;
        margin-bottom: 20px;
    }

    .step-desc {
        max-width: 300px;
        margin: auto;
    }

    .header-section {
        position: relative;
        background: #fcf4ea;
    }

    .banner-section::after {
        display: none;
    }

    .bnr-img {
        position: relative;
    }

    .banner-section {
        min-height: auto;
    }

    .banner-box {
        min-height: auto;
        padding: 20px 0px;
    }

    .banner-box h1 {
        color: var(--main-color);
    }

    .banner-box p {
        color: #353535;
    }

    .bnr-wristband {
        bottom: 260px;
        right: 65%;
    }

    .bnr-wristband-img {
        min-width: 150px;
        height: 85px;
        margin-left: 0px;
    }

    .bnr-btn {
        color: var(--main-color);
        border: 1px solid #e84c1e;
    }

    .footer-section {
        padding: 40px 0px 0px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-subBox p {
        width: 100%;
    }

    .footer-subBox form {
        width: 100%;
    }

    .price-img {
        height: auto;
    }

    .stories-item-box {
        border-radius: 10px;
        padding: 12px;
    }

    .stories-item-list {
        gap: 5px;
        flex-wrap: wrap;
    }

    .stories-item-list li {
        padding: 4px 10px;
        border-radius: 12px;
        gap: 5px;
        font-size: 12px;
    }

    .stories-text p {
        font-size: 13px;
        line-height: 20px;
    }

    .stories-text i {
        color: #d1d1d1;
        font-size: 20px;
    }

    .stories-item-box h6 {
        font-size: 12px;
    }

    .stories-main-box {
        margin-top: 0px;
    }

    .inr-banner-bg {
        position: relative;
    }

    .inr-banner-section {
        min-height: auto;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .inr-banner-box {
        min-height: auto;
        padding: 20px 0px 0px;
    }

    .inr-banner-section::after {
        display: none;
    }

    .inr-banner-box h1 {
        font-size: 28px;
        line-height: 34px;
        color: var(--main-color);
        margin-bottom: 0px;
    }

    .navbar {
        flex-wrap: nowrap !important;
    }

    .pigh-img-main {
        border-radius: 10px;
    }

    .expVideo-item p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 0px;
    }




}

@media (max-width: 575px) {
    .bnr-wristband {
        display: none;
    }

    .banner-box h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .ourMission-main-box {
        border-radius: 10px;
    }

    .ourMission-grid-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .ourMission-main-box {
        padding: 20px 10px;
    }

    .common-head h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .pigh-content-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .pigh-content-list li img {
        height: auto;
        margin: auto;
    }

    .price-text {
        position: relative;
        bottom: auto;
        padding: 20px 0px;
        width: 100%;
    }

    .price-text h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .price-text p {
        border-radius: 10px;
        font-size: 13px;
        line-height: 18px;
    }

    .price-right-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .shareExp-main-box {
        padding: 20px 10px;
    }

    .shareExp-form {
        padding: 10px;
    }

    .faq-right-box .accordion-button {
        font-size: 14px;
        line-height: 18px;
    }

    .footer-linkBox h5,
    .footer-subBox h5 {
        font-size: 15px;
    }

    .footer-links-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .footer-subBox form {
        border-radius: 10px;
        padding: 5px;
    }

    .footer-contact-list li a {
        font-size: 13px;
    }
}

/* @media (max-width: 410px) {
    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }

    .cart-icon img {
        width: 40px;
    }

    .btn-cart {
        gap: 5px;
    }

    .nav-btns {
        gap: 5px;
    }

    .head-brand-menu .common-btn {
        font-size: 10px;
    }
} */