:root {
    --primary: #0059FF;
    --primary-hover: #0047CC;
    --primary-light: #E8F0FF;
    --accent-dark: #0A0A2E;
    --accent-purple: #6B5AED;
    --accent-red: #E63946;
    --text-dark: #0A0A0A;
    --text-body: #000000;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FF;
    --bg-hero: #EEF2FF;
    --bg-dark: #0A0A2E;
    --bg-card: #FFFFFF;
    --border-color: #E5E7EB;
    --border-radius-sm: 5px;
    --border-radius-md: 8px;
    --border-radius-lg: 10px;
    --border-radius-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(0, 89, 255, 0.08);
    --shadow-md: 0 4px 24px rgba(0, 89, 255, 0.12);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
    --font-body: 'Be Vietnam Pro', sans-serif;
    --font-heading: 'Instrument Serif', serif;
    --fs-hero: 3rem;
    --fs-section-title: 3rem;
    --fs-card-title: 1.125rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-sub-description: 24px;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --section-py: 60px;
    --container-px: 24px;
    --navbar-height: 70px;
    --navbar-bg: #FFFFFF;
    --navbar-border: #E5E7EB;
    --bg-footer: #F1F3FF;
    --font-montserrat: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/BeVietnamPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/InstrumentSerif-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/InstrumentSerif-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

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

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    padding: 10px 24px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    padding: 10px 24px;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.section-py {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.section-title {
    font-size: var(--fs-section-title);
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: var(--fs-body);
    color: var(--text-muted);
}

/* ===================== TOP BAR ===================== */
#topBar {
    background-color: #C2D1ED;
    text-align: center;
    padding: 10px 0;
}

#topBar p {
    margin: 0;
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    color: var(--text-dark);
}

/* ===================== NAVBAR ===================== */
#mainNavbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    padding: 16px 0;
    transition: all 0.3s ease;
}

/* Desktop 1200px+ : topBar ke neeche baithega */
@media (min-width: 1200px) {
    #mainNavbar {
        top: 35px;
        background: transparent;
        border-bottom: none;
        box-shadow: none;
    }

    #mainNavbar.sticky {
        top: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-sm);
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
    }
}

/* Tablet + Mobile (max 1199px): hamesha white fixed */
@media (max-width: 1199px) {
    #mainNavbar {
        top: 0;
        background-color: var(--bg-white) !important;
        box-shadow: var(--shadow-sm);
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
    }

    #mainNavbar .navbar-collapse {
        background-color: var(--bg-white);
        border-radius: var(--border-radius-md);
        padding: 12px 16px;
        margin-top: 8px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
    }

    #mainNavbar .navbar-right {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===================== LOGO ===================== */
/* #mainNavbar .navbar-brand img {
    height: 40px;
    width: auto;
} */
@media (max-width: 480px) {
    #mainNavbar .navbar-brand img {
        height: 32px;
    }
}

/* ===================== TOGGLER ===================== */
#mainNavbar .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.25);
    padding: 4px 8px;
}

#mainNavbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

#mainNavbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2C0%2C0%2C0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================== SEARCH ===================== */
#mainNavbar .navbar-search {
    width: 100%;
}

@media (min-width: 1200px) {
    #mainNavbar .navbar-search {
        width: auto;
    }
}

#mainNavbar .navbar-search-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #0059FF17;
    border: 1px solid transparent;
    border-radius: var(--border-radius-pill);
    padding: 5px 16px;
    width: 100%;
}

@media (min-width: 1200px) {
    #mainNavbar .navbar-search-inner {
        width: 185px;
        height: 40px;
    }
}

#mainNavbar .navbar-search-inner .bi-search {
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
}

#mainNavbar .navbar-search-inner input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: #000000;
    width: 100%;
}

#mainNavbar .navbar-search-inner input::placeholder {
    color: var(--text-muted);
}

/* ===================== NAV LINKS ===================== */
#mainNavbar .navbar-nav {
    gap: 0;
}

@media (min-width: 1200px) {
    #mainNavbar .navbar-nav {
        gap: 2px;
    }
}

#mainNavbar .nav-link {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: #000000;
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    transition: all 0.2s ease;
    font-family: 'Be Vietnam Pro';
}

@media (max-width: 1199px) {
    #mainNavbar .nav-link {
        padding: 10px 12px;
    }
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: var(--primary);
}

/* ===================== LANGUAGE SWITCHER ===================== */
#mainNavbar .navbar-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

#mainNavbar .navbar-lang-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#mainNavbar .navbar-lang-toggle .bi-globe2 {
    font-size: 22px;
    color: #a8b0c3;
}

#mainNavbar .navbar-lang-code {
    position: absolute;
    top: -7px;
    right: 0;
    font-size: 0.5rem;
    font-weight: var(--fw-bold);
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
    vertical-align: baseline;
}

#mainNavbar .navbar-lang-toggle:hover .bi-globe2,
#mainNavbar .navbar-lang-toggle[aria-expanded="true"] .bi-globe2 {
    color: var(--primary);
}

#mainNavbar .navbar-lang-menu {
    min-width: 180px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

#mainNavbar .navbar-lang-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius-sm);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 12px;
}

#mainNavbar .navbar-lang-menu .dropdown-item.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

#mainNavbar .navbar-lang-short {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ===================== CART ===================== */
#mainNavbar .navbar-cart {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

#mainNavbar .navbar-cart .bi-cart3 {
    font-size: 22px;
    color: #a8b0c3;
}

#mainNavbar .navbar-cart:hover .bi-cart3 {
    color: var(--primary);
}

#mainNavbar .navbar-cart .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== LOGIN BUTTON ===================== */
#mainNavbar .navbar-btn-login {
    border-radius: var(--border-radius-pill);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    padding: 8px 24px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    #mainNavbar .navbar-btn-login {
        width: auto;
    }
}

/* ====================================== Hero Section======================== */
/* ===================== HERO SECTION ===================== */
#hero {
    position: relative;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 160px;
    padding-bottom: 65px;
    overflow: hidden;
}

#hero .hero-content {
    margin: 0 auto;
    padding-bottom: 40px;
}

#hero .hero-content .hero-title {
    font-size: var(--fs-hero);
    color: var(--text-body);
    line-height: 1.15;
    margin-bottom: 20px;
}

#hero .hero-content .hero-subtitle {
    font-size: 24px;
    color: rgb(0 0 0);
    line-height: 1.4;
    max-width: 936px;
    margin: 20px auto 30px;
    text-align: center;
    font-family: var(--font-body);
}

/* ===================== HERO SEARCH ===================== */
#hero .hero-content .hero-search {
    margin-bottom: 28px;
}

#hero .hero-content .hero-search .hero-search-inner {
    display: flex;
    align-items: center;
    background: #0059FF17;
    border-radius: 6px;
    max-width: 670px;
    margin: 0 auto;
    padding-left: 10px;
    gap: 7px;
}

#hero .hero-content .hero-search .hero-search-inner .hero-search-dropdown select {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
    padding-right: 8px;
}

#hero .hero-content .hero-search .hero-search-inner .hero-search-divider {
    width: 1px;
    height: 20px;
    background-color: #000000;
    margin: 0;
    flex-shrink: 0;
}

#hero .hero-content .hero-search .hero-search-inner input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-dark);
    background: transparent;
    min-width: 0;
}

#hero .hero-content .hero-search .hero-search-inner input::placeholder {
    color: #000000;
}

#hero .hero-content .hero-search .hero-search-inner button {
    background-color: #3771FE;
    border: none;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    border-radius: 0 6px 6px 0;
}

#hero .hero-content .hero-search .hero-search-inner button:hover {
    background-color: var(--primary-hover);
}

/* ===================== HERO BUTTONS ===================== */
#hero .hero-content .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

