:root {
    --extra-light-purple: #efc2e9;
    --light-purple: #d362c7;
    --dark-purple: #9e4895;
    --slate-gray: #535353;
    --black: #1D2124;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--slate-gray);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    position: relative;
}

p {
    font-size: 16px;
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

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

button {
    border: none;
    background: none;
    outline: none;
}

input, 
textarea, 
select {
    outline: none;
    border: 1px solid var(--slate-gray);
    font-family: inherit;
    font-size: 16px;
}

input::placeholder,
textarea::placeholder {
    color: var(--slate-gray);
    opacity: 0.7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--slate-gray);
    opacity: 0.7;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--slate-gray);
    opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 64px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

.fullwidth-container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    width: 100%;
    max-width: 1380px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.small-container {
    width: 100%;
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.btn,
.border-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 28px;
    font-weight: 500;
}

.btn {
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    border: none;
}

.btn:hover {
    opacity: 0.9;
}

.border-btn {
    background: none;
    color: var(--slate-gray);
    border: 1px solid var(--slate-gray);
}

.border-btn:hover {
    border-color: var(--dark-purple);
    background-color: transparent;
    color: var(--dark-purple);
}

.d-none {
    display: none !important;
}

main {
    min-height: 50vh;
}

/* ==========================================================================
   Header Section (Fixed Sticky on Every Page)
   ========================================================================== */
.site-header {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 14px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

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

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--slate-gray);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-purple);
}

.header-action .btn,
.mobile-nav-btn .btn {
    padding: 12px 28px;
    font-weight: 600;
    gap: 8px;
}

.menu-toggle,
.close-menu-btn,
.mobile-menu-header,
.mobile-nav-btn,
.menu-overlay {
    display: none;
}


/* ==========================================================================
   Header Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .header-action {
        display: none;
    }
    .logo img {
        height: 70px;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 19px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--black);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1002;
        padding: 24px;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #c0c0c0;
    }

    .mobile-menu-header .logo img {
        height: 38px;
    }

    .close-menu-btn {
        font-size: 32px;
        line-height: 1;
        color: var(--black);
        cursor: pointer;
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .mobile-nav-btn {
        display: block;
        margin-top: auto;
        padding-top: 20px;
    }

    .mobile-nav-btn .btn {
        width: 100%;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}




/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slider .slick-list,
.hero-bg-slider .slick-track {
    height: 100%;
}

.hero-bg-slide {
    height: 100%;
    background-size: cover !important;
    background-position: 50% 30% !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(239 194 233 / 100%) 0%, rgb(239 194 233 / 68%), rgb(253 251 253 / 55%) 60%, rgba(253, 251, 253, 0.0) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(211, 98, 199, 0.4);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    font-size: 13px;
    font-weight: 500;
    color: var(--light-purple);
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--light-purple);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title .italic-purple {
    font-style: italic;
    color: var(--dark-purple);
}
.purple-text {
    color: var(--dark-purple);
}
.italic {
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 36px;
    max-width: 560px;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.5), 0 0 35px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

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

.btn-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon,
.border-btn:hover .btn-icon,
.hero-btn-group .btn:hover .btn-icon,
.hero-btn-group .border-btn:hover .btn-icon,
.about-banner-btns .btn:hover .btn-icon,
.about-banner-btns .border-btn:hover .btn-icon {
    transform: translateX(4px);
}

.hero-btn-group .btn,
.hero-btn-group .border-btn {
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
}

.hero-btn-group .border-btn {
    border-color: var(--black);
    color: var(--black);
}

.hero-btn-group .border-btn:hover {
    border-color: var(--black);
    background-color: var(--black);
    color: #ffffff;
}

/* ==========================================================================
   Hero Section Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg, 
            rgba(253, 251, 253, 0.98) 0%, 
            rgba(253, 251, 253, 0.85) 60%, 
            rgba(253, 251, 253, 0.30) 100%
        );
    }

    .hero-content {
        max-width: 520px;
    }

    .hero-title {
        font-size: 44px;
    }
}

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

    .hero-bg-slide {
        background-position: center;
    }

    .hero-overlay {
        background: rgb(239 194 233 / 85%);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-btn-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-btn-group .btn,
    .hero-btn-group .border-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    background-color: #f7f6f8;
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px;
    border: 2px solid rgba(211, 98, 199, 0.25);
    box-shadow: 0 0 20px 4px rgba(211, 98, 199, 0.15),
                inset 0 0 10px rgba(211, 98, 199, 0.08);
}

.feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-title .italic-text {
    font-style: italic;
}

.feature-description {
    font-size: 15px;
    line-height: 1.55;
    color: var(--slate-gray);
    margin-bottom: 0;
}

/* ==========================================================================
   Features Responsive Breakpoints
   ========================================================================== */

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

    .features-grid {
        gap: 25px;
    }

    .feature-icon-wrapper {
        width: 85px;
        height: 85px;
        padding: 10px;
    }

    .feature-title {
        font-size: 19px;
    }

    .feature-description {
        font-size: 14px;
    }
}

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

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

    .feature-card {
        gap: 16px;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .feature-title {
        font-size: 20px;
    }
}


/* ==========================================================================
   About Maruti Pharma Section
   ========================================================================== */
.about-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 36px;
}

.about-content .sub-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.about-content .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-content .section-title .italic-purple {
    font-style: italic;
    color: var(--dark-purple);
}

.description-paragraph {
    font-size: 15px;
    line-height: 1.65;
    color: var(--slate-gray);
    margin-bottom: 20px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 36px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fdf2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon {
    width: 22px;
    height: 22px;
    stroke: #c55eb2;
}

.about-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.3;
}

.about-feature-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--slate-gray);
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

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

    .about-grid {
        gap: 40px;
    }

    .about-content .section-title {
        font-size: 34px;
    }

    .about-features-grid {
        gap: 20px;
        margin-top: 28px;
    }
}

@media (max-width: 868px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image-wrapper {
        border-radius: 28px;
    }

    .about-img {
        border-radius: 28px;
    }

    .about-content .section-title {
        font-size: 30px;
    }

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

@media (max-width: 480px) {
    .about-section {
        padding: 45px 0;
    }

    .about-content .section-title {
        font-size: 26px;
    }

    .description-paragraph {
        font-size: 14px;
    }
}


/* ==========================================================================
   Strategic Divisions Section
   ========================================================================== */
.divisions-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.section-header {
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-header .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.section-header .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-header .section-title .italic-purple {
    font-style: italic;
    color: var(--dark-purple);
}

.section-header .section-description {
    font-size: 15px;
    color: var(--slate-gray);
    line-height: 1.5;
    margin-bottom: 0;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.division-card {
    border: 1px solid #e0e0e0;
    border-radius: 28px;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.division-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.division-banner {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.division-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.division-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.banner-title {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 4px;
}

.banner-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--slate-gray);
    margin-bottom: 24px;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--light-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.explore-link .link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.explore-link:hover {
    color: var(--dark-purple);
}

.explore-link:hover .link-icon {
    transform: translateX(5px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

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

    .section-header .section-title {
        font-size: 36px;
    }

    .divisions-grid {
        gap: 20px;
    }

    .division-banner {
        height: 220px;
        padding: 20px;
    }

    .card-body {
        padding: 22px 20px;
    }
}

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

    .section-header {
        margin-bottom: 32px;
    }

    .section-header .section-title {
        font-size: 32px;
    }

    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .division-banner {
        height: 200px;
    }
}


/* ==========================================================================
   Mission & Vision Section
   ========================================================================== */
.mission-vision-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mv-card {
    background-color: #fff3fa;
    border: 1px solid #faeaf4;
    border-radius: 36px;
    padding: 48px 44px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(211, 98, 199, 0.08);
}

.mv-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fbe6f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-icon-badge svg {
    width: 28px;
    height: 28px;
    stroke: var(--light-purple);
}
.mv-icon-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.mv-content {
    flex: 1;
}

.mv-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.mv-title .italic-text {
    font-style: italic;
}

.mv-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-gray);
    margin-bottom: 20px;
}

.mv-text:last-child {
    margin-bottom: 0;
}

.mv-bullet-list {
    margin: 16px 0 0 0;
    padding-left: 20px;
    list-style-type: disc;
}

.mv-bullet-list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-gray);
    margin-bottom: 10px;
}

.mv-bullet-list li:last-child {
    margin-bottom: 0;
}

.mv-bullet-list li::marker {
    color: var(--slate-gray);
    font-size: 0.9em;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mv-grid {
        gap: 24px;
    }

    .mv-card {
        padding: 36px 30px;
        border-radius: 28px;
        gap: 18px;
    }

    .mv-icon-badge {
        width: 54px;
        height: 54px;
    }

    .mv-icon-badge svg {
        width: 24px;
        height: 24px;
    }

    .mv-title {
        font-size: 24px;
    }

    .mv-text,
    .mv-bullet-list li {
        font-size: 15px;
    }
}

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

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-card {
        flex-direction: column;
        padding: 30px 24px;
        border-radius: 24px;
        gap: 16px;
    }

    .mv-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
}


/* ==========================================================================
   History Timeline Section
   ========================================================================== */
.timeline-section {
    padding: 80px 0;
    background-color: #fff3fa;
}

.timeline-wrapper {
    position: relative;
    margin: 60px 0 0px 0;
}

.timeline-line {
    position: absolute;
    top: 26px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f3d1ee;
    z-index: 1;
}

