/* common-css-start */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'GeneralSans-Regular';
    src: url('../fonts/GeneralSans-Regular.otf')
}


@font-face {
    font-family: 'GeneralSans-Medium';
    src: url('../fonts/GeneralSans-Medium.otf')
}

@font-face {
    font-family: 'GeneralSans-Semibold';
    src: url('../fonts/GeneralSans-Semibold.otf')
}

:root {
    --color-primary: #EAB21F;
    --color-secondary: #212023;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'GeneralSans-Medium';

}

p {
    margin: 0;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #333;

}

.sub-heading {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 50px;
    line-height: 112%;
    text-align: center;
    color: #131211;
}

/* Buttons Styling */
.btn-all {
    border-radius: 100px;
    background: var(--color-primary);
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    color: #000;
    padding: 14px 25px;
    transition: all 0.5s;
}

.btn-all:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

body {
    overflow-x: hidden;
}

section {
    position: relative;
}

.myClass {
    overflow: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

.section-heading {
    position: relative;
    z-index: 1;
}

.main-heading {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 68px;
    line-height: 103%;
    color: #fff;
}

.main-heading strong {
    font-family: 'GeneralSans-Semibold';
}

/* Yellow "Get Quote" Button */
.btn-quote {
    background-color: var(--color-primary);
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    color: #000;
    gap: 5px;
    display: flex;
    align-items: center;
}

.btn-quote:hover {
    background-color: #e6b800;
    transform: translateY(-1px);
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

/* common-css-end */



/*header-css-start*/
.header-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}

.navbar-brand {
    width: 145px;
    /* position: absolute;
    left: 0;
    right: 0;
    top: 0; */
}

.navbar-brand a {
    width: 100%;
    display: block;
}

.navbar-brand a img {
    width: 100%;
    object-fit: cover;
}

.header-wrap .container-fluid {
    padding: 0 24px;
}

.header-wrap #full-menu {
    border: transparent !important;
    background: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top Announcement Bar */
.header-wrap .top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
    padding: 14px 0;
}

.header-wrap .top-bar-text {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    font-family: 'GeneralSans-Medium';
    display: block;
}

.header-wrap .nav-link {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    padding: 0 !important;
    transition: color 0.2s ease;

}

.header-wrap .navbar-nav {
    gap: 34px;
}

.header-wrap .navbar {
    padding: 14px 0;
}

.header-wrap .nav-link:hover {
    color: var(--color-primary) !important;
}

.header-wrap .header-links-2 .nav-item:last-child {
    margin-right: 30px;
}

/* Search Icon */
.header-wrap .search-icon {
    border-left: 1px solid #fff;
    padding-left: 30px;
}

.header-wrap .search-icon:hover {
    color: var(--color-primary) !important;
}


.header-wrap.sticky-header {
    position: fixed;
    width: 100%;
    box-shadow: 0px 0px 30px -5px #9698a642;
    animation: goDown 0.5s ease-in-out forwards;
    top: 0;
    background: #094A27;
    z-index: 9;
    backdrop-filter: blur(21px);
}

.header-wrap.sticky-header .top-bar {
    display: none;
}


@keyframes goDown {
    0% {
        transform: translateY(-60px);
    }

    100% {
        transform: translateY(0);
    }
}


/*header-css-end*/
/*Banner section css start*/

/* Hero Banner Slider Container */
.hero-section .hero-banner-slider .item {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
}


/* Background overlay agar text ko zyada clear dikhana ho */
.hero-section .hero-banner-slider .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner-after.png');
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Slide Content Box */
.hero-section .slide-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.hero-section .slide-content p {
    color: #fff;
    margin: 16px 0 26px;
}




.hero-section .btn-all:last-child {
    background: #fff;
}


.hero-section .btn-alllast-child:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.hero-section .hero-banner-slider .owl-dots {
    position: absolute;
    bottom: 60px;
    right: 10%;
    z-index: 10;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-section .hero-banner-slider .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.5s;
}

.hero-section .hero-banner-slider .owl-dots .owl-dot.active span {
    width: 18px;
    border-radius: 4px;
}


/*Banner section css start*/
/*Find section css start*/
.find-section {
    padding: 100px 0;
}



.find-section .section-heading p {
    text-align: center;
    color: #333;
    margin: 20px 0 40px;
}

.find-section .section-heading {
    width: 64%;
    margin: 0 auto;
}

.find-section .caravan-card {
    position: relative;
    border-radius: 24px;
    /* Perfectly rounded corners jaisa image me hai */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    transition: transform 0.3s ease;
}

/* Subtle dark gradient overlay text ki readability badhane ke liye */
.find-section .caravan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(60.4deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.53) 31.91%, rgba(0, 0, 0, 0.3) 46.57%, rgba(0, 0, 0, 0) 62.72%);
}

/* Small Top Cards Height */
.find-section .card-small {
    height: 290px;
}

/* Large Bottom Card Height */
.find-section .card-large {
    height: 480px;
}

/* Card Content Wrapping */
.find-section .card-body-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text bottom me align karne ke liye */
    padding: 30px;
}

.find-section .card-title-custom {
    margin-bottom: 16px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 32px;
    line-height: 106%;
    color: #fff;
}

.find-section .card-body-content p {
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #fff;
}

/* Pill White Buttons Styling */
.find-section .btn-caravan {
    background-color: #ffffff;
    color: #000000 !important;
    padding: 14px 25px;
    border-radius: 50px;
    border: none;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 15px;
}

.find-section .btn-caravan:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}





/*Find section css start*/
/*explore-section css start*/
.carousel-wrapper {
    position: relative;
}

/* Custom Card Container */
.caravan-collection-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #dedede;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin: 10px 5px;
    transition: transform 0.3s ease;
}

.caravan-collection-card:hover {
    transform: translateY(-5px);
}

.card-img-wrapper a{
    position: relative;
    overflow: hidden;
    padding: 40%;
    display: block;
    
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

/* Content Details inside Card */
.card-details-content {
    padding: 24px;
}

.caravan-name {
    margin-bottom: 4px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 21px;
    line-height: normal;
    color: #131211;
}
.caravan-name a{ 
    color: #131211;
}

.caravan-subtext {
    margin: 10px 0;
    font-size: 16px;
    line-height: normal;
    color: #131211;
}

.caravan-price {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 17px;
    line-height: normal;
    color: #131211;
    font-family: 'GeneralSans-Medium';
}

/* Specifications Grid Spec Matrix */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 0;
    margin-bottom: 20px;
    text-align: center;
}

.spec-item {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.spec-item:last-child {
    border-right: none;
}

.spec-val {
    display: block;
    font-family: 'GeneralSans-Medium';
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: #131211;
}

.spec-lbl {
    text-transform: capitalize;
    font-family: 'GeneralSans-Medium';
    font-size: 12px;
    line-height: normal;
    text-align: center;
    color: #333;
}



/* Custom Navigation Buttons (Yellow Circular Arrows Overlay) */
.carousel-wrapper .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-primary) !important;
    color: #000000 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper .owl-nav button.owl-prev {
    left: 10px;
}