#hero .hero-buttons .btn-start-selling,
#hero .hero-buttons .btn-marketplace {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 48px;
    text-decoration: none;
    font-family: Hind Madurai, sans-serif;
    transition: all 0.3s ease-in-out;
    border: 1px solid #0059FF;
}

#hero .hero-buttons .btn-start-selling {
    background-color: #0059FF;
    color: #FFF;
}

#hero .hero-buttons .btn-start-selling:hover {
    background-color: transparent;
    color: #0059FF;
    border-color: #0059FF;
}

#hero .hero-buttons .btn-marketplace {
    background-color: transparent;
    color: #0059FF;
}

#hero .hero-buttons .btn-marketplace:hover {
    background-color: #0059FF;
    color: #FFF;
    border-color: #0059FF;
}

#hero .hero-buttons .btn-start-selling:focus,
#hero .hero-buttons .btn-marketplace:focus,
#hero .hero-buttons .btn-start-selling:active,
#hero .hero-buttons .btn-marketplace:active {
    box-shadow: 0 0 0 0.2rem rgba(0, 89, 255, 0.25);
}

/* ===================== HERO STACK ===================== */
#hero .hero-stack-wrap {
    text-align: center;
    margin-bottom: -68px;
    position: relative;
    z-index: 1;
}

#hero .hero-stack-wrap .hero-stack-img {
    width: 100%;
    max-width: 925px;
    margin: 0 auto;
    display: block;
}

/* ===================== HERO SLIDER ===================== */
#hero .hero-slider-wrap {
    max-width: 1001px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

#hero .hero-slider-wrap .hero-slider .hero-slide .slide-inner {
    display: flex;
    width: 100%;
}

#hero .hero-slider-wrap .hero-slider .hero-slide {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

#hero .hero-slider-wrap .hero-slider .hero-slide .slide-inner img {
    width: calc(100% / 3);
}

#hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #05092B99;
    padding: 14px 24px;
    z-index: 10;
    border-radius: 0 0 10px 10px;
}

#hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer .hero-slide-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
}

#hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer .hero-slide-btn {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    border-radius: var(--border-radius-pill);
    padding: 7px 20px;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    transition: all 0.2s ease;
    white-space: nowrap;
}

#hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer .hero-slide-btn:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

#hero .hero-slider-wrap .slick-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    z-index: 11;
}

#hero .hero-slider-wrap .slick-dots li {
    margin: 0 !important;
}

#hero .hero-slider-wrap .slick-dots li button:before {
    color: var(--text-light);
    opacity: 0.5;
    font-size: 8px;
}

#hero .hero-slider-wrap .slick-dots li.slick-active button:before {
    color: #007AFF;
    opacity: 1;
}

/* ===================== TABLET (768px - 1199px) ===================== */
@media (max-width: 1199px) {
    #hero {
        padding-top: 120px;
    }

    #hero .hero-content .hero-title {
        font-size: 2rem;
    }

    #hero .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }

    #hero .hero-stack-wrap {
        margin-bottom: -50px;
    }
}

/* ===================== MOBILE LARGE (576px - 767px) ===================== */
@media (max-width: 767px) {
    #hero {
        padding-top: 100px;
    }

    #hero .hero-content {
        padding-bottom: 28px;
    }

    #hero .hero-content .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    #hero .hero-content .hero-subtitle {
        font-size: 1rem;
        margin: 16px auto 24px;
    }

    #hero .hero-content .hero-search .hero-search-inner {
        max-width: 100%;
        height: 44px;
    }

    #hero .hero-content .hero-search .hero-search-inner button {
        height: 44px;
        width: 46px;
    }

    #hero .hero-buttons .btn-start-selling,
    #hero .hero-buttons .btn-marketplace {
        padding: 10px 20px;
        font-size: 14px;
    }

    #hero .hero-stack-wrap {
        margin-bottom: -35px;
    }

    #hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer {
        padding: 10px 14px;
    }

    #hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer .hero-slide-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* ===================== MOBILE SMALL (max 575px) ===================== */
@media (max-width: 575px) {
    #hero {
        padding-top: 85px;
    }

    #hero .hero-content .hero-title {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    #hero .hero-content .hero-subtitle {
        font-size: 0.92rem;
        margin: 12px auto 20px;
    }

    #hero .hero-content .hero-search {
        margin-bottom: 20px;
    }

    #hero .hero-content .hero-search .hero-search-inner {
        gap: 4px;
        padding-left: 8px;
    }

    #hero .hero-content .hero-search .hero-search-inner .hero-search-dropdown select {
        font-size: 12px;
        max-width: 70px;
    }

    #hero .hero-content .hero-search .hero-search-inner input {
        font-size: 12px;
    }

    #hero .hero-content .hero-search .hero-search-inner input::placeholder {
        font-size: 11px;
    }

    #hero .hero-content .hero-search .hero-search-inner button {
        width: 42px;
        height: 42px;
    }

    #hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    #hero .hero-buttons .btn-start-selling,
    #hero .hero-buttons .btn-marketplace {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
        text-align: center;
    }

    #hero .hero-stack-wrap {
        margin-bottom: -20px;
    }

    #hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer {
        padding: 8px 10px;
        flex-wrap: wrap;
        gap: 6px;
    }

    #hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer .hero-slide-info span {
        font-size: 11px;
    }

    #hero .hero-slider-wrap .hero-slider .hero-slide .hero-slide-footer .hero-slide-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* ==================================================== Expolore section ========================= */
.explore-section {
    background-color: #F1F3FF;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    overflow: hidden;
}

.explore-section .explore-title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: var(--text-dark);
    margin-bottom: 40px;
}

.explore-section .explore-slider {
    width: 100%;
}

.explore-section .explore-slider .explore-card {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    border: 1.5px solid #0059FF;
    border-radius: 44px;
    padding: 16px 28px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    margin: 0 10px;
    white-space: normal;
    line-height: 1.5;
    width: auto !important;
    display: inline-block !important;
}

.explore-section .explore-slider .explore-card:hover {
    background-color: #0018FF;
    color: #ffffff;
    border-color: #0018FF;
}

.how-it-works {
    background: linear-gradient(180deg, #0059FF -51.05%, #D5DCFF 61.89%);
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.how-it-works .how-it-works__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #000000;
    margin-bottom: 48px;
    font-weight: 400;
}

.how-it-works .how-it-works__card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 210px;
}

.how-it-works .how-it-works__card .how-it-works__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    border: 3px solid #000000DB;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 25px;
}

.how-it-works .how-it-works__card .how-it-works__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.how-it-works .how-it-works__card .how-it-works__card-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.how-it-works .how-it-works__card .how-it-works__card-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: #00000099;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}


/* ====================================== Income Stream Section ====================================== */

.income-stream {
    background-color: #ffffff;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    overflow: hidden;
}

.income-stream .income-stream__header {
    margin-bottom: 40px;
}

.income-stream .income-stream__header .income-stream__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #000000;
    margin-bottom: 12px;
}

.income-stream .income-stream__header .income-stream__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #000000;
    max-width: 955px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.income-stream .income-stream__slider .income-stream__card {
    border-radius: 24px;
    padding: 20px 32px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 0 12px;
    min-height: 200px;
}

.income-stream .income-stream__slider .income-stream__card .income-stream__card-text {
    flex: 0 0 65%;
    max-width: 65%;
}

.income-stream .income-stream__slider .income-stream__card .income-stream__card-text h3 {
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.income-stream .income-stream__slider .income-stream__card .income-stream__card-img {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.income-stream .income-stream__slider .income-stream__card .income-stream__card-img img {
    width: 277px;
    height: 257px;
    max-width: 100%;
    object-fit: contain;
}

.income-stream .income-stream__slider .slick-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.income-stream .income-stream__slider .slick-arrow:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.income-stream .income-stream__slider .slick-prev {
    left: 12px;
}

.income-stream .income-stream__slider .slick-next {
    right: 2px;
}

.income-stream .income-stream__slider .slick-prev:before,
.income-stream .income-stream__slider .slick-next:before {
    color: #ffffff;
    font-size: 20px;
    opacity: 1;
}

/* =========================================== Product listing Section =========================================== */

.trending-prompts {
    background-color: #D5DCFF54;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.trending-prompts .trending-prompts__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #000000;
    margin-bottom: 8px;
}

.trending-prompts .trending-prompts__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #000000;
    margin: 0;
}

.trending-prompts .trending-prompts__search {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-pill);
    padding: 10px 20px;
    min-width: 220px;
}