.timeline-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}
.timeline-grid.timeline-slider {
    display: block;
    min-width: auto !important;
    overflow: visible !important;
}
.timeline-wrapper:has(.timeline-slider) {
    overflow: visible !important;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.timeline-grid.timeline-slider .timeline-item {
    display: flex;
    padding: 10px 0;
    position: relative;
}
.about-timeline .timeline-line {
    top: 36px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
}

.timeline-badge-wrapper {
    background-color: transparent;
    padding: 0 4px;
    margin-bottom: 20px;
}

.timeline-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
    border: 4px solid #fbeaf7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px #e597da;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-badge {
    transform: scale(1.1);
    background-color: var(--dark-purple);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
    line-height: 1.2;
}

.timeline-date {
    font-size: 13px;
    color: var(--slate-gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.timeline-desc {
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--slate-gray);
    margin-bottom: 0;
    max-width: 160px;
}

.timeline-action {
    margin-top: 20px;
}

.timeline-action .btn {
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
}

.timeline-action .btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.timeline-action .btn:hover .btn-icon {
    transform: translateX(4px);
}

.about-timeline .timeline-grid .slick-prev,
.about-timeline .timeline-grid .slick-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--dark-purple);
    color: #ffffff;
    border: none;
    position: absolute;
    top: 36px;
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0;
}

.about-timeline .timeline-grid .slick-prev {
    left: -10px;
}

.about-timeline .timeline-grid .slick-next {
    right: -10px;
}

.about-timeline .timeline-grid .slick-prev:hover,
.about-timeline .timeline-grid .slick-next:hover {
    background-color: var(--light-purple);
}

.about-timeline .timeline-grid .slick-prev::before {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    display: none;
    margin-left: 3px;
}
.about-timeline .timeline-grid .slick-arrow svg {
    width: 24px;
    height: 24px;
}

.about-timeline .timeline-grid .slick-next::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    transform: rotate(45deg);
    display: block;
    margin-right: 3px;
    display: none;
}
.slick-arrow.slick-disabled {
    opacity: 0.5;
}
/*.timeline-grid.timeline-slider .timeline-item.slick-active.first-active .timeline-badge-wrapper::after {
    content: "";
    position: absolute;
    background: rgb(255 243 250);
    height: 52px;
    width: 50%;
    top: 10px;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.timeline-grid.timeline-slider .timeline-item.slick-active.last-active .timeline-badge-wrapper::after {
    content: "";
    position: absolute;
    background: rgb(255 243 250);
    height: 52px;
    width: 50%;
    top: 10px;
    right: 0;
    z-index: -1;
    pointer-events: none;
}*/

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1200px) {
    .timeline-grid {
        gap: 10px;
    }

    .timeline-desc {
        font-size: 12.5px;
    }
}

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

    .timeline-wrapper {
        margin: 40px 0 0px 0;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .timeline-grid {
        min-width: 850px;
    }
}

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

    .timeline-wrapper {
        margin: 30px 0 0;
        overflow-x: auto;
        max-width: 100%;
    }

    .timeline-line {
        top: 0;
        left: 25px;
        width: 2px;
        height: 100%;
    }

    .about-timeline:has(.timeline-slider) .timeline-line {
        width: 100%;
        height: 2px;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        min-width: auto;
        gap: 30px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
    .timeline-grid.timeline-slider .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .timeline-grid.timeline-slider .timeline-content {
        align-items: center;
    }

    .timeline-badge-wrapper {
        padding: 0;
        margin-bottom: 0;
    }

    .timeline-content {
        align-items: flex-start;
    }

    .timeline-desc {
        max-width: 100%;
    }
}


/* ==========================================================================
   Events Section
   ========================================================================== */
.events-section {
    padding: 80px 0;
    background-color: #fff8fe;
    overflow: hidden;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.events-header .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray, #6b7280);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.events-header .section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--black, #111827);
    line-height: 1.2;
    margin-bottom: 12px;
}

.events-header .section-title .italic-purple {
    font-style: italic;
    color: var(--dark-purple);
}

.events-header .section-description {
    font-size: 15px;
    color: var(--slate-gray, #6b7280);
    margin-bottom: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid #111827;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-btn .btn-arrow {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    border-color: var(--dark-purple);
    background-color: transparent;
    color: var(--dark-purple);
}

.view-all-btn:hover .btn-arrow {
    transform: translateX(4px);
}


.main-page-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  padding-top: 108px;
}

.events-slider-wrapper {
    position: relative;
    padding-left: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.events-slider-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 50vw;
    background: #ffffff;
    z-index: 1;
    pointer-events: none;
}

.events-slick-slider .slider-item {
    padding-right: 28px;
}

.events-slick-slider .slick-list {
    overflow: visible;
    padding-right: 12%;
}

.events-slick-slider .slick-track {
    display: flex !important;
}

.event-card {
    background-color: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.event-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.35;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.event-location .pin-icon {
    width: 14px;
    height: 14px;
    stroke: #9ca3af;
}

.event-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--slate-gray, #6b7280);
    margin-bottom: 0;
}


.events-slider-wrapper .slick-prev {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e597da;
    z-index: 20;
    box-shadow: 0 4px 14px rgba(229, 151, 218, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    font-size: 0;
    cursor: pointer;
}

.events-slider-wrapper .slick-prev:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2.5px solid #ffffff;
    border-left: 2.5px solid #ffffff;
    transform: rotate(-45deg);
    margin: 0 auto;
    opacity: 1;
}

.events-slider-wrapper .slick-prev:hover {
    background-color: var(--dark-purple, #9d3f8c);
    transform: translateY(-50%) scale(1.08);
}

.events-slider-wrapper .slick-next {
    display: none !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1280px) {
    .events-slider-wrapper {
        padding-left: 0px;
    }

    /*.events-slider-wrapper .slick-prev {
        left: 10px;
    }*/
}

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

    .events-header .section-title {
        font-size: 34px;
    }

    .events-slider-wrapper {
        padding-left: 0px;
    }

    .events-slick-slider .slider-item {
        padding-right: 20px;
    }

    .event-image {
        height: 200px;
    }

    .event-body {
        padding: 20px 18px;
    }

    .events-slider-wrapper .slick-prev {
        width: 32px;
        height: 32px;
        left: -12px;

    }
}

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

    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
    }

    .events-header .section-title {
        font-size: 30px;
    }

    .events-slider-wrapper {
        padding-left: 0px;
    }

    .events-slick-slider .slider-item {
        padding-right: 14px;
    }

    /*.events-slider-wrapper .slick-prev {
        display: none !important;
    }*/
}


/* ==========================================================================
   Career CTA Banner Section
   ========================================================================== */
.career-cta-section {
    position: relative;
    padding: 70px 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #b065b2;
    overflow: hidden;
}

.career-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(176, 101, 178, 0.95);
    z-index: 1;
}

.career-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.career-cta-text {
    max-width: 650px;
}

.career-title {
    font-size: 46px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.career-description {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    font-weight: 400;
}

.career-cta-action {
    flex-shrink: 0;
}

.career-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.career-btn .btn-arrow {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    transition: transform 0.3s ease;
}

.career-btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.career-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .career-cta-section {
        padding: 55px 0;
    }

    .career-title {
        font-size: 38px;
    }

    .career-description {
        font-size: 15px;
    }

    .career-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .career-cta-section {
        padding: 45px 0;
    }

    .career-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .career-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .career-description {
        font-size: 15px;
    }

    .career-btn {
        padding: 13px 28px;
        font-size: 14px;
    }
}


/* ==========================================================================
   Testimonials / Client Reviews Section
   ========================================================================== */
.testimonials-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.testimonials-header .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    margin-bottom: 8px;
}

.testimonials-header .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 12px;
}

.testimonials-header .section-title .italic-purple {
    font-style: italic;
    color: var(--dark-purple);
}

.testimonials-header .section-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 0;
}

.testimonials-slick-slider {
    margin: 0 -14px;
}

.testimonial-slide {
    padding: 10px 14px;
    outline: none;
}

.testimonial-card {
    background-color: #fff3fa;
    border-radius: 36px;
    padding: 36px 32px;
    border: 1.5px solid transparent; 
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-slide:first-child .testimonial-card,
.testimonial-card:hover {
    border-color: #e384ce;
}
.testimonial-slide.slick-current.slick-active .testimonial-card {
    border-color: #e384ce;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: #d880cb;
    flex-shrink: 0;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 32px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #d1d5db;
    flex-shrink: 0;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.author-title {
    font-size: 13px;
    color: #6b7280;
    display: block;
}

.testimonials-slick-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.testimonials-slick-slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.testimonials-slick-slider .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #f0c3e6;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.testimonials-slick-slider .slick-dots li.slick-active button {
    width: 36px;
    border-radius: 12px;
    background-color: #c855b5;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

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

    .testimonials-header .section-title {
        font-size: 34px;
    }

    .testimonial-card {
        padding: 28px 24px;
        border-radius: 28px;
    }
}

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

    .testimonials-header {
        margin-bottom: 32px;
    }

    .testimonials-header .section-title {
        font-size: 28px;
    }

    .testimonials-header .section-description {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 24px;
    }
}


/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    position: relative;
    padding: 60px 0;
    background-color: #fff3fa;
    overflow: hidden;
    border-top: none;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text {
    max-width: 540px;
}

.newsletter-text .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray, #6b7280);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-title {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 12px;
}

.newsletter-title .italic-purple {
    font-style: italic;
    color: var(--dark-purple);
}

.newsletter-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 0;
}

.newsletter-form-wrapper {
    flex-grow: 1;
    max-width: 520px;
}