.carousel-wrapper .owl-nav button.owl-next {
    right: 10px;
}

.carousel-wrapper .owl-nav button span {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: -4px;
}


.explore-section .btn-all {
    font-size: 14px;
    padding: 14px;
    gap: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    cursor: pointer;
}
.explore-section .btn-all:last-child {
    border: 1px solid #131211;
    background: transparent;
}

.explore-section .sub-heading {
    margin-bottom: 40px;
}

.explore-btn .btn-all {
    background: var(--color-secondary) !important;
    color: #fff;
    max-width: max-content;
    margin: 25px auto 0;

}

.explore-section {
    padding: 0 0 100px;
}


/*explore-section css start*/
/*adventure-section css start*/
.adventure-section {

    padding: 90px 0 0;
    background: linear-gradient(180deg, #B1C2D1 0%, rgba(177, 194, 209, 0) 100%);
}


.adventure-section .badge-top {
    background-color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: #131211;
}



/* Feature Pills Container */
.adventure-section .pills-container {
    /* Transparent glass effect backdrop */
    display: inline-flex;
    gap: 5px;
    margin-bottom: 50px;
    justify-content: center;
    border: none;
    backdrop-filter: blur(1px);
    box-shadow: inset 0 0 4px 0 #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.adventure-section .pill-btn {
    padding: 18px 28px;
    border-radius: 50px;
    border: none !important;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'GeneralSans-Regular';
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    color: #000000 !important;
}

/* Active Pill State */
.adventure-section .pill-btn.active {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Main Image Custom Shape */
.adventure-section.adventure-section .feature-image-wrapper img {
    /* Smooth heavy rounded corners */
    width: 100%;
    object-fit: cover;
}

/* Bottom Text Blocks */
.adventure-section .bottom-title {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 42px;
    line-height: 110%;
    color: #131211;
}

.adventure-section .bottom-desc {
    padding-top: 10px;
    color: #131211;
}

/* Tab Transition Effect */
.adventure-section .tab-pane {
    transition: opacity 0.4s ease-in-out;
}



.explore-section {
    padding: 0 0 100px;
}

.adventure-section .section-heading {
    width: 60%;
    margin: 0 auto;
}

.adventure-section .section-heading p {
    margin: 20px 0 35px;
}

.adventure-section .feature-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.adventure-section #caravanTabsContent {
    padding-bottom: 50px;
    border-bottom: 1px solid #dedede;
}

@media (max-width: 575px) {
    .adventure-section .pills-container {
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        padding: 10px;
    }

    .adventure-section .pill-btn {
        text-align: center;
    }
}

/*adventure-section css start*/
/*adventure-section css start*/


.why-choose-section .img-grid-sub {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin-bottom: 4px;
    position: relative;
}

.why-choose-section .img-grid-sub:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(153deg, #094d97 0%, rgba(9, 77, 151, 0) 48.36%, rgba(9, 77, 151, 0) 100%);
}

.why-choose-section .section-heading p {
    margin: 20px 0;
}

.why-choose-section .feature-list-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-section .feature-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 178%;
    color: #131211;
}

/* Minimal Outline SVG/Font Icons Styling */
.why-choose-section .feature-list-item i {
    font-size: 1.25rem;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}



.why-choose-section .img-grid-sub img {
    width: 100%;
    object-fit: cover;
}

.why-choose-section {
    padding: 75px 0 100px;
}

.why-choose-section .img-grid-subs {
    width: 100%;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.why-choose-section .img-grid-subs img {
    width: 100%;
    object-fit: cover;
}

.why-choose-section .feature-list-item img {
    width: auto;
    object-fit: cover;
}

/*adventure-section css start*/
/*adventure-section css start*/
.our-carnvans-section {
    background: #262628;
}

.our-carnvans-section .container {
    padding: 90px 0 65px;
    position: relative;
}

.our-carnvans-section .container:before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.our-carnvans-section .container:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.our-carnvans-section .sub-heading {
    font-size: 22px;
    line-height: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    padding-left: 20px;
}

.our-carnvans-section .video-frame-box {
    position: relative;
    width: 100%;
    padding-bottom: 48%;
    /* Adjust aspect-ratio to match image width */
    height: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #050505;
}


.our-carnvans-section .video-frame-box iframe,
.our-carnvans-section .video-frame-box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
    display: none;
}


.our-carnvans-section .video-poster-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.our-carnvans-section .video-poster-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.our-carnvans-section .yellow-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-primary);
    /* Flat custom yellow code branding */
    border: none;
    padding: 12px 34px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.our-carnvans-section .video-frame-box.is-playing .video-poster-layer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.our-carnvans-section .video-frame-box.is-playing iframe,
.our-carnvans-section .video-frame-box.is-playing video {
    display: block;
}

/* Right Aligned Footer Navigation Anchor link */
.our-carnvans-section .explore-link-container {
    margin-top: 24px;
    padding-right: 20px;
}

.our-carnvans-section .explore-action-anchor {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.our-carnvans-section .explore-action-anchor:hover {
    color: var(--color-primary);
}


/*adventure-section css start*/
/*review-section css start*/
.reviews-section {
    padding: 80px 0 0;
}

.reviews-section .reiew-bxx {
    /* Light cream beige tint matching design */
    border-radius: 30px;
    background: #f9f7f4;
    padding: 90px 0;
    margin: 0 30px;
}


.reviews-section .testimonial-item-card {
    padding: 35px 30px;
    margin: 15px 5px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.04);
    background: #fff;
}




.reviews-section .rating-score-label {
    margin-left: 6px;
    font-weight: 500;
    font-size: 13px;
    line-height: 165%;
    color: #333;
    opacity: .6;
    font-family: "Inter", sans-serif;
}

.reviews-section .google-brand-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222222;
    letter-spacing: -0.5px;
}

/* Review Narrative body description string */
.reviews-section .review-text-paragraph {
    margin-top: 20px;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 17px;
    line-height: 161%;
    color: #131211;
    opacity: .9;

}

/* User Profile Badge Area */
.reviews-section .user-avatar-frame {
    border-radius: 50%;
    object-fit: cover;
    border: 1.11px solid #ece9e2;
    width: 40px !important;
    height: 40px;
}

.reviews-section .user-fullname-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 138%;
    letter-spacing: -0.05em;
    color: #131211;
    font-family: "Inter", sans-serif;
}

/* Custom Dots Overrides to replicate custom design system perfectly */
.reviews-section .owl-theme .owl-dots {
    margin-top: 25px !important;
    text-align: center;
}

.reviews-section .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #cccccc !important;
    border-radius: 50%;
    transition: all 0.5s ease;
    margin: 5px 4px;
    display: block;
}

.reviews-section .owl-theme .owl-dots .owl-dot.active span {
    width: 24px;
    background: #111111 !important;
    /* Bold active state dark pill indicator */
    border-radius: 12px;
}