.trending-prompts .trending-prompts__search .bi-search {
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
}

.trending-prompts .trending-prompts__search input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #000000;
    width: 100%;
}

.trending-prompts .trending-prompts__search input::placeholder {
    color: var(--text-muted);
}

.trending-prompts .trending-prompts__sidebar {
    background-color: #D5DCFF;
    border-radius: var(--border-radius-md);
    padding: 20px 16px;
    position: sticky;
    top: 80px;
}

.trending-prompts .trending-prompts__sidebar .trending-prompts__sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00000017;
    border-radius: var(--border-radius-pill);
    padding: 8px 14px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: #000000;
}

.trending-prompts .trending-prompts__sidebar .trending-prompts__filter-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    color: #000000;
    margin-bottom: 12px;
    cursor: pointer;
}

.trending-prompts .trending-prompts__sidebar .trending-prompts__filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trending-prompts .trending-prompts__sidebar .trending-prompts__filter-list li {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #000000;
    padding: 4px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.trending-prompts .trending-prompts__sidebar .trending-prompts__filter-list li:hover,
.trending-prompts .trending-prompts__sidebar .trending-prompts__filter-list li.active {
    color: var(--primary);
    font-weight: var(--fw-semibold);
}

.trending-prompts .trending-prompts__card {
    background-color: #E8F0FF;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 8px;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-top .trending-prompts__card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-top .trending-prompts__card-share {
    background: transparent;
    border: none;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-top .trending-prompts__card-share:hover {
    color: var(--primary);
}

.trending-prompts .trending-prompts__card .trending-prompts__card-img {
    width: 100%;
    padding: 0 12px;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-body {
    padding: 12px;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-meta .trending-prompts__card-price {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: #000000;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-meta .trending-prompts__card-rating {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: #000000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trending-prompts .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-meta .trending-prompts__card-rating .bi-star-fill {
    color: #D6BD00;
    font-size: 12px;
}

.trending-prompts .trending-prompts__filter-label {
    cursor: pointer;
    user-select: none;
}

.trending-prompts .trending-prompts__filter-label .bi-chevron-down {
    transition: transform 0.3s ease;
}

.trending-prompts .trending-prompts__filter-label[aria-expanded="false"] .bi-chevron-down {
    transform: rotate(-90deg);
}

@media (max-width: 767px) {
    .trending-prompts .trending-prompts__sidebar {
        position: static;
        margin-bottom: 20px;
    }
}

/* =========================================== Add to cart page =========================================== */

.add-to-cart-products {
    background-color: #ffffff;
    padding-top: 0;
}

.add-to-cart-products .add-to-cart-products__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: var(--fw-regular);
    text-align: center;
    margin: 0 0 28px;
}

.add-to-cart-products .row {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
}

.add-to-cart-products .trending-prompts__card {
    height: 100%;
    border: 1px solid var(--primary);
}

.add-to-cart-products .trending-prompts__card .trending-prompts__card-img {
    aspect-ratio: 1 / 1;
}

.add-to-cart-products .trending-prompts__card .trending-prompts__card-img img {
    height: 100%;
    border-radius: var(--border-radius-lg);
}

.add-to-cart-products .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-title {
    font-size: 18px;
    line-height: 1.15;
}

.add-to-cart-products .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-meta {
    justify-content: flex-start;
    gap: 28px;
}

@media (max-width: 575px) {
    .add-to-cart-products {
        padding-bottom: 40px;
    }

    .add-to-cart-products .add-to-cart-products__title {
        margin-bottom: 20px;
    }

    .add-to-cart-products .row > * {
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
    }

    .add-to-cart-products .trending-prompts__card .trending-prompts__card-body .trending-prompts__card-meta {
        gap: 16px;
    }
}

/* =========================================== Creator Workflow Section =========================================== */

.creator-workflow {
    background-color: #ffffff;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.creator-workflow .creator-workflow__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #000000;
    margin-bottom: 32px;
    text-align: center;
}

.creator-workflow .creator-workflow__box {
    background: linear-gradient(85.05deg, #BFD3FF 3.3%, #D6E4FF 50%, #A5D0FF 96.7%);
    border-radius: 24px;
    padding: 40px 32px;
}

.creator-workflow .creator-workflow__box .creator-workflow__diagram {
    width: 100%;
    margin-bottom: 32px;
}

.creator-workflow .creator-workflow__box .creator-workflow__diagram img {
    width: 100%;
    object-fit: contain;
}

.creator-workflow .creator-workflow__box .creator-workflow__marketing .creator-workflow__marketing-title {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.creator-workflow .creator-workflow__box .creator-workflow__marketing .creator-workflow__marketing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.creator-workflow .creator-workflow__box .creator-workflow__marketing .creator-workflow__marketing-list li {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    font-weight: var(--fw-medium);
    color: #000000;
}

.creator-workflow .creator-workflow__box .creator-workflow__badge {
    background-color: var(--primary);
    border-radius: 40px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.creator-workflow .creator-workflow__box .creator-workflow__badge .creator-workflow__badge-number {
    font-family: var(--font-body);
    font-size: 6rem;
    font-weight: var(--fw-bold);
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
}

.creator-workflow .creator-workflow__box .creator-workflow__badge .creator-workflow__badge-text {
    font-family: var(--fs-sub-description);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .creator-workflow .creator-workflow__box {
        padding: 24px 16px;
    }

    .creator-workflow .creator-workflow__box .creator-workflow__badge {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================= Payments Section ========================================= */

.payments-section {
    background-color: #F1F3FF;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    overflow: hidden;
}

.payments-section .payments-section__header p {
    max-width: 898px;
    margin: 0 auto 60px;
}

.payments-section .payments-section__header .payments-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    font-style: italic;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.2;
}

.payments-section .payments-section__header .payments-section__subtitle {
    font-family: 'poppins', sans-serif;
    font-size: var(--fs-sub-description);
    font-weight: var(--fw-semibold);
    color: #000000;
    line-height: 1.4;
    text-align: center;
}

.payments-section .payments-section__orbit-wrap {
    position: relative;
    width: 560px;
    height: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payments-section .payments-section__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 160, 255, 0.4) 0%, rgba(120, 180, 255, 0.3) 40%, rgba(255, 200, 220, 0.2) 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(20px);
}

.payments-section .payments-section__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 89, 255, 0.15);
    top: 50%;
    left: 50%;
    animation: orbit-rotate linear infinite;
    z-index: 2;
    transform-origin: center center;
}

.payments-section .payments-section__orbit--1 {
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
    animation-duration: 10s;
}

.payments-section .payments-section__orbit--2 {
    width: 380px;
    height: 380px;
    margin-top: -190px;
    margin-left: -190px;
    animation-duration: 16s;
    animation-direction: reverse;
}

.payments-section .payments-section__orbit--3 {
    width: 520px;
    height: 520px;
    margin-top: -260px;
    margin-left: -260px;
    animation: none;
}

.payments-section .payments-section__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: none;
}

.payments-section .payments-section__orbit--1 .payments-section__icon {
    animation-duration: 10s;
    transform: rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle)));
}

.payments-section .payments-section__orbit--2 .payments-section__icon {
    animation-duration: 16s;
    animation-direction: reverse;
    transform: rotate(var(--angle)) translateX(190px) rotate(calc(-1 * var(--angle)));
}