.newsletter-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: #c55eb2;
    box-shadow: 0 4px 20px rgba(197, 94, 178, 0.15);
}

.mail-icon {
    width: 20px;
    height: 20px;
    stroke: #9ca3af;
    flex-shrink: 0;
    margin-right: 12px;
}

.email-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #111827;
}

.email-input::placeholder {
    color: #9ca3af;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s ease;
}

.subscribe-btn .btn-arrow {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    transition: transform 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #a84196;
    opacity: 0.9;
}

.subscribe-btn:hover .btn-arrow {
    transform: translate(2px, -2px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

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

    .newsletter-title {
        font-size: 34px;
    }

    .newsletter-form-wrapper {
        max-width: 440px;
    }
}

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

    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .newsletter-text {
        max-width: 100%;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 20px;
        gap: 12px;
    }

    .mail-icon {
        display: none;
    }

    .email-input {
        padding: 8px 4px;
        text-align: center;
    }

    .subscribe-btn {
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
    }
}


/* ==========================================================================
   Full-Width Video Section
   ========================================================================== */
.fullwidth-video-section {
    position: relative;
    width: 100%;
    height: 70vh; 
    min-height: 450px;
    background-color: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullwidth-video-section video,
.fullwidth-video-section iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

.fullwidth-video-section iframe {
    width: 177.77vh;
    min-width: 100%;
    min-height: 56.25vw;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .fullwidth-video-section {
        height: 50vh;
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .fullwidth-video-section {
        height: 35vh;
        min-height: 250px;
    }
}


/* ==========================================================================
   Career Banner Section - Bottom-Anchored & Left-Extended Breadcrumb
   ========================================================================== */
.cb-banner-section {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #2b0224;
}

.cb-banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cb-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}

.cb-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgb(239 194 233 / 100%) 0%, rgb(239 194 233 / 68%), rgb(253 251 253 / 55%) 60%, rgba(253, 251, 253, 0.0) 100%);
    background-size: unset;
}

.cb-banner-container {
    position: relative;
    z-index: 3;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cb-banner-content {
    max-width: 750px;
    width: 100%;
}

.cb-banner-title {
    font-size: 36px !important;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
    white-space: nowrap !important;
    word-break: keep-all !important;
}

.cb-banner-title .cb-highlight-text {
    color: var(--dark-purple);
    font-size: 38px !important;
    font-weight: 700;
    display: inline !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
}

.cb-title-underline {
    width: 32px;
    height: 3px;
    background-color: var(--dark-purple);
    margin: 14px 0 20px 0;
    border-radius: 2px;
    display: none;
}

.cb-banner-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--black);
    margin: 0;
    font-weight: 500;
    max-width: 560px;
}

.cb-breadcrumb-card {
    position: absolute;
    bottom: 0;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-purple);
    border-top: 1px solid var(--light-purple);
    border-right: 1px solid var(--light-purple);
    border-bottom: none;
    border-left: none;
    border-radius: 0px 12px 0 0;
    
    padding: 10px 24px 10px 0px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4;
        right: 0;
    max-width: 440px;
    width: calc(100% - 20px);
    display: none;
}

.cb-breadcrumb-card::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 0%;
    width: 100vw;
    height: calc(100% + 1px);
    border-radius: 0px 12px 0 0;
    background-color: var(--extra-light-purple);
    border-top: 1px solid var(--light-purple);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: -1;
}

.cb-breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-gray);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
}

.cb-breadcrumb-link:hover {
    opacity: 0.85;
}

.cb-home-icon {
    width: 16px;
    height: 16px;
    fill: var(--slate-gray);
}

.cb-breadcrumb-separator {
    color: var(--slate-gray);
    font-size: 13.5px;
}

.cb-breadcrumb-current {
    color: var(--slate-gray);
    opacity: 0.85;
    font-size: 13.5px;
    font-weight: 400;
}

/* ==========================================================================
   Responsive Adaptation
   ========================================================================== */
@media (max-width: 767px) {
    .cb-banner-container {
        padding-top: 30px;
        padding-bottom: 30px;
        min-height: 400px;
    }
    .cb-banner-overlay {
        background: rgb(239 194 233 / 85%);
    }

    .cb-banner-title {
        font-size: 32px;
    }

    .cb-banner-title .cb-highlight-text {
        font-size: 36px;
    }

    .cb-breadcrumb-card {
        left: 15px;
        padding: 8px 18px 8px 0px;
        width: calc(100% - 35px);
    }
}


/* ==========================================================================
   WORK CULTURE & BENEFITS SECTION
   ========================================================================== */

.wc-culture-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.wc-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wc-card {
    display: flex;
    align-items: inherit;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #c0c0c0;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wc-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.wc-card-body {
    display: flex;
    align-items: flex-start;
    padding: 32px 36px;
    gap: 48px;
    flex: 1 1 auto;
}

.wc-icon-wrapper {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background-color: #fff3fa;
    border: 1px solid var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.wc-icon-wrapper::after {
    content: "";
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--extra-light-purple);
}

.wc-icon {
    width: 56px;
    height: 56px;
    stroke: var(--dark-purple);
}

.wc-text-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wc-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
    line-height: 1.25;
}

.wc-card-description {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--slate-gray);
    margin: 0;
    max-width: 580px;
}

.wc-card-media {
    width: 380px;
    max-width: 100%;
    min-height: 190px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border-radius: 0 16px 16px 0;
}

.wc-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wc-card-cta .wc-card-description {
    margin-bottom: 8px;
}

.wc-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
}

.wc-btn-arrow {
    width: 15px;
    height: 15px;
    stroke: #ffffff;
    transition: transform 0.2s ease;
}

.wc-apply-btn:hover .wc-btn-arrow {
    transform: translateX(3px);
}

.wc-cta-media {
    position: relative;
}

.wc-cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .wc-card-body {
        padding: 24px 28px;
        gap: 30px;
    }

    .wc-icon-wrapper {
        width: 72px;
        height: 72px;
    }

    .wc-icon-wrapper::after {
        right: -16px;
    }

    .wc-icon {
        width: 30px;
        height: 30px;
    }

    .wc-card-media {
        width: 320px;
        height: 180px;
    }

    .wc-card-title {
        font-size: 18px;
    }

    .wc-card-description {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .wc-culture-section {
        padding: 40px 0;
    }
    .wc-card {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wc-card-media {
        width: 100%;
        height: 220px;
        border-radius: 16px 16px 0 0;
    }

    .wc-cta-gradient-overlay {
        width: 100%;
        height: 35%;
        background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
    }

    .wc-card-body {
        padding: 24px;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .wc-card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .wc-icon-wrapper::after {
        display: none;
    }

    .wc-card-description {
        max-width: 100%;
    }

    .wc-apply-btn {
        align-self: center;
    }

    .wc-card-media {
        height: 180px;
    }
}


/* ==========================================================================
   HR & CONTACT DIRECTORY SECTION
   ========================================================================== */

.hr-contact-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.hr-contact-card {
    background-color: #ffffff;
    border: 1px solid var(--extra-light-purple);
    border-radius: 16px;
    padding: 32px 36px 36px 36px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.hr-header-group {
    text-align: center;
    margin-bottom: 30px;
}

.hr-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0 0 8px 0;
    letter-spacing: -0.2px;
}

.hr-title-underline {
    width: 28px;
    height: 3px;
    background-color: var(--light-purple);
    margin: 0 auto;
    border-radius: 2px;
}

.hr-contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.15fr 1.15fr;
    align-items: center;
}

.hr-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding: 0 16px;
}

.hr-contact-item:first-child {
    padding-left: 0;
}

.hr-contact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background-color: var(--extra-light-purple);
}

.hr-icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #fff3fa;
    border: 1px solid var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.hr-icon {
    width: 24px;
    height: 24px;
    stroke: var(--dark-purple);
}

.hr-info-text {
    display: flex;
    flex-direction: column;
}

.hr-info-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.hr-info-value,
.hr-info-link {
    font-size: 13px;
    line-height: 1.45;
    color: var(--slate-gray);
    margin: 0;
    font-weight: 400;
    text-decoration: none;
}

.hr-info-link {
    transition: color 0.2s ease;
}

.hr-info-link:hover {
    color: var(--dark-purple);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hr-contact-card {
        padding: 28px 24px 30px 24px;
    }

    .hr-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .hr-contact-item {
        padding: 0;
    }

    .hr-contact-item:not(:last-child)::after {
        display: none;
    }

    .hr-contact-item:nth-child(odd)::after {
        display: block;
    }
}

@media (max-width: 767px) {
    .hr-section-title {
        font-size: 20px;
    }

    .hr-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hr-contact-item:not(:last-child)::after {
        display: none;
    }

    .hr-contact-item {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--extra-light-purple);
    }

    .hr-contact-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hr-contact-card {
        padding: 20px 16px;
    }

    .hr-section-title {
        font-size: 18px;
    }

    .hr-icon-badge {
        width: 48px;
        height: 48px;
    }

    .hr-icon {
        width: 20px;
        height: 20px;
    }

    .hr-info-label {
        font-size: 13.5px;
    }

    .hr-info-value,
    .hr-info-link {
        font-size: 12.5px;
    }
}


/* ==========================================================================
   CONTACT HERO / BANNER SECTION
   ========================================================================== */

.cob-banner-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-purple);
}

.cob-banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cob-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.cob-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgb(239 194 233 / 100%) 0%, rgb(239 194 233 / 68%), rgb(253 251 253 / 55%) 60%, rgba(253, 251, 253, 0.0) 100%);
    background-size: unset;
}