.reviews-section .setion-heading p {
    font-size: 18px;
    line-height: 144%;
    color: #131211;
}

/*review-section css start*/
/*blog-insight-section start*/
.blog-insight-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow-x: hidden;
}

/* Top Centered Section Header Title */
.blog-insight-section .blog-section-title {
    font-size: 2.75rem;
    font-weight: 500;
    color: #111111;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

 


/* Carousel Base Relative wrapper to hold custom elements */
.blog-insight-section .carousel-relative-box {
    position: relative;
    width: 100%;
}

/* Individual Card Component Layout Box */
.blog-insight-section .blog-item-card {
    background: #ffffff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #dedede;
    border-radius: 16px;
}

.blog-insight-section .blog-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Card Thumbnail Wrapper Context Frame */
.blog-insight-section .blog-thumb-frame {
    position: relative;
    width: 100%;
    padding-bottom: 74%;
    height: 0;
    overflow: hidden;
}

.blog-insight-section .blog-thumb-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Capsule Badge Label Styling */
.blog-insight-section .badge-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 8px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    color: #131211;
}

/* Content Context Info Box */
.blog-insight-section .blog-card-body {
    padding: 24px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* News Inner Description Heading Title */
.blog-insight-section .blog-post-heading {
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #131211;
}

/* Interactive Footer Anchor Strings Layer */
.blog-insight-section .blog-footer-meta {
    border-top: 1px solid #dedede;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-insight-section .read-more-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 15px;
    color: #000;
}

.blog-insight-section .read-more-btn:hover {
    color: var(--color-primary);
}

.blog-insight-section .meta-text-details {
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #131211;
}

/* Round Left Control navigation layout placement mapping */
.blog-insight-section #blogPrevTrigger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #000000;
    z-index: 7;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    left: 1rem;
}

.blog-insight-section #blogPrevTrigger:hover {
    background-color: #ffe066;
    transform: translateY(-50%) scale(1.05);
}
.blog-insight-section #blogNextTrigger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #000000;
    z-index: 7;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    right:1rem;
}

.blog-insight-section #blogNextTrigger:hover {
    background-color: #ffe066;
    transform: translateY(-50%) scale(1.05);
}

.blog-insight-section .section-heading {
    margin-bottom: 44px;
}

 

@media (max-width: 991px) {
    .blog-insight-section .custom-nav-btn {
        display: none !important;
    }

    
}

@media (max-width: 767px) {
    .blog-insight-section .overflow-slider-container {
        margin-left: 15px;
        padding-right: 15px;
    }

}

/*blog-insight-section end*/
/*caravan-cta-section start*/
.caravan-cta-section {
    position: relative;
    width: 100%;
    padding: 64px 0;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.caravan-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Linear transition fade mapping from light top to dark floor ground layer */
    z-index: 1;
    background: linear-gradient(360deg, #212023 0%, rgba(33, 32, 35, 0.9) 14.03%, rgba(33, 32, 35, 0.782114) 39.11%, rgba(33, 32, 35, 0) 100%);
}

.caravan-cta-section .cta-content-z {
    position: relative;
    z-index: 3;
}


.caravan-cta-section .cta-buttons-group .button-group {
    display: inline-flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.caravan-cta-section .sub-heading {
    font-size: 46px;
    line-height: 122%;
    color: #fff;
    margin-bottom: 25px;
}

.caravan-cta-section .cta-buttons-group .button-group .btn-all {
    gap: 10px;
    display: flex;
    align-items: center;
    color: #000;
}

.caravan-cta-section .cta-buttons-group .button-group .btn-all:last-child {
    background: #fff;
}

/*caravan-cta-section end*/
/*caravan-cta-section end*/
.site-footer {
    background-color: #1e1e20;
    padding: 80px 0 30px 0;
}

.site-footer .footer-brand-desc {
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.76);
}

/* Social Media Icons Strip Layout Box */
.site-footer .footer-social-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer .footer-social-link {
    color: #ffffff;
    font-size: 1.25rem;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.site-footer .footer-social-link:hover {
    opacity: 0.8;
    color: var(--color-primary);
}

/* Column Structured Layout Titles Typography Header */
.site-footer .footer-column-title {
    margin-bottom: 25px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

/* Links Lists Tree Navigation Setup Blocks */
.site-footer .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .footer-links-list a {
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    color: rgba(255, 255, 255, 0.76);
}

.footer-links-list a:hover {
    color: #ffffff;
}

/* Right Side Contact Block Details Stack Map */
.site-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.76);
}

/* Brand Yellow Colored Icon Vectors mapping */
.footer-contact-item i {
    color: var(--color-primary);
    /* Custom theme yellow match color */
    font-size: 1.15rem;
    line-height: 1;
}

/* Horizontal Divider rules context row line separator */
.site-footer .footer-divider-line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    margin-bottom: 30px;
}

/* Bottom Copyright label row string text layout styling */
.site-footer .footer-copyright-text {
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 114%;
    color: #fff;
}


/*caravan-cta-section end*/
/*sub-banner-section start*/
.sub-banner {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    height: 562px;
    overflow: hidden;
    padding: 70px 0;
}

.sub-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(11, 60, 107, 0.9) 0%, rgba(11, 60, 107, 0.680611) 29.23%, rgba(11, 60, 107, 0) 100%);
}


.sub-banner .sub-banner-content-z {
    position: relative;
    z-index: 6;
}

.sub-banner .banner-pill-badge {
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    font-family: 'GeneralSans-Semibold';
    font-weight: 600;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.sub-banner .banner-btn-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.sub-banner::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(246.42deg, rgba(0, 0, 0, 0) 35.02%, rgba(0, 0, 0, 0.1) 40.41%, rgba(0, 0, 0, 0.2) 44.44%, rgba(0, 0, 0, 0.348486) 48.67%, rgba(0, 0, 0, 0.5) 54.97%, rgba(0, 0, 0, 0.56) 65.54%, rgba(0, 0, 0, 0.61) 89.85%);
}

.sub-banner .main-heading {
    font-size: 50px;
    line-height: 112%;
    color: #fff;
}

.sub-banner p {
    color: #fff;
    margin: 25px 0;
}

.sub-banner .banner-btn-group .btn-all:last-child {
    background: #fff;
}

/*sub-banner-section end*/
/*contact-section start*/
.contact-section {
    padding: 105px 0 100PX;
}

.contact-section .contact-card-box {
    background-color: #ffffff;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    border: 1px solid #f3f4f5;
    border-radius: 12px;
}

.contact-section .accent-top-bar {
    width: 40px;
    height: 4px;
    background-color: var(--color-primary);
    margin-bottom: 0;
    border-radius: 2px;
    position: relative;
    top: -20px;
}

.contact-section .contact-section-title {
    margin-bottom: 15px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 38px;
    line-height: 105%;
    color: #131211;
}

.contact-section .contact-sub-desc {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 156%;
    color: #131211;
}

.contact-section .info-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}