.payments-section .payments-section__orbit--3 .payments-section__icon {
    animation: none;
}

.payments-section .payments-section__icon img {
    display: block;
    transition: transform 0.3s ease;
    min-width: 76px;
    min-height: 76px;
    object-fit: contain;
}

.payments-section .payments-section__icon img:hover {
    transform: scale(1.15);
}

.payments-section .payments-section__hub {
    position: absolute;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.payments-section .payments-section__hub img {
    object-fit: contain;
}

@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-rotate {
    from {
        transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
    }

    to {
        transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--radius)) rotate(calc(-1 * (var(--angle) + 360deg)));
    }
}

@media (max-width: 768px) {
    .payments-section .payments-section__orbit-wrap {
        width: 340px;
        height: 340px;
    }

    .payments-section .payments-section__orbit--1 {
        width: 160px;
        height: 160px;
        margin-top: -80px;
        margin-left: -80px;
    }

    .payments-section .payments-section__orbit--2 {
        width: 250px;
        height: 250px;
        margin-top: -125px;
        margin-left: -125px;
    }

    .payments-section .payments-section__orbit--3 {
        width: 330px;
        height: 330px;
        margin-top: -165px;
        margin-left: -165px;
    }

    .payments-section .payments-section__orbit--3 .payments-section__icon {
        transform-origin: center 165px;
        transform: translateX(-50%) rotate(var(--angle));
    }

    .payments-section .payments-section__hub {
        width: 70px;
        height: 70px;
    }

    /* .payments-section .payments-section__hub img {
        width: 50px;
        height: 50px;
    } */
}

@media (max-width: 480px) {
    .payments-section .payments-section__orbit-wrap {
        width: 280px;
        height: 280px;
    }

    .payments-section .payments-section__orbit--1 {
        width: 130px;
        height: 130px;
        margin-top: -65px;
        margin-left: -65px;
    }

    .payments-section .payments-section__orbit--2 {
        width: 200px;
        height: 200px;
        margin-top: -100px;
        margin-left: -100px;
    }

    .payments-section .payments-section__orbit--3 {
        width: 270px;
        height: 270px;
        margin-top: -135px;
        margin-left: -135px;
    }

    .payments-section .payments-section__orbit--3 .payments-section__icon {
        transform-origin: center 135px;
        transform: translateX(-50%) rotate(var(--angle));
    }
}


/* ========================================= Trust Section ========================================= */

.trust-section {
    background-color: #ffffff;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 15%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-image: url('../images/trust-before.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 999
}

.trust-section .trust-section__box {
    position: relative;
    background: linear-gradient(180deg, #0059FF 0%, #D5DCFF 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 20px 50px 0px #01052B33;
    backdrop-filter: blur(30px);
    border-radius: 20px;
}

.trust-section .trust-section__box .trust-section__before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.trust-section .trust-section__box .trust-section__before img {
    display: block;
    max-width: 180px;
}

.trust-section .trust-section__box .trust-section__img {
    padding: 35px;
}

.trust-section .trust-section__box .trust-section__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

.trust-section .trust-section__box .trust-section__content {
    position: relative;
    z-index: 2;
    padding: 90px 40px;
}

.trust-section .trust-section__box .trust-section__content .trust-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.trust-section .trust-section__box .trust-section__content .trust-section__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .trust-section .trust-section__box .trust-section__content {
        padding: 24px;
        text-align: center;
    }

    .trust-section .trust-section__box .trust-section__img {
        padding: 24px 24px 0;
    }

    .trust-section .trust-section__box .trust-section__content .trust-section__title {
        font-size: 1.6rem;
    }

    .trust-section .trust-section__box .trust-section__before img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .trust-section .trust-section__box .trust-section__content .trust-section__title {
        font-size: 1.3rem;
    }
}

/* ========================================= Create & Sell Section ========================================= */
.create-sell {
    background-color: #F1F3FF;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    overflow: hidden;
}

.create-sell .create-sell__header .create-sell__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #000000;
    margin-bottom: 12px;
}

.create-sell .create-sell__header .create-sell__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #000000;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.create-sell .create-sell__slider .create-sell__card {
    border-radius: 24px;
    padding: 40px 32px;
    margin: 0 12px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 320px;
}

.create-sell .create-sell__slider .create-sell__card .create-sell__card-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.create-sell .create-sell__slider .create-sell__card .create-sell__card-text {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 28px;
}

.create-sell .create-sell__slider .create-sell__card .create-sell__card-btn {
    display: inline-block;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    border-radius: var(--border-radius-pill);
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    font-weight: var(--fw-medium);
    transition: all 0.2s ease;
}

.create-sell .create-sell__slider .create-sell__card .create-sell__card-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.create-sell .create-sell__slider .slick-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.create-sell .create-sell__slider .slick-arrow:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.create-sell .create-sell__slider .slick-prev {
    left: -20px;
}

.create-sell .create-sell__slider .slick-next {
    right: -20px;
}

.create-sell .create-sell__slider .slick-prev:before,
.create-sell .create-sell__slider .slick-next:before {
    color: #ffffff;
    font-size: 20px;
    opacity: 1;
}

.create-sell .create-sell__slider .create-sell__card {
    width: 468px !important;
}

/* ========================================= Workflow Section ========================================= */
.workflow {
    background-color: #ffffff;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.workflow .workflow__header .workflow__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #000000;
    margin-bottom: 12px;
}

.workflow .workflow__header .workflow__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #000000;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.workflow .workflow__image img {
    width: 100%;
    object-fit: contain;
}

/* ============================================ Testimonials Section ========================================= */
.testimonial-section {
    background: #ffffff;
    padding: 60px 0 50px;
    overflow: hidden;
}

.testimonial-section .testimonial-heading {
    text-align: center;
    font-size: var(--fs-section-title);
    font-weight: 400;
    color: #0F0F0F;
    font-family: var(--font-heading);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.testimonial-section .testimonial-slider {
    overflow: hidden;
}

.testimonial-section .testimonial-slider .slick-list {
    overflow: visible;
    padding: 50px 0 0 !important;
    margin: 0;
}

.testimonial-section .testimonial-slider .slick-track {
    display: flex;
    align-items: center;
}

.testimonial-section .testimonial-slider .slick-slide {
    position: relative;
    z-index: 1;
    margin: 0 -45px;
}

.testimonial-section .testimonial-slider .slick-slide .t-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
    height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: scale(0.72);
    opacity: 0.5;
    box-shadow: none;
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s ease;
    will-change: transform, opacity;
}

.testimonial-section .testimonial-slider .slick-slide.slide-outer .t-card {
    transform: scale(0.78);
    opacity: 0.5;
    box-shadow: none;
}

.testimonial-section .testimonial-slider .slick-slide.slide-inner .t-card {
    transform: scale(0.9);
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-section .testimonial-slider .slick-slide.slick-center .t-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0px 4px 8px 0px #00000040;
}

.testimonial-section .testimonial-slider.is-sliding .slick-slide .t-card {
    transition: none;
}

.testimonial-section .testimonial-slider .slick-slide .t-card .t-card-stars {
    color: #2563eb;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.testimonial-section .testimonial-slider .slick-slide .t-card .t-card-quote {
    font-size: 16px;
    color: #111;
    line-height: 1.55;
    font-weight: 500;
    flex: 1;
    margin: 0;
}

.testimonial-section .testimonial-slider .slick-slide .t-card .t-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.testimonial-section .testimonial-slider .slick-slide .t-card .t-card-author .t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-section .testimonial-slider .slick-slide .t-card .t-card-author .t-author-info .t-author-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.testimonial-section .testimonial-slider .slick-slide .t-card .t-card-author .t-author-info .t-author-role {
    font-size: 11px;
    color: #000000;
}