.cob-banner-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.cob-banner-content {
    max-width: 420px;
}

.cob-banner-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.cob-banner-title .cb-highlight-text,
.cob-banner-title .italic-purple {
    color: var(--dark-purple);
    font-style: italic;
    font-weight: 700;
}

.cob-banner-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--black);
    margin: 0;
    font-weight: 500;
    max-width: 560px;
}
.cob-banner-section .cb-breadcrumb-card {
    background: none;
    border: none;
    border-radius: 0;
}

.cob-banner-section .cb-breadcrumb-card::before {
    display: none;
}


@media (max-width: 1024px) {
    .cob-banner-section {
        min-height: 350px;
    }

    .cob-banner-title {
        font-size: 36px;
    }

    .cob-banner-content {
        max-width: 380px;
    }
}

@media (max-width: 767px) {
    .cob-banner-section {
        min-height: 320px;
    }

    .cob-banner-overlay {
        background: rgb(239 194 233 / 85%);
    }

    .cob-banner-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .cob-banner-title {
        font-size: 32px;
    }

}

@media (max-width: 480px) {
    .cob-banner-section {
        min-height: 280px;
    }

    .cob-banner-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .cob-banner-description {
        font-size: 13px;
    }

    .cb-breadcrumb-card {
        padding: 8px 14px;
        padding-left: 0;
    }
}


/* ==========================================================================
   OFFICE LOCATIONS & CONTACT FORM SECTION
   ========================================================================== */

.off-section {
    padding: 60px 0 60px;
    background-color: #ffffff;
}

.off-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.off-top-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 36px;
}

.off-heading-group {
    margin-bottom: 20px;
}

.off-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0 0 6px 0;
}

.off-underline {
    width: 24px;
    height: 3px;
    background-color: var(--light-purple);
    border-radius: 2px;
}

.off-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.off-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1px solid var(--extra-light-purple);
    border-radius: 10px;
}
.off-card.active-location-card {
    padding-top: 40px;
}

.off-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.off-icon {
    width: 22px;
    height: 22px;
    stroke: var(--dark-purple);
    color: var(--dark-purple);
}

.off-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.off-card-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
}

.off-card-text {
    font-size: 12px;
    line-height: 1.4;
    color: var(--slate-gray);
    margin: 0;
}

.off-card-phone,
.off-card-link {
    font-size: 12px;
    color: var(--slate-gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.off-phone-icon {
    width: 12px;
    height: 12px;
    stroke: var(--dark-purple);
}

.off-card-link:hover,
.off-card-phone:hover {
    color: var(--dark-purple);
    text-decoration: underline;
}

.off-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.off-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.off-input-group {
    position: relative;
    width: 100%;
}

.off-input,
.off-textarea {
    width: 100%;
    padding: 12px 14px;
    background-color: #fafafa;
    border: 1px solid #c0c0c0;
    border-radius: 6px;
    font-size: 13px;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.off-input::placeholder,
.off-textarea::placeholder {
    color: #888888;
}

.off-input:focus,
.off-textarea:focus {
    background-color: #ffffff;
    border-color: var(--dark-purple);
}

.off-input-icon-group .off-input {
    padding-left: 36px;
}

.off-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: #888888;
    pointer-events: none;
}

.off-textarea {
    resize: none;
    min-height: 110px;
}

.off-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.off-send-icon {
    width: 15px;
    height: 15px;
    stroke: #ffffff;
}

.off-trust-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
    background-color: #fff3fa;
    border: 1px solid var(--extra-light-purple);
    border-radius: 10px;
}

.off-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.off-trust-icon-box {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.off-trust-icon-box svg {
    width: 100%;
    height: 100%;
    stroke: var(--dark-purple);
}

.off-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.off-trust-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
}

.off-trust-desc {
    font-size: 11px;
    line-height: 1.35;
    color: var(--slate-gray);
    margin: 0;
}



@media (max-width: 1024px) {
    .off-top-grid {
        grid-template-columns: 280px 1fr;
        gap: 24px;
    }

    .off-trust-card {
        padding: 16px;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .off-section {
        padding: 40px 0 40px;
    }
    .off-top-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .off-trust-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .off-form-row {
        grid-template-columns: 1fr;
    }

    .off-submit-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
    MAP SECTION
   ========================================================================== */

.off-map-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--extra-light-purple, #f0e6f5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.off-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .off-map-wrapper {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .off-map-wrapper {
        height: 220px;
    }
}


/* ==========================================================================
   CALL TO ACTION BANNER HEADER SECTION
   ========================================================================== */

.cbh-banner-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.cbh-card {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--dark-purple);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cbh-bg-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cbh-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.cbh-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(253, 251, 253, 0.96) 0%, rgba(253, 251, 253, 0.90) 38%, rgba(253, 251, 253, 0.55) 60%, rgba(253, 251, 253, 0.0) 100%);
}

.cbh-content-box {
    position: relative;
    z-index: 3;
    max-width: 440px;
    padding: 36px 0 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cbh-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.cbh-title-highlight {
    color: var(--light-purple);
}

.cbh-description {
    font-size: 13px;
    line-height: 1.55;
    color: var(--slate-gray);
    margin: 0 0 24px 0;
    font-weight: 400;
}

.cbh-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}

.cbh-arrow-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.cbh-cta-btn:hover .cbh-arrow-icon {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .cbh-card {
        min-height: 300px;
    }

    .cbh-content-box {
        max-width: 400px;
        padding: 30px 0 30px 32px;
    }

    .cbh-title {
        font-size: 30px;
    }

    .cbh-description {
        font-size: 12.5px;
    }
}

@media (max-width: 767px) {
    .cbh-card {
        min-height: 360px;
    }

    .cbh-gradient-overlay {
        background: rgb(239 194 233 / 85%);
    }

    .cbh-content-box {
        max-width: 360px;
        padding: 28px 24px;
    }

    .cbh-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .cbh-description {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .cbh-card {
        min-height: auto;
    }

    .cbh-content-box {
        max-width: 100%;
        padding: 24px 20px;
    }

    .cbh-title {
        font-size: 24px;
    }

    .cbh-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
   CONTACT MP FEATURES SECTION
   ========================================================================== */
.mp-features-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.mp-features-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: center;
}

.mp-features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mp-feature-icon-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
    border: 1px solid var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-feature-icon {
    width: 32px;
    height: 32px;
    stroke: var(--dark-purple);
}

.mp-feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mp-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
    line-height: 1.3;
}

.mp-feature-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--slate-gray);
    margin: 0;
}

.mp-features-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mp-media-card {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
}

.mp-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1024px) {
    .mp-features-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mp-media-card {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .mp-features-section {
        padding: 40px 0;
    }
    .mp-features-media {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mp-feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .mp-feature-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .mp-feature-icon {
        width: 26px;
        height: 26px;
    }

    .mp-media-card {
        height: 220px;
    }
}


/* ==========================================================================
   CONTACT OVERVIEW SECTION
   ========================================================================== */

.co-directory-section {
    padding: 0px 0 60px;
    background-color: #ffffff;
    display: none;
}

.co-directory-card {
    background-color: #ffffff;
    border: 1px solid #c0c0c0;
    border-radius: 12px;
    padding: 24px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.co-directory-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.co-directory-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1.35fr 1.1fr 1.1fr;
    align-items: center;
}

.co-directory-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 0 14px;
}

.co-directory-item:first-child {
    padding-left: 0;
}

.co-directory-item:last-child {
    padding-right: 0;
}

.co-directory-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 38px;
    background-color: #f0f0f0;
}

.co-directory-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.co-directory-icon {
    width: 22px;
    height: 22px;
    stroke: var(--dark-purple);
}

.co-directory-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.co-directory-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
    line-height: 1.2;
}

.co-directory-value,
.co-directory-link {
    font-size: 12px;
    line-height: 1.35;
    color: var(--slate-gray);
    margin: 0;
    font-weight: 400;
    text-decoration: none;
}

.co-directory-link {
    transition: color 0.2s ease;
}

.co-directory-link:hover {
    color: var(--dark-purple);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .co-directory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }

    .co-directory-item {
        padding: 0;
    }

    .co-directory-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .co-directory-section { 
        padding: 0px 0 40px;
    }
    .co-directory-card {
        padding: 20px 18px;
    }

    .co-directory-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .co-directory-item {
        padding-bottom: 14px;
        border-bottom: 1px solid #c0c0c0;
    }

    .co-directory-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}


/* ==========================================================================
   DEPARTMENT SECTION
   ========================================================================== */

.dept-tabs-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.dept-wrapper {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 30px;
    align-items: start;
}

.dept-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dept-nav-card {
    background: #ffffff;
    border: 1px solid #c0c0c0;
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.dept-nav-heading {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-purple);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-left: 8px;
}

.dept-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dept-tab-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.dept-tab-btn:hover {
    background-color: rgba(239, 194, 233, 0.25);
}

.dept-tab-btn.active {
    background: var(--dark-purple);
    border-color: var(--dark-purple);
}

.dept-tab-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

.dept-tab-btn.active .dept-tab-icon-wrap {
    background-color: rgba(255, 255, 255, 0.15);
}

.dept-tab-icon {
    width: 16px;
    height: 16px;
    stroke: var(--dark-purple);
    transition: stroke 0.25s ease;
}

.dept-tab-btn.active .dept-tab-icon {
    stroke: #ffffff;
}