.contact-section .info-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: #f5f5f7;
    color: #111111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-section .info-label-heading {
    margin-bottom: 4px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    text-transform: uppercase;
    color: #131211;
}

.contact-section .info-body-text {
    margin-bottom: 0;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: #131211;
}

.contact-section .enquiry-form-label {
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 13px;
    line-height: 123%;
    text-transform: uppercase;
    color: #333;
}

.contact-section .form-control,
.contact-section .form-select {
    background-color: #f5f5f7;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #111111;
    transition: all 0.25s ease;
    background: #f2f2f2;
    border: 1px solid #f3f4f5;
    border-radius: 6px;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    background-color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.15);
    outline: none;
}

.contact-section .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: 250px;
}

.contact-section .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #cccccc;
    border-radius: 4px;
    margin-top: 3px;
    cursor: pointer;
}

.contact-section .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.contact-section .form-check-label {
    cursor: pointer;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #333;
}

.contact-section .form-check-label a {
    text-decoration: none;
    color: var(--color-primary);
}

.contact-section .form-check-label a:hover {
    text-decoration: underline;
}

.contact-section .btn-send-enquiry {
    background-color: var(--color-primary);
    color: #000000;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(255, 204, 0, 0.2);
    cursor: pointer;
}

.contact-section .btn-send-enquiry:hover {
    background-color: #ffe066;
    transform: translateY(-2px);
}

.contact-section .map-wrapper-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    height: 400px;
    width: 100%;
}

.contact-section .map-wrapper-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.contact-section .contact-card-box>div:first-child {
    padding: 20px 24px;
}



.contact-section .info-strips-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section .contact-card-box.contactbxx {
    padding: 40px 50px;
}

/*contact-section end*/
/*faq-grid-section end*/

.faq-grid-section {
    padding: 80px 0;
    background: #fff;
}

.faq-grid-section .faq-cat-card {
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
}

.faq-grid-section .faq-icon-badge {
    width: 48px;
    height: 48px;
    background-color: #f5f5f7;
    color: #111111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.faq-grid-section .faq-cat-title {
    margin-bottom: 14px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #131211;
}

.faq-grid-section .faq-cat-desc {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 150%;
}

.faq-grid-section .faq-action-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    margin-top: auto;
    /* Pushes action link to the bottom boundary securely */
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #131211;
}

.faq-action-link:hover {
    color: var(--color-primary);
}


.faq-grid-section .main-heading {
    color: #131211;
}

.faq-grid-section .faq-action-link svg path {
    transition: color 0.2s ease;
}


.faq-grid-section .faq-action-link:hover svg path {
    fill: var(--color-primary);
}

/*faq-grid-section end*/
/*faq-detailed-section  start*/
.faq-detailed-section {
    background-color: #ffffff;
    padding: 10px 0 100px 0;
}


.faq-detailed-section .faq-sub-title {
    margin: 30px 0 35px;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    text-align: center;
    color: #333;
}

.faq-detailed-section .faq-custom-tabs {
    border-bottom: 1px solid #eaeaea;
    gap: 24px;
    justify-content: flex-start;
}

.faq-detailed-section .faq-custom-tabs .nav-link {
    border: none;
    padding: 0 0 14px 0;
    background: transparent;
    position: relative;
    transition: color 0.2s ease;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5);
}

.faq-detailed-section .faq-custom-tabs .nav-link:hover {
    color: #111111;
}

.faq-detailed-section .faq-custom-tabs .nav-link.active {
    background: transparent;
    color: #131211 !important;
}

.faq-detailed-section .faq-custom-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111111;
}

.faq-detailed-section .pane-heading-title {
    margin-top: 35px;
    margin-bottom: 24px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 26px;
    line-height: normal;
    text-transform: capitalize;
    color: #131211;
}

.faq-detailed-section .faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Floating spaced columns gap matrix */
}

.faq-detailed-section .faq-accordion-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.25s ease;
}