/* ── HORIZONTAL DOTS ── */
.testimonial-section .testimonial-slider .slick-dots {
    position: relative;
    bottom: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
    width: 100%;
}

.testimonial-section .testimonial-slider .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
}

.testimonial-section .testimonial-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    opacity: 0.4;
    padding: 0;
    border: none;
    font-size: 0;
    transition: all 0.3s ease;
}

.testimonial-section .testimonial-slider .slick-dots li button:before {
    display: none;
}

.testimonial-section .testimonial-slider .slick-dots li.slick-active button {
    width: 12px;
    height: 12px;
    border-radius: 25px;
    background: #2563eb;
    opacity: 1;
}

@media (max-width: 991px) {
    .testimonial-section .testimonial-slider .slick-slide {
        margin: 0;
    }

    .testimonial-section .testimonial-slider .slick-slide .t-card {
        transform: scale(1) !important;
        opacity: 1 !important;
        box-shadow: 0px 4px 8px 0px #00000040 !important;
    }

    .testimonial-section .testimonial-slider .slick-list {
        padding: 20px 0 0 !important;
    }

    .testimonial-section .testimonial-slider .slick-track {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-section .testimonial-slider .slick-slide .t-card {
        height: auto;
    }

    .testimonial-section .testimonial-slider .slick-track {
        gap: 12px;
    }
}

/* ============================================ CTA Section ========================================= */
.cta-section {
    background-color: #ffffff;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.cta-section .cta-section__content .cta-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-section .cta-section__content .cta-section__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sub-description);
    color: #6B7280;
    margin-bottom: 32px;
}

.cta-section .cta-section__content .cta-section__btn {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 14px 48px;
    border-radius: var(--border-radius-pill);
    border: 1.5px solid #000000;
    transition: all 0.25s ease;
}

.cta-section .cta-section__content .cta-section__btn:hover {
    background-color: transparent;
    color: #000000;
}

@media (max-width: 768px) {
    .cta-section .cta-section__content .cta-section__title {
        font-size: 1.8rem;
    }

    .cta-section .cta-section__content .cta-section__btn {
        padding: 12px 36px;
    }
}

@media (max-width: 480px) {
    .cta-section .cta-section__content .cta-section__title {
        font-size: 1.5rem;
    }
}

/* ============================================ FAQ Section ========================================= */
/* ============================================ FAQ Section ========================================= */
.faq-section {
    background-image: url('../images/cta-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.faq-section .faq-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #ffffff;
    margin-bottom: 40px;
}

.faq-section .faq-section__list {
    max-width: 680px;
    margin: 0 auto 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section .faq-section__list .faq-section__item {
    overflow: hidden;
    margin: 10px 0;
    box-shadow: 0px 30px 30px -1.75px #10314D1A;
    box-shadow: 0px 13.65px 13.65px -1.46px #10314D12;
    box-shadow: 0px 6.87px 6.87px -1.17px #10314D0F;
    box-shadow: 0px 3.62px 3.62px -0.88px #10314D0F;
    box-shadow: 0px 1.81px 1.81px -0.58px #10314D0F;
    box-shadow: 0px 0.71px 0.71px -0.29px #10314D0D;
}

.faq-section .faq-section__list .faq-section__item .faq-section__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: none;
    outline: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: var(--fw-medium);
    color: #000000;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    border-radius: 47px 47px 0 0;
}

.faq-section .faq-section__list .faq-section__question.collapsed {
    border-radius: 47px !important;
}

.faq-section .faq-section__list .faq-section__item .collapse.show {
    background: #FFF;
}

.faq-section .faq-section__list .faq-section__item .faq-section__question .bi-chevron-down {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.faq-section .faq-section__list .faq-section__item .faq-section__question[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.faq-section .faq-section__list .faq-section__item .faq-section__answer {
    padding: 5px 0 10px 0;
    font-family: var(--font-body);
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    margin: 0 24px;
}

.faq-section .faq-section__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000000;
    font-family: var(--font-body);
    font-size: 17px;
}

.faq-section .faq-section__contact .bi-envelope {
    font-size: 18px;
}

@media (max-width: 768px) {
    .faq-section .faq-section__list {
        max-width: 100%;
    }

    .faq-section .faq-section__list .faq-section__item {
        border-radius: var(--border-radius-lg);
    }
}
/* ========================================= Footer Section =========================================    */
.main-footer {
    background-color: #F1F3FF;
    border-top: 1px solid var(--border-color);
}

.main-footer .main-footer__brand img {
    height: 36px;
    width: auto;
}

.main-footer .main-footer__tagline {
    font-family: var(--font-body);
    font-size: 20px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

.main-footer .main-footer__apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer .main-footer__apps .main-footer__app-btn img {
    height: 48px;
    width: auto;
    border-radius: 10px;
}

.main-footer .main-footer__heading {
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.main-footer .main-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-footer .main-footer__links a {
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    color: #000000;
    transition: color 0.2s ease;
}

.main-footer .main-footer__links a:hover {
    color: var(--primary);
}

.main-footer .main-footer__newsletter-text {
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    color: #000000;
    margin-bottom: 12px;
}

.main-footer .main-footer__newsletter {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-pill);
    overflow: hidden;
    padding: 0 0 0 16px;
    margin-bottom: 10px;
}

.main-footer .main-footer__newsletter input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: #000000;
    background: transparent;
    min-width: 0;
}

.main-footer .main-footer__newsletter input::placeholder {
    color: var(--text-muted);
}

.main-footer .main-footer__newsletter button {
    background-color: #0059FF;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.main-footer .main-footer__newsletter button:hover {
    background-color: #000000;
}

.main-footer .main-footer__policy {
    font-size: 16px;
    color: #000000;
    margin: 0;
}

.main-footer .main-footer__policy a {
    color: var(--primary);
}

.main-footer .main-footer__bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.main-footer .main-footer__bottom .main-footer__copyright {
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    color: #000000;
    margin: 0;
}

.main-footer .main-footer__bottom .main-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-footer .main-footer__bottom .main-footer__social span {
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    color: #0059FF;
}

.main-footer .main-footer__bottom .main-footer__social .main-footer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0.54px solid #0059FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0059FF;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: #0059FF1A;
}

.main-footer .main-footer__bottom .main-footer__social .main-footer__social-icon:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.floating-buttons {
    position: fixed;
    right: 0;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 82px;
}

.floating-buttons .floating-btn {
    width: 100%;
    height: 70px;
    border-radius: 50px 0 0 50px;
    background-color: #0059FF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 22px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
    padding: 10px;
}

.floating-buttons .floating-btn img {
    height: 100%;
    object-fit: contain;
}

.floating-buttons .floating-btn:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    width: 90px;
}

@media (max-width: 768px) {
    .main-footer .main-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .main-footer .main-footer__bottom .main-footer__social {
        justify-content: center;
    }

    .main-footer .main-footer__apps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .main-footer .main-footer__newsletter {
        width: 330px;
    }

    .main-footer .main-footer__social {
        order: 1;
    }

    .main-footer .main-footer__copyright {
        order: 2;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* ========================================================= Contact us page ================================*/
.contact-hero {
    padding: 50px 0 40px;
}

.contact-hero .contact-hero__img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.contact-hero .contact-hero__img-wrap .contact-hero__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* ============================================================
       CONTACT SECTION
    ============================================================ */
.contact-section {
    padding: 40px 0 40px;
}

.contact-section .contact-info-box {
    background: linear-gradient(180deg, rgba(0, 89, 255, 0.1) 0%, rgba(215, 221, 255, 0.1) 100%);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-section .contact-info-box .contact-info-box__title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.contact-section .contact-info-box .contact-info-box__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin: -12px 0 0;
    line-height: 1.6;
}

.contact-section .contactus-heading {
    font-size: 45px;
    font-weight: 700;
    font-family: 'Poppins';
    margin-bottom: 24px;
}

.contact-section .contact-info-box .contact-info-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-section .contact-info-box .contact-info-box__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

.contact-section .contact-info-box .contact-info-box__list li .contact-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: #0059FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.contact-section .contact-info-box .contact-map {
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

.contact-section .contact-info-box .contact-map iframe {
    display: block;
    border-radius: 12px;
    min-height: 200px;
}

/* Social Icons */
.contact-section .contact-info-box .contact-socials {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section .contact-info-box .contact-socials .contact-social-icon {
    width: 38px;
    height: 38px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-section .contact-info-box .contact-socials .contact-social-icon--fb {
    color: #0059FF;
}

.contact-section .contact-info-box .contact-socials .contact-social-icon--yt {
    color: #0059FF;
}

.contact-section .contact-info-box .contact-socials .contact-social-icon--ig {
    color: #0059FF;
}

.contact-section .contact-info-box .contact-socials .contact-social-icon--li {
    color: #0059FF;
}

.contact-section .contact-info-box .contact-socials .contact-social-icon--x {
    color: #0059FF;
}

.contact-section .contact-info-box .contact-socials .contact-social-icon:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.contact-section .contact-form-box {
    padding: 0px 36px;
    border-radius: 16px;
    background: #fff;
}

.contact-section .contact-form-box form .cf-field {
    position: relative;
    margin-bottom: 24px;
}

.contact-section .contact-form-box form .cf-field .cf-input {
    width: 100%;
    background: #F9F9F9;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 18px 16px 6px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
}

.contact-section .contact-form-box form .cf-field .cf-input::placeholder {
    color: transparent;
}

.contact-section .contact-form-box form .cf-field .cf-input:focus {
    border-color: #0059FF;
    box-shadow: 0 0 0 3px rgba(0, 89, 255, 0.08);
    background: #fff;
}

.contact-section .contact-form-box form .cf-field .cf-textarea {
    resize: vertical;
    min-height: 150px;
    padding-top: 22px;
}

.contact-section .contact-form-box form .cf-field .cf-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #AAAAAA;
    pointer-events: none;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, background 0.2s ease;
    background: transparent;
    padding: 0 4px;
    line-height: 1;
}

.contact-section .contact-form-box form .cf-field:has(.cf-textarea) .cf-label {
    top: 20px;
    transform: none;
}

.contact-section .contact-form-box form .cf-field .cf-input:focus~.cf-label,
.contact-section .contact-form-box form .cf-field .cf-input:not(:placeholder-shown)~.cf-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 11px;
    color: #0059FF;
    background: #fff;
    padding: 0 4px;
}

.contact-section .contact-form-box form .cf-field:has(.cf-textarea) .cf-input:focus~.cf-label,
.contact-section .contact-form-box form .cf-field:has(.cf-textarea) .cf-input:not(:placeholder-shown)~.cf-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 11px;
    color: #0059FF;
    background: #fff;
}

.contact-section .contact-form-box form .contact-form-btn {
    background: #0F0F0F;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-section .contact-form-box form .contact-form-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ============================================================
       CTA SECTION
    ============================================================ */
.contact-cta {
    padding: 40px 0 70px;
}

.contact-cta .contact-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.contact-cta .contact-cta__inner .contact-cta__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: #0F0F0F;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-cta .contact-cta__inner .contact-cta__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #888;
    margin: 0;
}

.contact-cta .contact-cta__inner .contact-cta__btn {
    display: inline-block;
    margin-top: 8px;
    background: #0F0F0F;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-cta .contact-cta__inner .contact-cta__btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 991px) {
    .contact-section .contact-info-box {
        padding: 32px 24px;
    }

    .contact-section .contact-form-box {
        padding: 0px 24px;
    }

    .contact-section .contact-info-box .contact-info-box__title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 0 0 24px;
    }

    .contact-section .contact-info-box {
        padding: 24px 18px;
    }

    .contact-section .contact-form-box {
        padding: 0px 18px;
    }

    .contact-section .contact-info-box .contact-info-box__title {
        font-size: 22px;
    }

    .contact-section .contact-form-box form .cf-field .cf-input {
        font-size: 13px;
    }

    .contact-cta {
        padding: 40px 0 70px;
    }
}

/* =========================================== Career page styles ======================================= */
.career-hero {
    padding: 100px 0 10px;
}

.career-hero .career-hero__img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.career-hero .career-hero__img-wrap .career-hero__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* ============================================================
       BREADCRUMB
    ============================================================ */
.career-breadcrumb {
    padding: 12px 0 32px;
}

.career-breadcrumb .career-breadcrumb__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.career-breadcrumb .career-breadcrumb__nav .career-breadcrumb__link {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.career-breadcrumb .career-breadcrumb__nav .career-breadcrumb__link:hover {
    opacity: 0.75;
}

.career-breadcrumb .career-breadcrumb__nav .career-breadcrumb__sep {
    color: #0059FF;
}

.career-breadcrumb .career-breadcrumb__nav .career-breadcrumb__current {
    color: #0059FF;
}

/* ============================================================
       OUR CULTURE & VALUES
    ============================================================ */
.career-culture {
    padding: 40px 0 60px;
}

.career-culture .career-culture__title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0F0F0F;
    text-align: center;
    margin-bottom: 25px;
}

.career-culture .career-culture__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.career-culture .career-culture__grid .career-culture__card {
    border: 2px solid #0059FF;
    border-radius: 16px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.2s ease;
}

.career-culture .career-culture__grid .career-culture__card:hover {
    box-shadow: 0 4px 24px rgba(0, 89, 255, 0.1);
}

.career-culture .career-culture__grid .career-culture__card .career-culture__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-culture .career-culture__grid .career-culture__card .career-culture__icon-wrap img {
    display: block;
    object-fit: contain;
}

.career-culture .career-culture__grid .career-culture__card .career-culture__label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0F0F0F;
    text-align: center;
}