.dept-tab-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black);
    flex-grow: 1;
    transition: color 0.25s ease;
}

.dept-tab-btn.active .dept-tab-text {
    color: #ffffff;
}

.dept-arrow-icon {
    width: 14px;
    height: 14px;
    stroke: #b5b5b5;
    flex-shrink: 0;
    transition: stroke 0.25s ease;
}

.dept-tab-btn.active .dept-arrow-icon {
    stroke: #ffffff;
}

.dept-help-card {
    background: linear-gradient(135deg, rgba(239, 194, 233, 0.5) 0%, rgba(239, 194, 233, 0.9) 100%);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(211, 98, 199, 0.2);
}

.dept-help-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.dept-help-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px 0;
}

.dept-help-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--slate-gray);
    margin: 0 0 16px 0;
}

.dept-help-btn {
    padding: 8px 20px;
    font-size: 13px;
    gap: 6px;
}
.dept-help-btn svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
}

.dept-help-image-wrap {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 110px;
    z-index: 1;
    opacity: 0.95;
    pointer-events: none;
}

.dept-help-img {
    width: 100%;
    height: auto;
    display: block;
}

.dept-content-area {
    background: #ffffff;
    border: 1px solid #c0c0c0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.dept-tab-pane {
    display: none;
}

.dept-tab-pane.active {
    display: block;
}

.dept-pane-top {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
    margin-bottom: 36px;
}

.dept-pane-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dept-pane-main-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.dept-pane-main-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: var(--light-purple);
}

.dept-block-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dept-block-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dept-block-header-icon {
    width: 18px;
    height: 18px;
    stroke: var(--dark-purple);
}

.dept-block-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
}

.dept-block-para {
    font-size: 13px;
    line-height: 1.65;
    color: var(--slate-gray);
    margin: 0;
}

.dept-pane-img-col {
    width: 100%;
    height: 230px;
    border-radius: 10px;
    overflow: hidden;
}

.dept-top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dept-section-block {
    margin-top: 50px;
    padding-top: 0px;
    border-top: none;
}

.dept-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 0px;
}

.dept-section-title-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--extra-light-purple);
}

.dept-section-title-icon {
    width: 18px;
    height: 18px;
    stroke: var(--dark-purple);
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.dept-section-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0;
    letter-spacing: 0.5px;
    background: #ffffff;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.dept-list-container {
    display: flex;
    flex-direction: column;
}

.dept-list-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
}

.dept-list-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dept-list-row:first-child {
    padding-top: 0;
}

.dept-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dept-row-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--dark-purple);
}

.dept-row-text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--slate-gray);
    margin: 0;
    padding-top: 8px;
}

@media (max-width: 1024px) {
    .dept-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dept-pane-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dept-pane-img-col {
        height: 260px;
    }

    .dept-help-content {
        max-width: 65%;
    }
}

@media (max-width: 767px) {
    .dept-content-area {
        padding: 20px 16px;
    }

    .dept-nav-card {
        padding: 16px 12px;
    }

    .dept-pane-main-title {
        font-size: 22px;
    }

    .dept-pane-img-col {
        height: 200px;
    }

    .dept-list-row {
        gap: 12px;
        padding: 12px 0;
    }

    .dept-row-icon {
        width: 32px;
        height: 32px;
    }

    .dept-row-icon svg {
        width: 14px;
        height: 14px;
    }

    .dept-help-content {
        max-width: 100%;
    }

    .dept-help-image-wrap {
        display: none;
    }
}


/* ==========================================================================
   PRODUCTS LIST SECTION
   ========================================================================== */

.prod-catalog-section {
    padding: 60px 0 60px;
    background-color: #f7f9fc;
}
.prod-filter-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.prod-filter-btn {
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.prod-filter-btn .prod-filter-count {
    background-color: #f1f5f9;
    color: var(--slate-gray);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.prod-filter-btn:hover {
    border-color: var(--dark-purple);
    color: var(--dark-purple);
}

.prod-filter-btn.active {
    border-color: var(--dark-purple);
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(158, 72, 149, 0.3);
}

.prod-filter-btn.active .prod-filter-count {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.prod-catalog-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.prod-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prod-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.prod-categories-card {
    padding: 0;
    overflow: hidden;
}

.prod-cat-header {
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prod-cat-head-icon {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.prod-cat-head-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.prod-categories-card > div {
    max-height: 220px !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #9e4895 #f1f5f9 !important;
}

.prod-categories-card > div::-webkit-scrollbar {
    width: 6px !important;
    display: block !important;
}

.prod-categories-card > div::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 4px !important;
}

.prod-categories-card > div::-webkit-scrollbar-thumb {
    background: #9e4895 !important;
    border-radius: 4px !important;
}

.prod-cat-list {
    list-style: none;
    padding: 4px 0;
    margin: 0;
}

.prod-cat-item {
    transition: background-color 0.2s ease;
}

.prod-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--slate-gray);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.prod-cat-badge {
    background-color: #f0f0f4;
    color: var(--slate-gray);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.prod-cat-item:hover {
    background-color: rgba(239, 194, 233, 0.2);
}

.prod-cat-item:hover .prod-cat-link {
    color: var(--dark-purple);
}

.prod-cat-item.active {
    background-color: rgba(239, 194, 233, 0.35);
}

.prod-cat-item.active .prod-cat-link {
    color: var(--dark-purple);
}

.prod-cat-item.active .prod-cat-badge {
    background-color: var(--extra-light-purple);
    color: var(--dark-purple);
}

.prod-side-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0 0 14px 0;
}

.prod-input-box {
    position: relative;
    width: 100%;
}

.prod-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: #a0a0a0;
}

.prod-input-field {
    width: 100%;
    height: 42px;
    padding: 8px 14px 8px 38px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: var(--black);
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.prod-input-field:focus {
    border-color: var(--light-purple);
}

.prod-help-desc {
    font-size: 13px;
    color: var(--slate-gray);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.prod-contact-btn {
    width: 100%;
    gap: 8px;
    font-size: 13px;
    padding: 8px 16px;
    border-color: var(--light-purple);
    color: var(--dark-purple);
}

.prod-contact-btn:hover {
    background-color: var(--extra-light-purple);
    border-color: var(--dark-purple);
}

.prod-btn-arrow {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.prod-trust-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.prod-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.prod-trust-icon-wrap {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-trust-icon {
    width: 22px;
    height: 22px;
    stroke: var(--dark-purple);
}

.prod-trust-info {
    display: flex;
    flex-direction: column;
}

.prod-trust-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 0 0 2px 0;
}

.prod-trust-sub {
    font-size: 11.5px;
    color: #888888;
    margin: 0;
}

.prod-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0 !important;
    min-height: auto !important;
}

.prod-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    margin-top: 0;
}

.prod-search-top {
    position: relative;
    flex-grow: 1;
    max-width: 500px;
}

.prod-filter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prod-select-wrap {
    position: relative;
    min-width: 160px;
}

.prod-select-dropdown {
    width: 100%;
    height: 42px;
    padding: 8px 36px 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: var(--slate-gray);
    background-color: #ffffff;
    appearance: none;
    outline: none;
    cursor: pointer;
}

.prod-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--slate-gray);
    pointer-events: none;
}

.prod-view-toggle {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 3px;
}

.prod-view-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #a0a0a0;
    transition: all 0.2s ease;
}

.prod-view-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.prod-view-btn.active {
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
}

.prod-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.prod-item-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prod-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.prod-img-box {
    width: 100%;
    height: 210px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.prod-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    display: block;
    margin: auto;
}

.prod-img-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    position: relative;
    inset: auto;
}

.prod-item-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.prod-item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.prod-tag-badge {
    background-color: rgba(239, 194, 233, 0.4);
    color: var(--dark-purple);
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.prod-item-desc {
    font-size: 14px;
    color: var(--slate-gray);
    margin: 0 0 6px 0;
    line-height: 1.4;
    font-weight: 500;
}

.prod-item-quote {
    font-size: 13px;
    color: #888888;
    font-style: italic;
    margin: 0 0 16px 0;
}

.prod-item-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-details-btn {
    flex-grow: 1;
    padding: 10px 14px;
    font-size: 12px;
    border-color: var(--extra-light-purple);
    color: var(--dark-purple);
    gap: 6px;
}

.prod-details-btn:hover {
    border-color: var(--dark-purple);
    background-color: transparent;
    color: var(--dark-purple);
}

.prod-info-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #c0c0c0;
    background-color: transparent;
    color: var(--slate-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.prod-info-icon-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: currentColor;
}
.prod-info-icon-btn svg line {
    stroke: #ffffff;
}
.prod-info-icon-btn:hover {
    background-color: var(--extra-light-purple);
    color: var(--dark-purple);
}

.prod-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prod-pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.prod-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    border-radius: 8px;
    background-color: #f4f4f8;
    color: var(--slate-gray);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.prod-page-item.active .prod-page-link {
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
}

.prod-page-link:hover:not(.active) {
    background-color: var(--extra-light-purple);
    color: var(--dark-purple);
}

.prod-grid-layout.list-view {
    grid-template-columns: 1fr;
}

.prod-grid-layout.list-view .prod-item-card {
    flex-direction: row;
    align-items: center;
}

.prod-grid-layout.list-view .prod-img-box {
    width: 220px;
    height: auto;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .prod-catalog-wrapper {
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .prod-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .prod-top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .prod-search-top {
        max-width: 100%;
    }

    .prod-filter-controls {
        justify-content: space-between;
    }
    .prod-filter-wrapper {
        margin-bottom: 20px;
    }

    .prod-filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .prod-catalog-section {
        padding: 40px 0;
    }
    .prod-catalog-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .prod-grid-layout {
        grid-template-columns: 1fr;
    }

    .prod-sidebar {
        gap: 16px;
    }

    .prod-pagination-wrap {
        margin-top: 20px;
    }

    .prod-grid-layout.list-view .prod-item-card {
        flex-direction: column;
    }
    .prod-grid-layout.list-view .prod-img-box {
        width: 100%;
    }
    .prod-filter-wrapper {
        margin-bottom: 16px;
        gap: 6px;
    }

    .prod-filter-btn {
        padding: 8px 14px;
        font-size: 12.5px;
    }

    .prod-filter-btn .prod-filter-count {
        font-size: 11px;
        padding: 2px 6px;
    }
}


/* ==========================================================================
   ABOUT BANNER SECTION
   ========================================================================== */

.about-banner-sec {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(239 194 233 / 100%) 0%, rgb(239 194 233 / 68%), rgb(253 251 253 / 55%) 60%, rgba(253, 251, 253, 0.0) 100%);
    z-index: 1;
}

.about-banner-sec .container {
    position: relative;
    z-index: 2;
}

.about-banner-content {
    max-width: 580px;
    padding: 60px 0;
}

.about-banner-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 16px;
}