.faq-detailed-section .faq-accordion-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.faq-detailed-section .faq-accordion-button {
    padding: 15px 25px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none !important;
    transition: color 0.2s ease;
    border: 1px solid rgba(201, 201, 201, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 20px 0 rgba(31, 41, 55, 0.05);
    background: #fff;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #191c1d;
}

.faq-detailed-section .faq-accordion-button::after {
    display: none;
}

.faq-detailed-section .faq-arrow-icon {
    font-size: 1.1rem;
    color: #111111;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.faq-detailed-section .faq-accordion-button:not(.collapsed) .faq-arrow-icon {
    transform: rotate(180deg);
}

.faq-detailed-section .faq-accordion-body {
    padding: 28px 24px 28px;
    background-color: #ffffff;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #333;
}


.faq-detailed-section .faq-wraper {
    width: 780px;
    margin: 0 auto;
}

/*faq-detailed-section  end*/

/*faq-detailed-section  end*/
.why-import-section {
    background: var(--color-secondary);
    padding: 90px 0;
}

.why-import-section .feature-grid-row {
    --bs-gutter-x: 0px;
    /* Reset gutters to match sharp alignment borders */
    --bs-gutter-y: 0px;
}

.why-import-section .feature-item-box {
    padding: 45px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}




.why-import-section .feature-box-title {
    margin: 25px 0 20px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 24px;
    line-height: 117%;
    color: #fff;
}

.why-import-section .feature-box-desc {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 150%;
    color: #e1e3e4;
}


.why-import-section .sub-heading {
    line-height: normal;
    color: #fff;
}

.why-import-section .section-heading p {
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #e1e3e4;
    width: 70%;
    margin: 20px auto 50px;
}

/*faq-detailed-section  end*/
/*cta-callout-section */
.cta-callout-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.cta-callout-section .cta-inner-card {
    background-color: #faf6f3;
    border-radius: 16px;
    padding: 50px 60px;
    width: 84%;
    margin: 0 auto;
}


.cta-callout-section .sub-heading {
    font-size: 38px;
    line-height: 105%;
    text-align: left;
}

.cta-callout-section .section-heading p {
    margin-top: 20px;
}

/*cta-callout-section end*/
/* ========================single-product-page-css-start-============================= */
.product-detail-section {
    background-color: #ffffff;
    padding: 45px 0;
}

/* --- Breadcrumb Style --- */
.product-detail-section .p-breadcrumb {
    margin-bottom: 25px;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #333;
}

.product-detail-section .p-breadcrumb a {
    color: #777;
    text-decoration: none;
    margin: 0 5px;
}

.product-detail-section .p-breadcrumb span {
    color: #111;
    font-family: 'GeneralSans-Medium';
    margin: 0 5px;
}

/* --- Main Layout Grid Wrapper --- */
.product-detail-section .gallery-container-flex {
    display: flex;
    gap: 15px;
}

/* --- Desktop Master Vertical Thumbnails UI --- */
.product-detail-section .thumb-nav-wrapper {
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Desktop Arrows buttons UI */
.product-detail-section .vertical-arrow-btn {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s;
    border-radius: 100%;
    fill: #fff;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.18);
}

.product-detail-section .vertical-arrow-btn:hover {
    background: #111;
    color: #fff;
}

.product-detail-section .thumb-vertical-scroll-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 480px;
    overflow-y: hidden;
    /* Script steps scroll handling */
    scroll-behavior: smooth;
    width: 100%;
    padding: 2px 0;
}

/* Individual cells items UI details matching your wireframes */
.product-detail-section .custom-thumb-cell {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background-color: #f7f7f9;
    transition: border-color 0.2s ease;
    position: relative;
    flex-shrink: 0;
}

.product-detail-section .custom-thumb-cell img,
.custom-thumb-cell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-section .custom-thumb-cell.active-sync-border {
    border-color: #111111 !important;
}

.product-detail-section .video-thumb-play-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* --- Large Viewport Presentation Canvas --- */
.product-detail-section .main-display-box {
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
    max-width: calc(100% - 100px);
    height: 100%;
}

.product-detail-section .main-carousel-item {
    height: 520px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.product-detail-section .main-carousel-item img,
.product-detail-section .main-carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Glassmorphic overlay pill style inside display image preview */
.product-detail-section .glass-video-pill {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
}

/* --- Right Specification Specs Layout Grid --- */
.product-detail-section .pill-badge {
    margin-bottom: 15px;
    font-family: 'GeneralSans-Regular';
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.1em;
    color: #fff;
    background: #131211;
    border-radius: 6px;
    padding: 6px 12px;
}

.product-detail-section .product-h1-title {
    margin: 20px 0 24px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 36px;
    line-height: 122%;
    color: #131211;
}

.product-detail-section .product-price {
    margin-bottom: 25px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #131211;
}

.product-detail-section .grid-spec-card {
    text-align: center;
    border: 1px solid rgba(201, 201, 201, 0.2);
    border-radius: 8px;
    padding: 16px;
    background: #f3f4f5;
}

.product-detail-section .spec-lbl {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'GeneralSans-Regular';
    font-weight: 600;
    font-size: 13px;
    line-height: 123%;
    letter-spacing: 0.09em;
    text-align: center;
    color: #131211;
}

.product-detail-section .spec-val {
    font-weight: 500;
    font-size: 17px;
    line-height: 141%;
    text-align: center;
    color: #131211;
    font-family: 'GeneralSans-Semibold';
}


.product-detail-section .product-price span {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #131211;
}

.product-detail-section .sp-btns .btn-all {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-detail-section .sp-btns .btn-all:last-child {
    border: 2px solid #000;
    background: transparent;
}




.technical-specs-section .sub-heading {
    padding-bottom: 25px;
    margin-bottom: 30px;
    position: relative;
    font-size: 32px;
    line-height: 125%;
}

.technical-specs-section .sub-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 9999px;
    width: 96px;
    background: var(--color-primary);
}

.technical-specs-section .accordion-item {
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(31, 41, 55, 0.05);
    background: #fff;
    border: 1px solid rgba(243, 244, 245, 0.2);
    border-radius: 8px !important;
}

.technical-specs-section .accordion-button {
    background-color: #f2f2f2 !important;
    color: #212529 !important;
    box-shadow: none !important;
    padding: 15px 30px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
}

.technical-specs-section .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.technical-specs-section .table-specs {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.technical-specs-section .table-specs td {
    padding: 15px 30px;
    border-bottom: 1px solid #f8f9fa;
}

.technical-specs-section .table-specs td:first-child {
    width: 50%;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #131211;
}

.technical-specs-section .table-specs td:last-child {
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #333;
}

.technical-specs-section .table-specs tr:last-child td {
    border-bottom: none;
}

.technical-specs-section {
    padding: 45px 0;
}

.technical-specs-section tr {
    border: 1px solid #f3f4f5;
}




.features-section .feature-card {
    background-color: #f9f7f4;
    /* Premium subtle warm tint */
    border-radius: 8px;
    padding: 24px;
    border: 1px solid rgba(222, 222, 222, 0.1);
    height: 100%;
    min-height: 120px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-section .feature-icon {
    font-size: 23px;
    color: #222222;
    margin-bottom: 10px;
}

.features-section .feature-label {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 15px;
    line-height: 125%;
    text-align: center;
    color: #131211;
}

.features-section {
    padding: 45px 0 100px;
}

.features-section .feau-icon {
    margin-bottom: 10px;
}

.features-section .sub-heading {
    font-size: 32px;
    line-height: 125%;
}

.features-section .section-heading p {
    font-size: 18px;
    line-height: 133%;
    margin: 20px 0 0;
}



.adv-ex-section {
    background-color: var(--color-secondary);
    padding: 92px 0;
}


.adv-ex-section .adv-ex-tagline {
    text-transform: uppercase;
    font-family: 'GeneralSans-Semibold';
    font-weight: 600;
    font-size: 14px;
    line-height: 114%;
    letter-spacing: 0.14em;
    text-align: center;
    color: var(--color-primary);
}


.adv-ex-section .adv-ex-card {
    height: 100%;
    transition: transform 0.25s ease, background-color 0.25s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.adv-ex-section .adv-ex-card:hover {
    transform: translateY(-4px);
    background-color: #313133;
}

.adv-ex-section .adv-ex-icon {
    margin-bottom: 15px;
}

.adv-ex-section .adv-ex-card-title {
    margin: 6px 0 12px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #fff;
}

.adv-ex-section .adv-ex-card-desc p{
    margin-bottom: 0;
    font-size: 16px;
    color: #e1e3e4;
}

.adv-ex-section .sub-heading {
    color: #fff;
    margin: 24px 0 44px;
}

.cr-sec-wrapper {
    padding: 100px 0;
}


.cr-sec-wrapper .cr-sec-title-main {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 21px;
    line-height: normal;
    text-transform: capitalize;
    color: #131211;
}

.cr-sec-wrapper .cr-sec-btn-write {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 325%;
    text-transform: capitalize;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #000;
}

.cr-sec-wrapper .cr-sec-rating-num {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 21px;
    color: #131211;
}

.cr-sec-wrapper .cr-sec-total-txt {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 186%;
    color: #131211;
}

.cr-sec-wrapper .cr-sec-bar-lbl {
    font-size: 0.8rem;
    font-weight: 500;
    width: 24px;
}

.cr-sec-wrapper .cr-sec-bar-track {
    height: 6px !important;
    background-color: #e9ecef !important;
    border-radius: 10px;
}

.cr-sec-wrapper .cr-sec-bar-fill {
    background-color: #000000 !important;
}

.cr-sec-wrapper .cr-sec-bar-pct {
    width: 32px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    text-align: right;
    color: #131211;
}

.cr-sec-wrapper .cr-sec-heading-right {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 26px;
    line-height: normal;
    text-transform: capitalize;
    color: #131211;
}

.cr-sec-wrapper .cr-sec-dropdown-sort {
    width: auto !important;
    border-radius: 20px !important;
    background-color: #f1f3f5 !important;
    padding-left: 15px !important;
    padding-right: 32px !important;
    border: none !important;
    height: 36px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #131211;
}

.cr-sec-wrapper .cr-sec-thumb-img {
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1/ 1;
    width: 100%;
}

.cr-sec-wrapper .cr-sec-quote-text {
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 152%;
    color: #333;
}

.cr-sec-wrapper .cr-sec-btn-cta {
    border: none;
}

.cr-sec-wrapper .cr-sec-btn-cta:hover {
    background-color: #d4ac0d !important;
}

.cr-sec-wrapper .fw-semibold.text-dark.mb-1 {
    font-family: 'GeneralSans-Regular';
    font-size: 16px;
    line-height: 175%;
    color: #333;
}

.ie-gal-section {
    background: linear-gradient(180deg, #B1C2D1 0%, rgba(177, 194, 209, 0) 100%);
    padding: 90px 0 45px;
}



.ie-gal-section .ie-gal-img-box {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ie-gal-section .ie-gal-img-box:hover {
    transform: scale(1.015);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.ie-gal-section .ie-gal-large-left {
    aspect-ratio: 16 / 10.5;
}

.ie-gal-section .ie-gal-square-right {
    aspect-ratio: 1 / 0.94;
}

.ie-gal-section .ie-gal-bottom-thumb {
    aspect-ratio: 1.6 / 1;
}

.ie-gal-section .section-heading {
    margin-bottom: 44px;
}

.comp-banner-wrapper {
    padding: 45px 0 90px;
}

.comp-banner-wrapper .comp-banner-box {
    /* Vibrant matching solid brand yellow */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px 0 rgba(31, 41, 55, 0.05);
    background: var(--color-primary);
    border-radius: 12px;
    padding: 42px;
}

.comp-banner-wrapper .comp-banner-btn {
    background-color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    border: none !important;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0);
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #000;
}




.comp-banner-wrapper .sub-heading {
    font-size: 32px;
    line-height: 125%;
    text-align: left;
}

.comp-banner-wrapper p {
    line-height: 140%;
    color: #131211;
}


.faq-style-section {
    background-color: #f9f8f6;
    border-radius: 24px;
    padding: 75px 0;
    margin: 0 30px;
}


.faq-style-section .faq-style-accordion-holder {
    margin: 0 auto;
    width: 100%;
}

.faq-style-section .faq-style-accordion-holder .accordion-item {
    border: none !important;
    margin-bottom: 14px;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
    background-color: #ffffff !important;
    overflow: hidden;
}

.faq-style-section .faq-style-toggle-btn {
    background-color: #ffffff !important;
    padding: 20px 24px !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #191c1d;
}

.faq-style-section .faq-style-toggle-btn:not(.collapsed) {
    box-shadow: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}

.faq-style-section .faq-style-toggle-btn::after {
    background-size: 0.95rem;
    filter: brightness(0.2);
    transition: transform 0.2s ease;
}

.faq-style-section .faq-style-body-content {
    color: #555555;
    padding: 0 24px 22px 24px;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 152%;
}

.you-may-section {
    padding: 90px 0;
}

.you-may-section .sub-heading {
    margin-bottom: 45px;
}



.you-may-section .btn-all {
    font-size: 15px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.you-may-section .card-details-content {
    padding: 20px;
}

.you-may-section .card-details-content .d-flex .btn-all:last-child {
    border: 1px solid #131211;
    background: transparent;
}


.you-may-bxx .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.you-may-bxx .owl-nav button {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary) !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, transform 0.2s;
}



.you-may-bxx .owl-nav button.owl-prev {
    left: -3rem;
}

.you-may-bxx .owl-nav button.owl-next {
    right: -3rem;
}

.caravan-marketplace-section {
    background-color: #F2F2F2;
    padding: 60px 0;
}

.caravan-marketplace-section .filter-header-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #131211;
}

.caravan-marketplace-section .filter-divider {
    color: #cfd4da;
    margin: 0 12px;
    font-weight: 300;
}

.caravan-marketplace-section .results-count {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #131211;
}

.caravan-marketplace-section .search-align-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.caravan-marketplace-section .search-bar-wrapper {
    position: relative;
    width: 100%;
}

.caravan-marketplace-section .search-bar-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #495057;
    font-size: 12px;
}

.caravan-marketplace-section .search-bar-wrapper input {
    padding: 8px 16px 8px 40px !important;
    border-radius: 30px !important;
    border: none !important;
    background-color: #ffffff;
    height: 38px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    font-family: 'GeneralSans-Medium';
    font-weight: 400;
    font-size: 16px;
    color: rgba(19, 18, 17, 0.75);
}

.caravan-marketplace-section .filter-setting-icon-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px;
}

.caravan-marketplace-section .filters-dropdowns-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.caravan-marketplace-section .custom-capsule-select {
    width: auto !important;
    min-width: 105px;
    border: none !important;
    border-radius: 30px !important;
    padding: 6px 30px 6px 16px !important;
    height: 34px;
    background-color: #ffffff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 14px 14px !important;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #131211;
}

.caravan-marketplace-section .checkbox-pill-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    padding: 6px 18px;
    border-radius: 30px;
    cursor: pointer;
    height: 34px;
}

.caravan-marketplace-section .checkbox-pill-box input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--color-primary);
}

.caravan-marketplace-section .checkbox-pill-box span {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #131211;
}

.caravan-marketplace-section .category-tabs-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(19, 18, 17, 0.1);
}