/* ============================================================
       OPEN ROLES
    ============================================================ */
.career-roles {
    padding: 20px 0 60px;
}

.career-roles .career-roles__title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0F0F0F;
    text-align: center;
    margin-bottom: 32px;
}

.career-roles .career-roles__card {
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #0059FF0D;
    border: 2px solid #0059FF0D;
    box-shadow: 0px 4px 4px 0px #55041340;
}

.career-roles .career-roles__card:hover {
    border: 2px solid #0059FF
}

.career-roles .career-roles__card .career-roles__card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F0F0F;
    margin: 0;
}

.career-roles .career-roles__card .career-roles__card-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.career-roles .career-roles__card .career-roles__card-location i {
    color: #0059FF;
    font-size: 14px;
}

.career-roles .career-roles__card .career-roles__card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.career-roles .career-roles__card .career-roles__card-btn {
    display: inline-block;
    background: #0059FF;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 15px;
    text-align: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-top: 6px;
    border: 2px solid #0059FF;
}

.career-roles .career-roles__card .career-roles__card-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

/* ============================================================
       JOB DESCRIPTION
    ============================================================ */
.career-jd {
    padding: 20px 0 10px;
}

.career-jd .career-jd__heading {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0F0F0F;
    margin: 0;
    position: sticky;
    top: 100px;
}

/* Accordion */
.career-jd .career-jd__accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.career-jd .career-jd__accordion .career-jd__item {
    border-bottom: 1px solid #E0E0E0;
}

.career-jd .career-jd__accordion .career-jd__item .career-jd__question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0F0F0F;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.career-jd .career-jd__accordion .career-jd__item .career-jd__question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.career-jd .career-jd__accordion .career-jd__item .career-jd__question[aria-expanded="true"] {
    color: #0059FF;
}

.career-jd .career-jd__accordion .career-jd__item .career-jd__question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.career-jd .career-jd__accordion .career-jd__item .career-jd__answer {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
    padding: 0 4px 18px;
}

.career-jd .career-jd__accordion .career-jd__item .career-jd__answer ul {
    padding-left: 18px;
    margin: 0;
}