.about-banner-title .highlight-text {
    color: var(--dark-purple);
    font-style: italic;
}

.about-banner-desc {
    font-size: 18px;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 30px;
}

.about-banner-btns {
    margin-bottom: 48px;
}

.about-stats-grid {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.about-stat-item {
    position: relative;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
}

.about-stat-item::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 2px;
    bottom: 2px;
    width: 0px;
    background: none;
    box-shadow: 2px 0 0 1px var(--dark-purple);
    transform: translateZ(0);
    backface-visibility: hidden;
    display: initial;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--black);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .about-banner-sec {
        min-height: 460px;
    }

    .about-banner-content {
        max-width: 520px;
        padding: 40px 0;
    }

    .about-banner-title {
        font-size: 34px;
    }

    .about-stats-grid {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .about-banner-sec {
        background-position: center;
    }

    .about-banner-overlay {
        background: rgb(239 194 233 / 85%);
    }

    .about-banner-content {
        max-width: 100%;
        padding: 30px 0;
    }

    .about-banner-title {
        font-size: 28px;
    }

    .about-banner-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .about-banner-btns {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 32px;
    }

    .about-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }
}


/* ==========================================================================
   About Our Story Section
   ========================================================================== */
.about-story-sec {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-story-media {
    position: relative;
}

.about-story-img-box {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-story-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.about-cert-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.about-cert-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    flex-shrink: 0;
}

.about-cert-icon img {
    height: 80%;
    width: 80%;
    object-fit: contain;
    border-radius: 50%;
}

.about-cert-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-purple);
}

.about-cert-text {
    display: flex;
    flex-direction: column;
}

.cert-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.cert-sub {
    font-size: 12px;
    color: var(--slate-gray);
    margin-top: 2px;
}

.about-story-content {
    display: flex;
    flex-direction: column;
}

.about-story-subhead {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    margin-bottom: 8px;
    display: block;
}

.about-story-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.about-story-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

.about-story-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-gray);
    margin: 0 0 16px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin: 16px 0 32px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feat-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
    color: var(--dark-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.about-feat-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}

.about-story-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.about-story-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .about-story-sec {
        padding: 60px 0;
    }

    .about-story-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-story-media {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .about-story-title {
        font-size: 32px;
    }

    .about-cert-badge {
        right: -10px;
        bottom: -10px;
    }
}

@media (max-width: 767px) {
    .about-story-sec {
        padding: 40px 0;
    }

    .about-story-title {
        font-size: 26px;
    }

    .about-story-desc {
        font-size: 13.5px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 12px 0 24px 0;
    }
}


/* ==========================================================================
   About Page Mission Vision Section
   ========================================================================== */

.purpose-sec {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
}

.purpose-header {
    text-align: center;
    margin-bottom: 48px;
}

.purpose-subhead {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
    display: block;
    margin-bottom: 6px;
}

.purpose-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.purpose-title .highlight-italic {
    font-style: italic;
    font-weight: 600;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: stretch;
}

.purpose-card {
    background-color: #fdfbfd;
    border-radius: 28px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
}

.purpose-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--light-purple);
    background-color: #fff3fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    margin-bottom: 24px;
    flex-shrink: 0;
}
.purpose-icon-box img {
    opacity: 0.7;
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.purpose-card-title {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: var(--black);
    margin: 0 0 16px 0;
}

.purpose-card-desc,
.purpose-card-intro {
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-gray);
    margin: 0 0 12px 0;
}

.purpose-list {
    margin: 0;
    padding-left: 18px;
    list-style-type: disc;
}

.purpose-list li {
    font-size: 16px;
    line-height: 1.4;
    color: var(--slate-gray);
    margin-bottom: 5px;
}

.purpose-list li::marker {
    color: var(--slate-gray);
    font-size: 10px;
}

.purpose-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .purpose-sec {
        padding: 60px 0;
    }

    .purpose-title {
        font-size: 32px;
    }

    .purpose-card {
        padding: 32px 28px;
    }

    .purpose-grid {
        gap: 24px;
        grid-template-columns: 0.85fr 1.15fr;
    }
}

@media (max-width: 767px) {
    .purpose-sec {
        padding: 40px 0;
    }

    .purpose-header {
        margin-bottom: 32px;
    }

    .purpose-title {
        font-size: 26px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .purpose-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .purpose-card-title {
        font-size: 20px;
    }

    .purpose-card-desc,
    .purpose-card-intro,
    .purpose-list li {
        font-size: 13.5px;
    }
}


/* ==========================================================================
   Winning Behaviour Section
   ========================================================================== */

.winning-behaviors-sec {
    padding: 80px 0;
    background-color: #f8fafc;
}

.winning-behaviors-header {
    text-align: center;
    margin-bottom: 50px;
}

.winning-behaviors-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.winning-behaviors-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

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

.winning-behavior-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 36px 24px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: 0.3s ease;
    border-top: 4px solid var(--dark-purple);
}

.winning-behavior-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.winning-behavior-card:nth-child(even) {
    border-top-color: #7c3aed;
}

.winning-behavior-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: #fff3fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.winning-behavior-icon-box svg {
    stroke: var(--dark-purple);
    width: 24px;
    height: 24px;
}

.winning-behavior-card:nth-child(even) .winning-behavior-icon-box {
    background-color: #f4eeff;
}

.winning-behavior-card:nth-child(even) svg {
    stroke: #7c3aed;
}

.winning-behavior-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px 0;
}

.winning-behavior-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .winning-behaviors-sec {
        padding: 60px 0;
    }

    .winning-behaviors-title {
        font-size: 32px;
    }

    .winning-behaviors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .winning-behavior-card {
        padding: 30px 20px 28px;
    }
}

@media (max-width: 767px) {
    .winning-behaviors-sec {
        padding: 40px 0;
    }

    .winning-behaviors-header {
        margin-bottom: 30px;
    }

    .winning-behaviors-title {
        font-size: 26px;
    }

    .winning-behaviors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .winning-behavior-card {
        padding: 24px 18px;
    }

    .winning-behavior-icon-box {
        margin-bottom: 16px;
    }
}


/* ==========================================================================
   About Department Section
   ========================================================================== */

.dept-sales-mkt-sec {
    padding: 80px 0;
    background-color: #ffffff;
}

.dept-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.dept-subhead {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    display: block;
    margin-bottom: 6px;
}

.dept-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.dept-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

.dept-intro-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-gray);
    margin: 0;
}

.dept-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.dept-card {
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.dept-card-light {
    background-color: #ffffff;
    border: 1px solid #f0edf0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.dept-card-dark {
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
}

.dept-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.dept-card-light .dept-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--extra-light-purple);
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dept-card-dark .dept-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--extra-light-purple);
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dept-meta {
    display: flex;
    flex-direction: column;
}

.dept-tag {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dept-card-light .dept-tag {
    color: var(--light-purple);
}

.dept-card-dark .dept-tag {
    color: rgba(255, 255, 255, 0.85);
}

.dept-card-subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.dept-card-light .dept-card-subtitle {
    color: var(--black);
}

.dept-card-dark .dept-card-subtitle {
    color: #ffffff;
}

.dept-card-desc {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 20px 0;
}

.dept-card-light .dept-card-desc {
    color: var(--slate-gray);
}

.dept-card-dark .dept-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

.dept-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dept-check-list:last-child {
    margin-bottom: 0;
}

.dept-check-list li {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dept-card-light .dept-check-list li {
    color: var(--slate-gray);
}

.dept-card-dark .dept-check-list li {
    color: #ffffff;
}

.dept-check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.dept-check-icon svg {
    width: 10px;
    height: 10px;
}

.dept-card-light .dept-check-icon {
    background-color: var(--extra-light-purple);
    color: #ffffff;
}

.dept-card-dark .dept-check-icon {
    background-color: var(--extra-light-purple);
    color: var(--dark-purple);
}

.dept-card-italic-footer {
    font-size: 13.5px;
    font-style: italic;
    color: var(--slate-gray);
    margin: auto 0 0 0;
    padding-top: 10px;
}

.dept-highlight-box {
    background-color: #fcf2fb;
    border-left: 10px solid var(--dark-purple);
    padding: 18px 20px;
    border-radius: 20px 20px 20px 20px;
    margin-top: auto;
}

.dept-highlight-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-purple);
    margin: 0;
}