.caravan-marketplace-section .category-tab-btn {
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px solid #f3f4f5;
    border-radius: 12px;
    padding: 6px 14px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #131211;
}

.caravan-marketplace-section .category-tab-btn .tab-icon-square {
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #212529;
    border-radius: 12px;
    width: 48px;
    height: 48px;
}

.caravan-marketplace-section .category-tab-btn.active {
    background-color: #fccb05 !important;
    color: #000000 !important;
}

.caravan-marketplace-section .category-tab-btn.active .tab-icon-square {
    background-color: #e2b602 !important;
    color: #000000 !important;
}


.caravan-marketplace-section .custom-layout-pagination {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.caravan-marketplace-section .custom-layout-pagination a {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 0 2px;
    font-family: 'GeneralSans-Semibold';
    font-weight: 600;
    font-size: 16px;
    line-height: 91%;
    color: #333;
}

.caravan-marketplace-section .custom-layout-pagination a.active {
    background-color: #f1f3f5;
    color: #000000;
}

.caravan-marketplace-section .custom-layout-pagination a.page-prev-next {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #212529;
}

.caravan-marketplace-section .custom-layout-pagination a.disabled {
    pointer-events: none;
}

.caravan-marketplace-section .caravan-collection-card {
    margin: 0;
    height: 100%;
}


.caravan-marketplace-section .btn-all {
    font-size: 15px;
    padding: 15px 19px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.caravan-marketplace-section .card-details-content {
    padding: 20px;
}

.caravan-marketplace-section .card-details-content .btn-all:last-child {
    border: 1px solid #131211;
    background: transparent;
}

/* ========================single-product-page-css-end-============================= */
/* ========================Import-process-page-css-end-============================= */

.journey-section {
    padding: 80px 0;
}

.journey-section .step-card {
    height: 100%;
    transition: all 0.2s ease;
    border: 1px solid #f3f4f5;
    border-radius: 12px;
    padding: 31px 32px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
}

.journey-section .step-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: #e8e8e8;
}

.journey-section .icon-box {
    width: 56px;
    height: 56px;
    background-color: #F2F2F2;
    /* Match light grey */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.journey-section .step-title {
    margin-bottom: 12px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 20px;
    line-height: 138%;
    color: #131211;
}

.journey-section .step-desc {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 149%;
}



.journey-section .section-heading p {
    text-align: center;
    margin-top: 20px;
}

.journey-section .section-heading {
    margin-bottom: 44px;
}

.inspection-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #B1C2D1 0%, rgba(177, 194, 209, 0) 100%);
}

.inspection-section .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.inspection-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.inspection-section .floating-badge {
    position: absolute;
    bottom: 40px;
    background-color: #fed000;
    padding: 16px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    left: 24px;
}

.inspection-section .floating-badge .badge-title {
    display: block;
    margin-bottom: 2px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #131211;
}

.inspection-section .floating-badge .badge-subtitle {
    display: block;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #131211;
}


.inspection-section .feature-box {
    margin-bottom: 20px;
}

.inspection-section .feature-icon {
    margin-bottom: 12px;
    display: inline-block;
}

.inspection-section .feature-title {
    margin-bottom: 8px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    color: #131211;
}

.inspection-section .feature-text {
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 15px;
    line-height: 153%;
    color: #131211;
    margin: 0;
}



.inspection-section .section-heading p {
    font-size: 18px;
    line-height: 167%;
    margin: 15px 0;
}

.popular-upgrade-section {
    padding: 30px 0 100px 0;
}

.popular-upgrade-section .upgrade-card {
    border: none;
    transition: transform 0.3s ease;
}

.popular-upgrade-section .upgrade-card img {
    border-radius: 20px;
    height: 280px;
    object-fit: cover;
    margin-bottom: 15px;
}

.popular-upgrade-section .upgrade-card:hover {
    transform: translateY(-5px);
}

.popular-upgrade-section .title-text {
    font-weight: 700;
    color: #212529;
}

.popular-upgrade-section .desc-text {
    color: #6c757d;
    font-size: 0.95rem;
}

.popular-upgrade-section .card-img-top {
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

.popular-upgrade-section .card {
    border: none !important;
}

.popular-upgrade-section .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular-upgrade-section .icon-box {
    font-size: 1.5rem;
    color: #333;
}

.popular-upgrade-section .desc-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 147%;
}

.popular-upgrade-section .card-body {
    padding: 25px 0;
}

.popular-upgrade-section .title-row h5 {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 20px;
    line-height: 138%;
    color: #191c1d;
}

.popular-upgrade-section .section-heading {
    margin-bottom: 44px;
}

.popular-upgrade-section .section-heading p {
    margin: 30px auto 0;
    width: 65%;
}

/* ========================Import-process-page-css-end-============================= */
/* ========================About-page-css-end-============================= */
.story-section {
    padding: 100px 0 30px;
}

.story-section .badge-history {
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: 'GeneralSans-Semibold';
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.1em;
    color: #131211;
}

.story-section .stat-card {
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    padding: 32px 32px 34px;
    box-shadow: 4px 4px 0 0 rgba(39, 42, 46, 0.1);
    background: #f2f2f2;
}

.story-section .stat-number {
    font-family: 'GeneralSans-Medium';
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: #131211;
    margin-bottom: 5px;
}

.story-section .stat-label {
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 111%;
    color: #333;
}

.story-section .sub-heading {
    margin: 20px 0 25px;
}


.finds-section .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.finds-section .view-all {
    text-decoration: none;
    text-underline-offset: 4px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(19, 18, 17, 1);
    font-family: 'GeneralSans-Medium';
    font-size: 14px;
    line-height: 143%;
    color: #131211;
    display: flex;
    align-items: center;
    gap: 5px;
}

.finds-section .view-all svg {
    margin-left: 6px;
    vertical-align: middle;
}

.finds-section .caravan-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.finds-section .badge-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    text-transform: uppercase;
    padding: 12px;
    font-family: 'GeneralSans-Medium';
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(25, 28, 30, 0.2);
    backdrop-filter: blur(20px);
}