.career-jd .career-jd__accordion .career-jd__item .career-jd__answer ul li {
    margin-bottom: 6px;
}

/* Apply Now */
.career-jd .career-jd__apply-wrap {
    display: flex;
    margin-top: 36px;
}

.career-jd .career-jd__apply-wrap .career-jd__apply-btn {
    display: inline-block;
    background: #0059FF;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 48px;
    border-radius: 20px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.career-jd .career-jd__apply-wrap .career-jd__apply-btn:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #0059FF;
    transform: translateY(-1px);
}

/* ============================================================
       CTA (reused from contact page)
    ============================================================ */
.contact-cta {
    padding: 80px 0 100px;
}

.contact-cta .contact-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.contact-cta .contact-cta__inner .contact-cta__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: #0F0F0F;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-cta .contact-cta__inner .contact-cta__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #888;
    margin: 0;
}

.contact-cta .contact-cta__inner .contact-cta__btn {
    display: inline-block;
    margin-top: 8px;
    background: #0F0F0F;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-cta .contact-cta__inner .contact-cta__btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* ============================================================
       RESPONSIVE — 1200px
    ============================================================ */
@media (max-width: 1200px) {
    .career-culture .career-culture__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .career-culture .career-culture__title,
    .career-roles .career-roles__title {
        font-size: 26px;
    }

    .contact-cta .contact-cta__inner .contact-cta__title {
        font-size: 52px;
    }
}

/* ============================================================
       RESPONSIVE — 1024px
    ============================================================ */
@media (max-width: 1024px) {
    .career-culture .career-culture__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .career-culture .career-culture__grid .career-culture__card {
        padding: 24px 14px;
    }

    .career-roles .career-roles__card {
        padding: 22px 18px;
    }

    .career-jd .career-jd__heading {
        font-size: 28px;
    }

    .contact-cta .contact-cta__inner .contact-cta__title {
        font-size: 46px;
    }
}

/* ============================================================
       RESPONSIVE — 991px
    ============================================================ */
@media (max-width: 991px) {
    .career-culture .career-culture__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .career-culture .career-culture__title,
    .career-roles .career-roles__title {
        font-size: 24px;
    }

    .career-jd .career-jd__heading {
        position: static;
        font-size: 26px;
        margin-bottom: 24px;
    }

    .career-roles .career-roles__card {
        padding: 22px 18px;
    }

    .contact-cta {
        padding: 60px 0 80px;
    }

    .contact-cta .contact-cta__inner .contact-cta__title {
        font-size: 40px;
    }
}

/* ============================================================
       RESPONSIVE — 767px
    ============================================================ */
@media (max-width: 767px) {
    .career-hero {
        padding: 80px 0 10px;
    }

    .career-breadcrumb {
        padding: 10px 0 24px;
    }

    .career-culture {
        padding: 30px 0 40px;
    }

    .career-culture .career-culture__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .career-culture .career-culture__title,
    .career-roles .career-roles__title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .career-culture .career-culture__grid .career-culture__card {
        padding: 20px 12px;
    }

    .career-culture .career-culture__grid .career-culture__card .career-culture__label {
        font-size: 14px;
    }

    .career-roles {
        padding: 10px 0 40px;
    }

    .career-jd {
        padding: 10px 0 10px;
    }

    .career-jd .career-jd__heading {
        font-size: 20px;
    }

    .career-jd .career-jd__accordion .career-jd__item .career-jd__question {
        font-size: 14px;
        padding: 15px 4px;
    }

    .contact-cta {
        padding: 50px 0 60px;
    }

    .contact-cta .contact-cta__inner .contact-cta__title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .contact-cta .contact-cta__inner .contact-cta__subtitle {
        font-size: 14px;
    }
}

/* ============================================================
       RESPONSIVE — 480px
    ============================================================ */
@media (max-width: 480px) {
    .career-hero {
        padding: 80px 0 10px;
    }

    .career-culture .career-culture__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .career-culture .career-culture__grid .career-culture__card {
        padding: 16px 10px;
        gap: 10px;
    }

    .career-culture .career-culture__grid .career-culture__card .career-culture__icon-wrap img {
        width: 60px;
        height: 60px;
    }

    .career-culture .career-culture__grid .career-culture__card .career-culture__label {
        font-size: 12px;
    }

    .career-culture .career-culture__title,
    .career-roles .career-roles__title {
        font-size: 20px;
    }

    .career-roles .career-roles__card {
        padding: 18px 14px;
    }

    .career-roles .career-roles__card .career-roles__card-title {
        font-size: 16px;
    }

    .career-roles .career-roles__card .career-roles__card-desc {
        font-size: 12px;
    }

    .career-roles .career-roles__card .career-roles__card-btn {
        font-size: 12px;
        padding: 9px 16px;
    }

    .career-jd .career-jd__heading {
        font-size: 18px;
    }

    .career-jd .career-jd__accordion .career-jd__item .career-jd__question {
        font-size: 13px;
        padding: 13px 4px;
    }

    .career-jd .career-jd__accordion .career-jd__item .career-jd__answer {
        font-size: 13px;
    }

    .career-jd .career-jd__apply-wrap .career-jd__apply-btn {
        font-size: 14px;
        padding: 12px 36px;
    }

    .contact-cta {
        padding: 40px 0 50px;
    }

    .contact-cta .contact-cta__inner .contact-cta__title {
        font-size: 28px;
        letter-spacing: 0;
    }

    .contact-cta .contact-cta__inner .contact-cta__subtitle {
        font-size: 13px;
    }

    .contact-cta .contact-cta__inner .contact-cta__btn {
        font-size: 14px;
        padding: 12px 32px;
    }
}

.refund-section {
    padding: 48px 0 40px;
}

/* Page Title */
.refund-section .refund-section__wrap .refund-section__page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Valid Date */
.refund-section .refund-section__wrap .refund-section__valid-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0059FF;
    margin-bottom: 12px;
}

/* Intro */
.refund-section .refund-section__wrap .refund-section__intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Each Block */
.refund-section .refund-section__wrap .refund-section__block {
    margin-bottom: 28px;
}

/* Section Heading */
.refund-section .refund-section__wrap .refund-section__block .refund-section__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0059FF;
    margin-bottom: 10px;
}

/* List */
.refund-section .refund-section__wrap .refund-section__block .refund-section__list {
    margin: 0;
    list-style: disc;
}

.refund-section .refund-section__wrap .refund-section__block .refund-section__list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 4px;
}

/* Note (partial funds indented paragraph) */
.refund-section .refund-section__wrap .refund-section__block .refund-section__note {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    margin: 10px 0 0 20px;
}

/* Email Links */
.refund-section .refund-section__wrap .refund-section__block .refund-section__list li .refund-section__link {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.refund-section .refund-section__wrap .refund-section__block .refund-section__list li .refund-section__link:hover {
    color: #0059FF;
}

/* ============================================================
       FAQ
    ============================================================ */
.faq-section--page {
    padding: 5px 0;
}

.faq-section--page .faq-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    color: #000000;
    margin-bottom: 10px;
}

.faq-section--page .faq-section__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-medium);
    color: #000000;
    max-width: 500px;
    margin: 0 auto 24px;
    align-items: center;
}

.faq-section--page .faq-section__list {
    max-width: 680px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section--page .faq-section__list .faq-section__item {
    /* background-color: #ffffff; */
    /* border-radius: 47px; */
    margin-bottom: 16px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 80, 0.3);

}

.faq-section--page .faq-section__list .faq-section__item .faq-section__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: none;
    outline: none;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: #000000;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    border-radius: 47px 47px 0 0;
}

.faq-section--page .faq-section__list .faq-section__question.collapsed {
    border-radius: 47px !important
}

.faq-section--page .faq-section__list .faq-section__item .collapse.show {
    background: #FFF;
}