.dept-highlight-box p strong {
    color: var(--dark-purple);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .dept-sales-mkt-sec {
        padding: 60px 0;
    }

    .dept-title {
        font-size: 32px;
    }

    .dept-cards-grid {
        gap: 24px;
    }

    .dept-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .dept-sales-mkt-sec {
        padding: 40px 0;
    }

    .dept-header {
        margin-bottom: 32px;
    }

    .dept-title {
        font-size: 26px;
    }

    .dept-intro-desc {
        font-size: 13.5px;
    }

    .dept-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dept-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .dept-card-subtitle {
        font-size: 15px;
    }

    .dept-card-desc,
    .dept-check-list li {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   Leadership Vision Section
   ========================================================================== */

.leadership-vision-sec {
    padding: 80px 0;
    background-color: #f4f7fc;
}

.leadership-vision-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.leadership-subhead {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    display: block;
    margin-bottom: 8px;
}

.leadership-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0 0 28px 0;
}

.leadership-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
    font-weight: 600;
}

.leadership-desc {
    font-size: 20px;
    line-height: 1.7;
    color: var(--slate-gray);
    margin: 0 0 24px 0;
}

.leadership-desc:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .leadership-vision-sec {
        padding: 60px 0;
    }

    .leadership-vision-content {
        max-width: 720px;
    }

    .leadership-title {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .leadership-desc {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .leadership-vision-sec {
        padding: 40px 0;
    }

    .leadership-vision-content {
        max-width: 100%;
    }

    .leadership-subhead {
        font-size: 13px;
    }

    .leadership-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .leadership-desc {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   Connect CTA Section
   ========================================================================== */


.connect-cta-sec {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    text-align: center;
}

.connect-cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.connect-cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.connect-cta-title .highlight-italic {
    font-style: italic;
}

.connect-cta-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 36px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.connect-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.connect-primary-btn {
    background: #ffffff;
    color: var(--dark-purple);
}

.connect-primary-btn:hover {
    background-color: #fdfbfd;
    color: var(--dark-purple);
    opacity: 0.95;
}

.connect-secondary-btn {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.connect-secondary-btn:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.connect-cta-btns .btn svg,
.connect-cta-btns .border-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.connect-cta-btns .btn:hover svg,
.connect-cta-btns .border-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .connect-cta-sec {
        padding: 70px 0;
    }

    .connect-cta-content {
        max-width: 680px;
    }

    .connect-cta-title {
        font-size: 32px;
    }

    .connect-cta-desc {
        font-size: 16px;
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .connect-cta-sec {
        padding: 50px 0;
    }

    .connect-cta-title {
        font-size: 26px;
    }

    .connect-cta-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .connect-cta-btns {
        flex-direction: column;
        gap: 12px;
    }

    .connect-primary-btn,
    .connect-secondary-btn {
        width: 100%;
        max-width: 280px;
    }
}


/* ==========================================================================
   Our Divisons Features Section
   ========================================================================== */

.divisions-feature-sec {
    padding: 80px 0;
    background-color: #ffffff;
}
.divisions-feature-sec:has(+ .divisions-feature-sec) {
    padding-bottom: 40px;
}

.divisions-feature-sec+.divisions-feature-sec {
    padding-top: 40px;
}

.divisions-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.divisions-subhead {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    display: block;
    margin-bottom: 8px;
}

.divisions-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.divisions-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

.divisions-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.divisions-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    background-color: #f5f5f5;
}

.divisions-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.divisions-badge-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divisions-badge-label {
    font-size: 13px;
    color: var(--slate-gray);
    font-weight: 500;
    display: block;
    line-height: 1.2;
}

.divisions-badge-count {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-top: 2px;
}

.divisions-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.divisions-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--extra-light-purple);
    border-radius: 100px;
    color: var(--dark-purple);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.divisions-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--dark-purple);
}

.divisions-card-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.divisions-card-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

.divisions-card-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-gray);
    margin: 0 0 28px 0;
    max-width: 520px;
}

.divisions-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.divisions-pill {
    background-color: #fdf2fc;
    color: var(--dark-purple);
    font-size: 12.5px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
}

.divisions-footer-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.divisions-explore-btn {
    color: var(--dark-purple);
    border-color: var(--extra-light-purple);
    padding: 10px 24px;
}

.divisions-explore-btn:hover {
    border-color: var(--dark-purple);
    background-color: transparent;
    color: var(--dark-purple);
}

.divisions-explore-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.divisions-explore-btn:hover svg {
    transform: translateX(4px);
}

.divisions-meta-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.divisions-meta-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-gray);
}

.divisions-reverse .divisions-card-grid {
    grid-template-columns: 1fr 1fr;
}

.divisions-reverse .divisions-badge-box {
    right: auto;
    left: -20px;
}

@media (max-width: 1024px) {
    .divisions-feature-sec {
        padding: 60px 0;
    }
    .divisions-feature-sec:has(+ .divisions-feature-sec) {
        padding-bottom: 30px;
    }

    .divisions-feature-sec+.divisions-feature-sec {
        padding-top: 30px;
    }

    .divisions-title {
        font-size: 32px;
    }

    .divisions-card-grid {
        gap: 32px;
    }

    .divisions-card-title {
        font-size: 30px;
    }

    .divisions-card-desc {
        font-size: 14.5px;
        margin-bottom: 22px;
    }

    .divisions-pills-list {
        margin-bottom: 28px;
    }

    .divisions-footer-group {
        gap: 16px;
    }

    .divisions-meta-list {
        gap: 12px;
    }

    .divisions-meta-item {
        font-size: 11.5px;
    }
    .divisions-reverse .divisions-card-grid {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .divisions-feature-sec {
        padding: 40px 0;
    }
    .divisions-feature-sec:has(+ .divisions-feature-sec) {
        padding-bottom: 20px;
    }

    .divisions-feature-sec+.divisions-feature-sec {
        padding-top: 20px;
    }

    .divisions-header {
        margin-bottom: 32px;
    }

    .divisions-title {
        font-size: 26px;
    }

    .divisions-card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .divisions-badge-box {
        bottom: -10px;
        right: -10px;
        padding: 8px 16px;
    }

    .divisions-badge-count {
        font-size: 18px;
    }

    .divisions-tag-pill {
        margin-bottom: 16px;
    }

    .divisions-card-title {
        font-size: 26px;
    }

    .divisions-card-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .divisions-pills-list {
        margin-bottom: 24px;
    }

    .divisions-footer-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .divisions-explore-btn {
        width: auto;
    }

    .divisions-meta-list {
        flex-wrap: wrap;
        gap: 12px;
    }
    .divisions-reverse .divisions-card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .divisions-reverse .divisions-img-col {
        order: 1;
    }

    .divisions-reverse .divisions-info-col {
        order: 2;
    }

    .divisions-reverse .divisions-badge-box {
        left: -10px;
        border-radius: 14px;
    }
}


/* ==========================================================================
   Product Grid Section
   ========================================================================== */

.products-grid-sec {
    padding: 80px 0;
    background-color: #ffffff;
}

.products-grid-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.products-grid-subhead {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    display: block;
    margin-bottom: 8px;
}

.products-grid-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.products-grid-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

.products-view-all-btn {
    padding: 10px 24px;
}

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

.products-gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
}

.products-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.products-gallery-item:hover .products-gallery-img {
    transform: scale(1.06);
}

@media (max-width: 1024px) {
    .products-grid-sec {
        padding: 60px 0;
    }

    .products-grid-title {
        font-size: 32px;
    }

    .products-gallery-grid {
        gap: 16px;
    }

    .products-gallery-item {
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .products-grid-sec {
        padding: 40px 0;
    }

    .products-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .products-grid-title {
        font-size: 26px;
    }

    .products-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .products-gallery-item {
        border-radius: 16px;
        aspect-ratio: 1 / 1;
    }
}


/* ==========================================================================
   Enova Division Section
   ========================================================================== */

.enova-banner-sec {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, #4a1d47 100%);
    color: #ffffff;
}

.enova-banner-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.enova-banner-content {
    max-width: 620px;
}

.enova-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--extra-light-purple);
    border-radius: 100px;
    color: var(--extra-light-purple);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.enova-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
}

.enova-banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.enova-banner-title .highlight-italic {
    color: var(--extra-light-purple);
    font-style: italic;
}

.enova-banner-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.enova-banner-media {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.enova-media-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.enova-media-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1.3 / 1;
    background-color: rgba(255, 255, 255, 0.05);
}

.enova-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enova-banner-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.enova-primary-btn {
    color: #ffffff;
    padding: 10px 24px;
}

.enova-primary-btn:hover {
    background-color: var(--extra-light-purple);
    color: var(--black);
}

.enova-secondary-btn {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
}

.enova-secondary-btn:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .enova-banner-sec {
        padding: 50px 0;
    }

    .enova-banner-grid {
        gap: 32px;
        grid-template-columns: 1.05fr 0.95fr;
    }

    .enova-banner-title {
        font-size: 34px;
    }

    .enova-banner-desc {
        font-size: 14.5px;
    }

    .enova-media-cards {
        gap: 14px;
    }

    .enova-banner-btns {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .enova-banner-sec {
        padding: 40px 0;
    }

    .enova-banner-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .enova-banner-title {
        font-size: 28px;
    }

    .enova-media-cards {
        grid-template-columns: 1fr 1fr;
    }

    .enova-media-card {
        border-radius: 14px;
    }

    .enova-banner-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .enova-primary-btn,
    .enova-secondary-btn {
        width: 100%;
    }
}