.finds-section .card-slot {
    position: relative;
    margin-bottom: 28px;
}

.finds-section .caption {
    margin-top: 15px;
    font-family: 'GeneralSans-Medium';
    font-size: 22px;
    line-height: 127%;
    color: #131211;
}

.finds-section {
    background: linear-gradient(180deg, #E8F4FF 0%, rgba(232, 244, 255, 0) 100%);
    padding-top: 90px;
}
.finds-section .sub-heading {
    margin-bottom: 10px;
    text-align: left;
}

.finds-section .find-wrapper {
    margin-top: 45px;
}

.trusted-section .section-heading .sub-heading {
    margin: 25px 0;
}

.trusted-section .section-heading p {
    width: 90%;
    margin-bottom: 20px;
}

.trusted-section {
    padding: 80px 0;
}

.trusted-section .mfr-panel {
    padding: 27px;
    background: #f9f7f4;
    border-radius: 16px;
}

.trusted-section .mfr-eyebrow {
    display: inline-block;
    background: #fff;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'GeneralSans-Semibold';
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.1em;
    color: #131211;
}

.trusted-section .mfr-text {
    margin-bottom: 26px;
}

.trusted-section .mfr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trusted-section .mfr-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 111%;
    color: #131211;
}

.trusted-section .mfr-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid #F9CB08;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F9CB08;
}

.trusted-section .mfr-check svg {
    width: 11px;
    height: 11px;
}

.trusted-section .mfr-media {
    position: relative;
    height: 100%;
    min-height: 340px;
}

.trusted-section .mfr-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.trusted-section .mfr-stat {
    position: absolute;
    left: 22px;
    bottom: 18px;
    background: var(--color-primary);
    border-radius: 8px;
    padding: 18px 22px;
}

.trusted-section .mfr-stat .num {
    margin-bottom: 2px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 36px;
    line-height: 111%;
    color: #131211;
}

.trusted-section .mfr-stat .lbl {
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 111%;
    color: #131211;
}




.sourcing-section .source-media {
    position: relative;
    max-width: max-content;
    margin: 0 auto;
}

.sourcing-section .source-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

.sourcing-section {
    padding: 40px 0 90px;
}

.sourcing-section .section-heading .sub-heading {
    width: 60%;
    margin: 0 auto;
}

.sourcing-section .section-heading p {
    width: 67%;
    margin: 15px auto 35px;
    text-align: center;
}