.faq-section--page .faq-section__list .faq-section__item .faq-section__question .bi-chevron-down {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.faq-section--page .faq-section__list .faq-section__item .faq-section__question[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.faq-section--page .faq-section__list .faq-section__item .faq-section__answer {
    padding: 5px 0 10px 0;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: #000000;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    margin: 0 24px;
}

.faq-section--page .faq-section__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000000;
    font-family: var(--font-body);
    font-size: var(--fs-small);
}

.faq-section--page .faq-section__contact .bi-envelope {
    font-size: 18px;
}

@media (max-width: 768px) {
    .faq-section--page .faq-section__list {
        max-width: 100%;
    }

    .faq-section--page .faq-section__list .faq-section__item {
        border-radius: var(--border-radius-lg);
    }
}

/* faq header  */

.faq-hero {
    padding: 100px 0 10px;
}

.faq-hero__banner {
    background-image: url('../images/contact-us-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 320px;
    border-radius: 24px;

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

    padding: 40px 60px;
}

.faq-hero__content {
    max-width: 500px;
}

.faq-hero__title {
    font-family: var(--font-body);
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.faq-hero__image {
    max-width: 450px;
}

.faq-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-hero__banner {
        flex-direction: column;
        text-align: center;
    }

    .faq-hero__img {
        width: 220px;
        max-width: 80%;
        margin: 0 auto;
    }

    .faq-hero__title {
        font-size: 32px;
    }
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1200px) {
    .refund-section .refund-section__wrap .refund-section__page-title {
        font-size: 42px;
    }
}

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

    .refund-section .refund-section__wrap .refund-section__page-title {
        font-size: 38px;
    }

    .refund-section .refund-section__wrap .refund-section__block .refund-section__heading {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .refund-section .refund-section__wrap .refund-section__page-title {
        font-size: 34px;
    }

    .refund-section .refund-section__wrap .refund-section__block .refund-section__heading {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .refund-section {
        padding: 20px 0 20px;
    }

    .refund-section .refund-section__wrap .refund-section__page-title {
        font-size: 28px;
    }

    .refund-section .refund-section__wrap .refund-section__block .refund-section__heading {
        font-size: 16px;
    }

    .refund-section .refund-section__wrap .refund-section__intro,
    .refund-section .refund-section__wrap .refund-section__block .refund-section__list li,
    .refund-section .refund-section__wrap .refund-section__block .refund-section__note {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .refund-section {
        padding: 20px 0 10px;
    }

    .refund-section .refund-section__wrap .refund-section__page-title {
        font-size: 24px;
    }

    .refund-section .refund-section__wrap .refund-section__block .refund-section__heading {
        font-size: 15px;
    }

    .refund-section .refund-section__wrap .refund-section__intro,
    .refund-section .refund-section__wrap .refund-section__block .refund-section__list li,
    .refund-section .refund-section__wrap .refund-section__block .refund-section__note {
        font-size: 12px;
    }

    .refund-section .refund-section__wrap .refund-section__block {
        margin-bottom: 20px;
    }
}

/* blog card styles  */

.blog-card {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.blog-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.blog-card__content {
    padding-top: 12px;
}

.blog-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'poppins', sans-serif;
}

.blog-card__desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'montserrat', sans-serif;
}


/* gloabal style  */

.card__btn {
    display: block;
    background: #0d6efd;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    width: 25%;
    margin: 0 auto;
    font-family: var(--font-montserrat);
}

/* Tablet */
@media (max-width: 768px) {
    .card__btn {
        width: 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .card__btn {
        width: 80%;
    }
}

/* =========================================== Single blog page =========================================== */

.single-blog-page__hero .faq-hero__img {
    max-height: 265px;
}

.single-blog-page__breadcrumb {
    padding-bottom: 20px;
}

.single-blog-page {
    padding-bottom: 44px;
}

.single-blog-page__cover {
    width: 100%;
    height: clamp(260px, 38vw, 510px);
    object-fit: cover;
    border-radius: 14px;
}

.single-blog-page__body {
    margin-top: 18px;
}

.single-blog-page__article {
    color: #242424;
    font-size: 15px;
    line-height: 1.75;
}

.single-blog-page__article h2,
.single-blog-page__article h3,
.single-blog-page__article h4 {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
}

.single-blog-page__article h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 10px;
}

.single-blog-page__article h3 {
    font-size: 19px;
    margin: 25px 0 10px;
}

.single-blog-page__article h4 {
    font-size: 16px;
    margin: 20px 0 7px;
}

.single-blog-page__article p {
    margin-bottom: 16px;
}

.single-blog-page__article ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.single-blog-page__article li {
    margin-bottom: 4px;
}

.single-blog-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 20px;
}

.single-blog-page__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-blog-page__form {
    padding: 22px;
    background: #dce6ff;
    border-radius: 10px;
}

.single-blog-page__form label {
    display: block;
    font-size: 12px;
    font-weight: var(--fw-medium);
    margin-bottom: 5px;
}

.single-blog-page__form input,
.single-blog-page__form textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #cbd5eb;
    border-radius: 5px;
    background: #ffffff;
    font: 13px var(--font-body);
    outline: none;
    margin-bottom: 12px;
}

.single-blog-page__form input:focus,
.single-blog-page__form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 89, 255, 0.08);
}

.single-blog-page__form textarea {
    resize: vertical;
}

.single-blog-page__form button,
.single-blog-page__side-card a,
.single-blog-page__related-card a {
    display: block;
    width: 100%;
    padding: 9px 18px;
    border: 0;
    border-radius: var(--border-radius-pill);
    background: var(--primary);
    color: #ffffff;
    font: 600 13px var(--font-body);
    text-align: center;
}

.single-blog-page__side-card {
    margin-top: 24px;
    padding: 9px;
    border: 2px solid var(--primary);
    background: #ffffff;
}

.single-blog-page__side-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.single-blog-page__side-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    line-height: 1.35;
    margin: 10px 0 5px;
}

.single-blog-page__side-card p {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.single-blog-page__share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 38px;
    text-align: center;
}

.single-blog-page__socials {
    display: flex;
    gap: 14px;
}

.single-blog-page__socials a {
    font-size: 20px;
}

.single-blog-page__related {
    padding: 34px 0 60px;
    background: #f8f9ff;
}

.single-blog-page__related > .container > h2 {
    font-size: clamp(32px, 4vw, 44px);
    text-align: center;
    margin-bottom: 28px;
}

.single-blog-page__related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.single-blog-page__related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.single-blog-page__related-card h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--fw-semibold);
    margin: 12px 0 7px;
}

.single-blog-page__related-card p {
    flex: 1;
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 575px) {
    .single-blog-page__cover {
        height: 225px;
    }

    .single-blog-page__article {
        font-size: 14px;
    }

    .single-blog-page__form {
        padding: 18px;
    }
}

.card__btn:hover {
    color: var(--text-muted);
}

.common_banner {
    background-image: url('../images/contact-us-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 320px;
    border-radius: 24px;
    align-items: center;
    padding: 40px 60px;
}


/* DATA OF REFERRAL PROGRAM  */
.stats-box {
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 3rem 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.stat-item h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.stat-item p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}


/* common white background styles for faq and career pages  */
.faq-commonlist {
    max-width: 680px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-commsectionlist {
    max-width: 680px;
    margin: 0 auto 12px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-commonAnswer {
    padding: 5px 0 10px 0;
    font-family: var(--font-body);
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    margin: 0 24px;
}

.faq-commquestion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: none;
    outline: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: var(--fw-medium);
    color: #000000;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    border-radius: 47px;
}


/* ways to refer section  */
.referral-ways {
    background: #F1F3FF;
}

.referral-image {
    width: 100%;
    border-radius: 12px;
    height: 450px;
}

.referral-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #0059FF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.referral-item h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.referral-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}