/* ==========================================================================
   MD Message Section
   ========================================================================== */

.md-message-sec {
    padding: 90px 0;
    background-color: #ffffff;
}

.md-message-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.md-message-header {
    margin-bottom: 36px;
}

.md-subhead {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    display: block;
    margin-bottom: 8px;
}

.md-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.md-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

.md-message-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-gray);
    margin-bottom: 24px;
}

.md-message-body p:last-child {
    margin-bottom: 0;
}

.md-signature-box {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.md-author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 10px 0;
}

.md-divider-line {
    width: 420px;
    max-width: 100%;
    height: 1px;
    background-color: var(--extra-light-purple);
    margin-bottom: 10px;
}

.md-author-designation {
    font-size: 12px;
    color: var(--slate-gray);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .md-message-sec {
        padding: 70px 0;
    }

    .md-title {
        font-size: 32px;
    }

    .md-message-body p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .md-signature-box {
        margin-top: 36px;
    }

    .md-author-name {
        font-size: 18px;
    }

    .md-divider-line {
        width: 320px;
    }
}

@media (max-width: 767px) {
    .md-message-sec {
        padding: 50px 0;
    }

    .md-message-header {
        margin-bottom: 24px;
    }

    .md-title {
        font-size: 26px;
    }

    .md-message-body p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .md-signature-box {
        margin-top: 28px;
    }

    .md-author-name {
        font-size: 17px;
    }

    .md-divider-line {
        width: 240px;
    }

    .md-author-designation {
        font-size: 11px;
    }
}




/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: #ffffff;
    padding: 60px 0 50px;
    border-top: 1px solid #f2e9f1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr 1.2fr 0.8fr;
    gap: 40px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-about .tagline {
    font-size: 15px;
    line-height: 1.5;
    color: var(--slate-gray);
    max-width: 280px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.footer-contact-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--slate-gray);
    line-height: 1.4;
}

.footer-contact-list li:last-child {
    margin-bottom: 0;
}

.footer-contact-list .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list .icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--light-purple);
}

.footer-contact-list a {
    color: var(--slate-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--dark-purple);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--slate-gray);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    margin-top: 40px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    font-size: 14px;
    color: var(--slate-gray);
    margin: 0;
}



/* ==========================================================================
   Footer Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-about .tagline {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-heading {
        margin-bottom: 16px;
    }
}



/* ==========================================================================
    Global Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    h3 { font-size: 30px; }
}

@media (max-width: 767px) {
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 28px; }
}

/* ==========================================================================
   Product Division Filter Navigation Tabs & Category List Customizations
   ========================================================================== */
.prod-cat-list {
    max-height: none !important;
    overflow: visible !important;
}

.prod-filter-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.prod-filter-btn {
    padding: 10px 22px;
    border-radius: 9999px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.prod-filter-btn:hover {
    border-color: #c054c2;
    color: #c054c2;
}

.prod-filter-btn.active {
    background: linear-gradient(135deg, #c054c2 0%, #8d348f 100%);
    border-color: #c054c2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(192, 84, 194, 0.35);
}

.prod-filter-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.prod-filter-btn.active .prod-filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ==========================================================================
   Enova Division Banner Section
   ========================================================================== */
.enova-banner-sec {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, #4a1d47 100%);
    color: #ffffff;
}

.enova-banner-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.enova-banner-content {
    max-width: 620px;
}

.enova-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--extra-light-purple);
    border-radius: 100px;
    color: var(--extra-light-purple);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.enova-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--extra-light-purple);
}

.enova-banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.enova-banner-title .highlight-italic {
    color: var(--extra-light-purple);
    font-style: italic;
}

.enova-banner-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.enova-banner-media {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.enova-media-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.enova-media-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1.3 / 1;
    background-color: rgba(255, 255, 255, 0.05);
}

.enova-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enova-banner-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.enova-primary-btn {
    color: #ffffff;
    padding: 10px 24px;
}

.enova-primary-btn:hover {
    background-color: var(--extra-light-purple);
    color: var(--black);
}

.enova-secondary-btn {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
}

.enova-secondary-btn:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .enova-banner-sec {
        padding: 50px 0;
    }

    .enova-banner-grid {
        gap: 32px;
        grid-template-columns: 1.05fr 0.95fr;
    }

    .enova-banner-title {
        font-size: 34px;
    }

    .enova-banner-desc {
        font-size: 14.5px;
    }

    .enova-media-cards {
        gap: 14px;
    }

    .enova-banner-btns {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .enova-banner-sec {
        padding: 40px 0;
    }

    .enova-banner-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .enova-media-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .enova-banner-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .enova-primary-btn,
    .enova-secondary-btn {
        width: 100%;
        justify-content: center;
    }
}


.prod-filter-btn {
    padding: 10px 22px;
    border-radius: 9999px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.prod-filter-btn:hover {
    border-color: #c054c2;
    color: #c054c2;
}

.prod-filter-btn.active {
    background: linear-gradient(135deg, #c054c2 0%, #8d348f 100%);
    border-color: #c054c2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(192, 84, 194, 0.35);
}

.prod-filter-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.prod-filter-btn.active .prod-filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Footer Social Links Styling */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(192, 84, 194, 0.1);
    color: var(--dark-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 84, 194, 0.2);
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(192, 84, 194, 0.35);
}

/* ==========================================================================
   404 Error Page Section
   ========================================================================== */
.error-404-sec {
    padding: 100px 0;
    background-color: #fff8fe;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 100px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(192, 84, 194, 0.3);
}

.error-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.15;
}

.error-title .highlight-italic {
    font-style: italic;
    color: var(--dark-purple);
    font-weight: 700;
}

.error-desc {
    font-size: 17px;
    color: var(--slate-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
}

/* ==========================================================================
   MPPL Product Brands Section
   ========================================================================== */
.mppl-brands-sec {
    padding: 80px 0;
    background-color: #ffe4ff;
}

.mppl-brands-header {
    margin-bottom: 40px;
}

.mppl-brands-subhead {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-gray);
    display: block;
    margin-bottom: 8px;
}

.mppl-brands-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.mppl-brands-title .highlight-italic {
    color: var(--dark-purple);
    font-style: italic;
}

.mppl-brands-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mppl-brand-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 28px 32px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.mppl-brand-badge-row {
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 24px;
    z-index: 1;
}

.mppl-brand-badge-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #c0c0c0;
    margin: auto;
    z-index: -1;
}

.mppl-brand-badge {
    display: inline-block;
    background: linear-gradient(180deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 100px;
}

.mppl-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mppl-brand-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    border: 1px solid #f0f0f0;
}

.mppl-brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mppl-brand-item:hover .mppl-brand-img {
    transform: scale(1.03);
}

/* ==========================================================================
   Brand Card Single-Row Slider Controls
   ========================================================================== */
.mppl-brand-slider-wrapper {
    position: relative;
    padding: 0 20px;
}

.brand-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.brand-slider-arrow:hover {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(192, 84, 194, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.brand-slider-prev {
    left: -14px;
}

.brand-slider-next {
    right: -14px;
}

@media (max-width: 1024px) {
    .mppl-brands-sec {
        padding: 60px 0;
    }

    .mppl-brands-title {
        font-size: 32px;
    }

    .mppl-brand-card {
        padding: 24px;
    }

    .mppl-brand-grid {
        gap: 14px;
    }

    .mppl-brand-badge-row {
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .mppl-brands-sec {
        padding: 40px 0;
    }

    .mppl-brands-header {
        margin-bottom: 28px;
    }

    .mppl-brands-title {
        font-size: 26px;
    }

    .mppl-brand-card {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .mppl-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mppl-brand-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .mppl-brand-badge-row {
        margin-bottom: 16px;
    }

    .mppl-brand-slider-wrapper {
        padding: 0 32px;
    }

    .brand-slider-arrow {
        width: 28px;
        height: 28px;
    }

    .brand-slider-prev {
        left: 0;
    }

    .brand-slider-next {
        right: 0;
    }
}

/* =============================================
   Product Image Box
   ============================================= */

.prod-img-box img {
    max-width: none;
    margin: auto;
    position: absolute;
    inset: 0;
    max-height: none;
    width: 80% !important;
    height: 80% !important;
    object-fit: contain !important;
}

.prod-grid-layout.list-view .prod-img-box,
.prod-img-box {
    max-height: none;
    height: auto !important;
    position: relative;
}

.prod-grid-layout.list-view .prod-img-box::before,
.prod-img-box::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 66%;
}

/* =============================================
   Responsive Overrides
   ============================================= */

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

.prod-item-header {
    flex-direction: column;
    align-items: flex-start;
}

.prod-tag-badge {
    white-space: normal;
}

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

    .prod-item-body {
        width: 100%;
    }

    .about-section .about-features-grid {
        margin-bottom: 0;
    }

    .prod-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .prod-tag-badge {
        white-space: normal;
    }

    .prod-view-toggle {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .main-page-wrapper {
        padding-top: 98px;
    }
}

@media (max-width: 767px) {
    .main-page-wrapper {
        padding-top: 98px;
    }
}

.footer-social-link:hover polygon {
    fill: var(--dark-purple);
}

/* Product Card Image Hover Zoom */
.prod-item-card .prod-img-box img {
    transition: .5s;
}

.prod-item-card:hover .prod-img-box img {
    transform: scale(1.1);
}