.trust-section {
    padding: 100px 0;
    background-color: #fff;
}

.trust-section .sub-heading {
    margin-bottom: 60px;
}

.trust-section .stat-item {
    text-align: center;
}

.trust-section .stat-number {
    margin-bottom: 10px;
    font-family: 'GeneralSans-Medium';
    font-weight: 500;
    font-size: 48px;
    line-height: 117%;
    text-align: center;
    color: var(--color-primary);
}

.trust-section .stat-label {
    font-family: 'GeneralSans-Regular';
    font-weight: 500;
    font-size: 18px;
    line-height: 111%;
    text-align: center;
    color: #131211;
}


 
    /* Section Properties */
    .blog-section {
        padding: 60px 0 100px;
        background-color: #ffffff;
    }
   .blog-section  .sub-heading {
        font-family: 'GeneralSans-Medium', sans-serif;
        font-weight: 600;
        font-size: 42px;
        color: #131211;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }

    /* Screen-stretch horizontal boundary */
  .blog-section   .nav-wrapper {
        border-bottom: 1px solid #ededed;
        width: 100%;
        position: relative;
    }
  .blog-section   .custom-tabs {
        border-bottom: none !important;
        gap: 28px;
        position: relative;
        z-index: 2;
    }
   .blog-section  .custom-tabs .nav-link {
        border: none !important;
        padding: 0 0 16px 0 !important;
        background: transparent !important;
        position: relative;
        font-family: 'GeneralSans-Medium', sans-serif;
        font-weight: 500;
        font-size: 20px;
        text-transform: capitalize;
        color: rgba(19, 18, 17, 0.4) !important;
        transition: color 0.2s ease;
    }
   .blog-section  .custom-tabs .nav-link:hover,
  .blog-section   .custom-tabs .nav-link.active {
        color: #131211 !important;
    }
  .blog-section   .custom-tabs .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -1px; 
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #131211;
        z-index: 3;
    }

    /* Search Box styling context */
   .blog-section  .search-container-box {
        padding-bottom: 12px;
        min-width: 320px;
        position: relative;
        z-index: 2;
    }
   .blog-section  .search-wrapper {
        position: relative;
        width: 100%;
    }
   .blog-section  .search-wrapper .search-icon {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #7a7a7a;
        display: flex;
        align-items: center;
    }
   .blog-section  .search-input {
        background-color: #f7f7f7;
        border: none;
        border-radius: 50px;
        padding: 12px 20px 12px 42px;
        font-size: 15px;
        color: #131211;
        font-family: 'GeneralSans-Regular', sans-serif;
    }
  .blog-section   .search-input::placeholder {
        color: #9c9c9c;
    }
  .blog-section   .search-input:focus {
        background-color: #eeeeee;
        box-shadow: none;
        outline: none;
    }

  .blog-section  .tab-content > .tab-pane {
        display: none;
    }
   .blog-section  .tab-content > .active {
        display: block;
    }

  .blog-section  .featured-card {
        border-radius: 20px;
        min-height: 480px;
    }
   .blog-section  .featured-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
        padding: 35px;
    }
  .blog-section   .small-badge {
        font-weight: 600;
        font-size: 11px;
        letter-spacing: 0.08em;
        color: #131211 !important;
        background-color: #ffffff !important;
        font-family: 'GeneralSans-Medium', sans-serif;
        padding: 6px 14px;
        border-radius: 6px;
    }
   .blog-section  .post-date {
        font-family: 'GeneralSans-Regular', sans-serif;
        font-size: 14px;
        letter-spacing: 0.05em;
        color: #ffffff;
    }
  .blog-section   .featured-title {
        max-width: 85%;
        font-family: 'GeneralSans-Medium', sans-serif;
        font-size: 34px;
        font-weight: 500;
        line-height: 1.3;
        color: #ffffff;
    }

    .blog-section .sidebar-wrapper-box {
        border: 1px solid #ededed;
        border-radius: 20px;
        padding: 24px;
        background-color: #ffffff;
    }
   .blog-section  .sidebar-title {
        font-family: 'GeneralSans-Medium', sans-serif;
        font-size: 24px;
        font-weight: 500;
        color: #131211;
    }
  .blog-section   .recent-sidebar-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
  .blog-section   .recent-post-item {
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
  .blog-section   .recent-img {
        width: 80px;
        height: 56px;
        object-fit: cover;
        flex-shrink: 0;
        border-radius: 8px;
    }
  .blog-section   .recent-meta {
        font-family: 'GeneralSans-Regular', sans-serif;
        font-size: 11px;
        letter-spacing: 0.03em;
        color: rgba(19, 18, 17, 0.4);
    }
  .blog-section   .recent-post-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-family: 'GeneralSans-Medium', sans-serif;
        font-weight: 500;
        font-size: 13px;
        line-height: 1.4;
        color: #131211;
    }
     .blog-section   .recent-post-title a{
        color: inherit;
     }

 .blog-section .section-grid-title {
        font-family: 'GeneralSans-Medium', sans-serif;
        font-size: 36px;
        font-weight: 500;
        color: #131211;
    }
   .blog-section  .blog-grid-card {
        background: transparent;
        border: none;
        padding: 0;
    }
   .blog-section  .blog-grid-card .img-wrapper {
        border-radius: 16px;
        width: 100%;
    }
   .blog-section  .blog-grid-card .img-wrapper img {
        height: 240px;
        width: 100%;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
 .blog-section    .blog-grid-card:hover .img-wrapper img {
        transform: scale(1.03);
    }
 .blog-section    .grid-date {
        font-family: 'GeneralSans-Regular', sans-serif;
        font-size: 13px;
        color: rgba(19, 18, 17, 0.4);
        display: block;
        margin-top: 4px;
    }
   .blog-section  .grid-card-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-family: 'GeneralSans-Medium', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.45;
        color: #131211;
        margin: 10px 0 14px 0;
    }
   .blog-section  .read-more-link {
        font-family: 'GeneralSans-Medium', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #131211;
        gap: 6px;
        text-decoration: none;
        border-bottom: 1px solid #131211;
        padding-bottom: 1px;
        width: fit-content;
    }
   .blog-section  .read-more-link span {
        display: inline-flex;
        transition: transform 0.2s ease;
    }
   .blog-section  .read-more-link:hover span {
        transform: translateX(4px);
    }

   .blog-section  .btn-show-more {
        border: 1px solid #dcdfd4;
        background-color: #ffffff;
        border-radius: 50px;
        letter-spacing: 0.05em;
        transition: all 0.2s ease;
        font-family: 'GeneralSans-Medium', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #131211;
        padding: 12px 28px;
    }
  .blog-section   .btn-show-more:hover {
        background-color: #131211;
        border-color: #131211;
        color: #ffffff;
    }

.wpcf7-response-output {
    text-align: center;
    margin: 20px 0 0;
    font-family: 'GeneralSans-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: rgb(19, 18, 17);
}
/* ========================About-page-css-end-============================= */