/* =========================================
   3. Hero Section
   ========================================= */

.hero-section {
    padding: var(--section-padding) 0;
    background-color: #F0F6FF;
    /* Visual match for light blue background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: var(--fs-54);
    line-height: normal;
    color: var(--color-blue-full);
    font-weight: normal;
    margin-bottom: var(--heading-gap);
}

.hero-title span {
    font-weight: 700;
    background: linear-gradient(89deg, #00BC5B 0%, #0E3BA6 49.8%, #0E3BA6 98.66%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: var(--fs-16);
    color: var(--color-black);
    line-height: normal;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    position: relative;
    display: inline-block;
    margin-top: 70px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Soft corners if needed */
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
    z-index: 10;
}

.play-icon {
    font-size: 24px;
    color: var(--color-blue);
    margin-left: 4px;
    /* Optical adjustment */
}

@keyframes pulse-white {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* =========================================
   4. Brands Section — Marquee Effect
   ========================================= */

.brands-section {
    padding: var(--section-padding) 0;
    text-align: center;
    background-color: #F0F6FF;
    overflow: hidden;
}

.brands-title {
    font-size: var(--fs-36);
    color: var(--color-black);
    font-weight: normal;
    margin-bottom: var(--heading-gap);
}

/* Marquee Wrapper — hides overflow, adds edge fade */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
}

/* The scrolling track */
.marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

/* Individual logo item */
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: auto;
    background: var(--color-white);
    border-radius: 16px;
    padding: 12px 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.marquee-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.06);
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Row 1 — Right to Left */
.marquee-rtl {
    animation: marquee-scroll-rtl 70s linear infinite;
}

/* Row 2 — Left to Right */
.marquee-ltr {
    animation: marquee-scroll-ltr 70s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Keyframes */
@keyframes marquee-scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .marquee-item {
        width: 120px;
        height: 55px;
        padding: 8px 14px;
        border-radius: 10px;
    }

    .marquee-track {
        gap: 16px;
    }

    .marquee-rtl {
        animation-duration: 28s;
    }

    .marquee-ltr {
        animation-duration: 28s;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        width: 100px;
        height: 45px;
        padding: 6px 10px;
        border-radius: 8px;
    }

    .marquee-track {
        gap: 16px;
    }

    .marquee-rtl {
        animation-duration: 22s;
    }

    .marquee-ltr {
        animation-duration: 22s;
    }
}

/* =========================================
   5. Impacts Section
   ========================================= */

.impacts-section {
    padding: var(--section-padding) 0 0;
    background: var(--gradient-primary);
    color: var(--color-white);
    overflow: hidden;
}

.impact-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--content-gap);
}

.impact-card {
    flex: 0 0 auto;
    align-self: flex-end;
}

.impact-chart-container {
    display: flex;
    align-items: flex-end;
}

.impact-date {
    color: #F58634;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.impact-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}

.impact-chart {
    max-width: 100%;
    display: block;
    margin-bottom: -4px;
}

.btn-orange {
    background-color: #F58634;
    color: #fff;
    width: 100%;
    justify-content: center;
}

.btn-orange:hover {
    background-color: #e07020;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.3);
}

/* Right Stats */
.impact-stats-list {
    flex-grow: 1;
    padding-bottom: var(--section-padding);
}

.impact-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-white);
    padding: 24px 0;
}

.impact-stat-item:first-child {
    padding-top: 0;
}

.impact-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-desc {
    font-size: var(--fs-16);
    line-height: 1.5;
    opacity: 0.95;
    margin: 0;
    color: var(--color-white);
}

.stat-value {
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .impact-wrapper {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    /* Text stats on top */
    .impact-stats-list {
        order: 1;
    }

    /* Image card on bottom */
    .impact-card {
        order: 2;
        max-width: 100%;
        align-self: center;
    }

    .impact-chart-container {
        justify-content: center;
    }

    .impact-stat-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .stat-desc {
        max-width: 100%;
    }
}

/* =========================================
   6. Upgrade / Industries Section
   ========================================= */

.upgrade-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.section-title {
    font-size: var(--fs-32);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 10px;
    text-align: center;
}

.upgrade-section .section-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.section-subtitle {
    font-size: var(--fs-24);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--heading-gap);
    text-align: center;
}

.section-desc {
    font-size: var(--fs-16);
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}

/* Industry Card */
.industry-card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-light-blue);
    margin-bottom: 24px;
}

.industry-content {
    flex: 1;
    padding: 52px;
    background-color: var(--color-light-blue);
    /* Make sure left side is solid color if gradient is tricky */
}

.industry-visual {
    /* flex: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

.industry-number {
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--color-black);
    display: block;
    margin-bottom: 16px;
}

.industry-title {
    font-size: var(--fs-36);
    font-weight: normal;
    margin-bottom: 16px;
    color: var(--color-black);
}

.industry-text {
    font-size: var(--fs-16);
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.cbo-news-banner {
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-dark-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: var(--fs-14);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-dark-blue:hover {
    background-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 67, 159, 0.3);
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
    .industry-card {
        flex-direction: column;
        background: var(--color-light-blue);
        /* Fallback */
    }

    .industry-content {
        padding: 36px 16px;
        order: 2;
    }
}

/* =========================================
   7. Goal-Driven AI Section
   ========================================= */

.goal-ai-section {
    padding: var(--section-padding);
    background-color: #F0F8FF;
    text-align: center;
}

.goal-ai-section .section-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.goal-ai-visual {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.goal-ai-section .btn {
    background: var(--color-green);
    color: var(--color-white);
}

/* Ensure image within visual is responsive */
.goal-ai-visual img {
    max-width: 100%;
    height: auto;
}


.img-fluid {
    max-width: 100%;
    height: auto;
}


/* =========================================
   8. Home Counter section
   ========================================= */

.home-counter-section {
    padding: var(--section-padding);
    background-color: var(--color-white);
    text-align: center;
}

.home-counter-section .section-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.goal-ai-visual {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.home-counter-section .btn {
    background: var(--color-green);
    color: var(--color-white);
}

.home-counter-section .stat-card {
    background: transparent;
    border: 1px solid var(--color-blue-half);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.home-counter-section .stat-card:hover {
    transform: translateY(-5px);
}

.home-counter-section .stat-icon {
    width: 36px;
    height: 36px;
    color: var(--color-green);
}

.home-counter-section .stat-number {
    font-size: var(--fs-28);
    font-weight: 700;
    color: var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.home-counter-section .stat-label {
    font-size: var(--fs-16);
    color: #666;
    font-weight: 500;
}


/* =========================================
   8. Modules Counter section
   ========================================= */

.modules-counter-section {
    padding: var(--section-padding);
    background-color: var(--color-white);
    text-align: center;
}

.modules-counter-section .section-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.goal-ai-visual {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.modules-counter-section .btn {
    background: var(--color-green);
    color: var(--color-white);
}

.modules-counter-section .stat-card {
    background: hsl(0 0% 100% / .1);
    border: 1px solid var(--color-green-quarter);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.modules-counter-section .stat-card:hover {
    transform: translateY(-5px);
}

.modules-counter-section .stat-icon {
    width: 36px;
    height: 36px;
    color: var(--color-green);
}

.modules-counter-section .stat-number {
    font-size: var(--fs-28);
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.modules-counter-section .stat-label {
    font-size: var(--fs-16);
    color: var(--color-white);
    font-weight: 500;
}


/* =========================================
   8. Comparison Section
   ========================================= */

.comparison-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.comparison-section .section-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.comparison-card {
    border-radius: 16px;
    padding: 36px;
    height: 100%;
}

@media (max-width:768px) {
    .comparison-card {
        padding: 24px;
    }
}

.card-without {
    background-color: #F0F6FF;
    /* Very light blue */
}

.card-with {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.comparison-header {
    font-size: var(--fs-24);
    font-weight: 600;
    margin-bottom: var(--heading-gap);
    color: var(--color-black);
}

.comparison-header.text-white {
    color: var(--color-white);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 15px;
    font-weight: bold;
    border: 1.5px solid;
    margin-top: 3px;
}

.icon-red {
    border-color: #FF4D4F;
    color: #FF4D4F;
    background-color: rgba(255, 77, 79, 0.1);
}

.icon-green {
    background-color: #00BC5B;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.list-text {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    width: 100%;
}

.list-text.text-white {
    color: rgba(255, 255, 255, 0.95);
}

/* =========================================
   9. Explore by Industry Section
   ========================================= */

.explore-industry-section {
    padding: var(--section-padding) 0;
    background-color: #F0F8FF;
}

.industry-list {
    gap: 16px;
    align-items: center;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-icon {
    width: 36px;
    height: 36px;
    background-color: #00C853;
    /* Green */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.industry-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Adjust gap on smaller screens */
@media (max-width: 991px) {
    .industry-list {
        gap: 15px;
        justify-content: flex-start;
        flex-wrap: nowrap !important;
        /* Override Bootstrap flex-wrap */
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        padding-left: 20px;
        /* Add safety padding */
        padding-right: 20px;
    }

    .industry-list::-webkit-scrollbar {
        height: 4px;
    }

    .industry-list::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    /*.industry-item {*/
    /*    flex: 0 0 auto;*/
    /* Prevent shrinking */
    /*    background: white;*/
    /*    padding: 8px 16px 8px 8px;*/
    /*    border-radius: 50px;*/
    /* Optional: make them look like chips */
    /*}*/
}

/* =========================================
   10. Customer Stories Section
   ========================================= */

.stories-section {
    padding: var(--section-padding) 0;
    background: radial-gradient(100.04% 100.04% at 50% -0.01%, rgba(0, 188, 91, 0.20) 0%, rgba(0, 188, 91, 0.00) 50%), #FFF;
}

@media (max-width:768px) {
    .stories-section {
        padding: 36px 0;
    }
}

/* Stories Marquee Wrapper */
.story-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    background-color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-blue {
    border: 1px solid var(--color-blue);
}

.card-green {
    border: 1px solid var(--color-green);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-logo {
    height: 30px;
    width: auto;
}

.profile-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    background-size: cover;
}

.story-intro {
    font-size: 13px;
    color: var(--color-black);
    font-weight: 500;
}

.story-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.4;
}

.story-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.story-link {
    font-size: var(--fs-14);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-blue {
    color: var(--color-blue);
}

.link-green {
    color: var(--color-green);
}

.story-link .arrow {
    transition: transform 0.2s ease;
}

.story-link:hover .arrow {
    transform: translateX(4px);
}

/* Stories Marquee Wrapper */
.stories-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            #000 6%,
            #000 94%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            #000 6%,
            #000 94%,
            transparent 100%);
}

/* Stories Marquee Track */
.stories-marquee-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

/* Story card inside marquee — fixed width */
.stories-marquee-track .story-card {
    flex-shrink: 0;
    width: 380px;
}

/* Row 1 — Right to Left */
.stories-marquee-rtl {
    animation: stories-scroll-rtl 60s linear infinite;
}

/* Row 2 — Left to Right */
.stories-marquee-ltr {
    animation: stories-scroll-ltr 60s linear infinite;
}

/* Pause on hover */
.stories-marquee-wrapper:hover .stories-marquee-track {
    animation-play-state: paused;
}

/* Keyframes */
@keyframes stories-scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes stories-scroll-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .stories-marquee-track .story-card {
        width: 320px;
    }

    .stories-marquee-rtl,
    .stories-marquee-ltr {
        animation-duration: 28s;
    }
}

@media (max-width: 768px) {
    .stories-marquee-track .story-card {
        width: 280px;
    }

    .stories-marquee-track {
        gap: 16px;
    }

    .stories-marquee-rtl,
    .stories-marquee-ltr {
        animation-duration: 22s;
    }
}

/* =========================================
   11. Latest Updates Section
   ========================================= */

.latest-updates-section {
    padding: var(--section-padding) 0;
    background-color: #F0F6FF;
}

.latest-updates-section .section-title,
.latest-updates-section .section-desc {
    text-align: left;
}

@media (max-width:768px) {

    .latest-updates-section .section-title,
    .latest-updates-section .section-desc {
        text-align: center;
    }

    .latest-updates-section .btn {
        margin: auto;
    }
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--content-gap);
}

.update-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-blue-quarter);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.update-img-container {
    height: 180px;
    overflow: hidden;
}

.update-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.update-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.update-tag {
    font-size: var(--fs-16);
    font-weight: 500;
    color: var(--color-black);
    text-transform: capitalize;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.update-title {
    font-size: var(--fs-16);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--color-black);
    flex-grow: 1;
}

.update-link {
    font-size: var(--fs-14);
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.update-link:hover {
    text-decoration: underline;
}

/* =========================================
   12. CTA Banner Section
   ========================================= */

.cta-banner-section {
    padding: var(--section-padding) 0;
    background-color: #F0F6FF;
}

.cta-banner {
    background-image: url('../img/blue-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--fs-32);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Abstract Shapes */
.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: 1;
}

.cta-shape-left {
    width: 200px;
    height: 400px;
    left: -50px;
    bottom: -100px;
}

.cta-shape-right {
    width: 250px;
    height: 400px;
    right: -50px;
    bottom: -150px;
}


/*------ contact page style start --------*/
.contact-hero-section {
    padding: var(--section-padding) 0;
    background: var(--color-blue);
}

.contact-hero-section h1 {
    font-size: var(--fs-36);
    line-height: normal;
    color: var(--color-white);
    font-weight: 500;
    text-align: center;
}

.contact-hero-section p {
    font-size: var(--fs-16);
    color: var(--color-white);
    line-height: normal;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ---- Contact Form Section ---- */
.contact-form-section {
    padding: var(--section-padding) 0;
    padding-top: 0;
    background-color: var(--color-light-blue);
}

.contact-form-header {
    text-align: center;
    margin-bottom: var(--heading-gap);
}

.contact-form-header h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.contact-form-header p {
    font-size: var(--fs-16);
    color: #666;
    line-height: 1.5;
}

/* Form Grid (2 columns for name/email/phone/company) */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: var(--fs-16);
    font-family: var(--font-family-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
    color: #999;
    font-size: var(--fs-14);
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px var(--color-green-quarter);
}

.contact-form .form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field-full {
    margin-bottom: 16px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: var(--fs-16);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

/* Map Wrapper */
.contact-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* Info Cards Row */
.contact-info-cards-row {
    margin-top: 40px;
}

.contact-info-card {
    background: var(--color-white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-blue);
}

.contact-info-title {
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: var(--fs-14);
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.contact-info-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: var(--color-blue);
}

/* ---- Responsive: Contact Form Section ---- */
@media (max-width: 991px) {
    .contact-form-map-row {
        flex-direction: column;
    }

    .contact-map-wrapper {
        min-height: 300px;
    }

    .contact-map-wrapper iframe {
        min-height: 300px;
    }

    .contact-info-cards-row {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper {
        min-height: 250px;
    }

    .contact-map-wrapper iframe {
        min-height: 250px;
    }

    .contact-info-card {
        padding: 20px 18px;
    }
}

/*------- contact page style end --------*/


/*------ privacy-policy page style start --------*/
.pp-hero-section {
    padding: var(--section-padding) 0;
    background: var(--color-blue);
    text-align: center;
}

.pp-hero-section h1 {
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.pp-hero-section p {
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Content Section */
.pp-content-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-light-blue);
}

/* Content Blocks */
.pp-block {
    padding-bottom: 16px;
    margin-bottom: 16px;
    /* border-bottom: 1px solid #eee; */
}

.pp-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pp-block h2 {
    font-size: var(--fs-28);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

.pp-block h3 {
    font-size: var(--fs-24);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 14px;
}

.pp-block h4 {
    font-size: var(--fs-16);
    font-weight: 600;
    color: var(--color-black);
    margin-top: 16px;
    margin-bottom: 8px;
}

.pp-block p {
    font-size: var(--fs-16);
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.pp-block p:last-child {
    margin-bottom: 0;
}

.pp-block ol {
    padding-left: 20px;
    margin: 12px 0;
}

.pp-block ol li {
    font-size: var(--fs-16);
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .pp-content-wrapper {
        padding: 28px 20px;
    }

    .pp-block {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/*------ privacy-policy page style end --------*/


/*----- all product page syle start -------*/

.all-product-section {
    /*padding: var(--section-padding) 0;*/
    /*background-color: var(--color-light-blue);*/
}

.all-product-section .col-12 {
    text-align: center;
}

.all-product-section .section-tag {
    font-size: var(--fs-14);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 24px;
    text-align: center;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: var(--color-blue-half);
}

.all-product-section .section-title {
    font-size: var(--fs-32);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 10px;
    text-align: center;
}

.all-product-section .section-title span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.all-product-section .section-subtitle {
    font-size: var(--fs-24);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--heading-gap);
    text-align: center;
}

.all-product-section .section-desc {
    font-size: var(--fs-16);
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}


.all-product-section .stat-card {
    background: var(--color-white);
    border: 1px solid rgb(71 125 255 / 50%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.all-product-section .stat-card:hover {
    transform: translateY(-5px);
}

.all-product-section .stat-icon {
    width: 36px;
    height: 36px;
    color: var(--color-green);
}

.all-product-section .stat-number {
    font-size: var(--fs-28);
    font-weight: 700;
    color: var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.all-product-section .stat-label {
    font-size: var(--fs-16);
    color: #666;
    font-weight: 500;
}

.all-product-section .product-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-blue-half);
    transition: all 0.3s ease;
    height: 100%;
}

.all-product-section .product-item:hover {
    border: 1px solid var(--color-blue);
    box-shadow: 0 4px 12px rgba(16, 67, 159, 0.3);
}

.all-product-section .product-item img {
    width: 100%;
    height: auto;
    display: block;
}

.all-product-section .product-item .product-title {
    font-size: var(--fs-24);
    font-weight: 600;
    color: var(--color-black);
}

.all-product-section .product-item .product-desc {
    font-size: var(--fs-16);
    color: var(--color-black);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .all-product-section .product-item .product-desc {
        min-height: 250px;
    }
}

.all-product-section .product-item a {
    font-size: var(--fs-14);
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    background: var(--color-blue);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.all-product-section .product-item a:hover {
    text-decoration: none;
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 67, 159, 0.3);
}

/*----- all product page style end -------*/

/*----- retail softwrere style start ------*/

/* ---- Retail Hero Section ---- */
.retail-hero-section {
    padding: var(--section-padding) 0;
    background: radial-gradient(70.45% 34.9% at 50% -2.93%, #00BC5B 0%, #0E3BA6 100%);
    position: relative;
    overflow: hidden;
}

.retail-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--color-white);
    font-size: var(--fs-14);
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.retail-hero-title {
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.retail-hero-desc {
    font-size: var(--fs-16);
    color: var(--color-white);
    line-height: 1.7;
    margin-bottom: 16px;
}

.retail-hero-desc strong {
    color: var(--color-white);
    font-weight: 600;
}

.retail-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.retail-btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid var(--color-white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: var(--fs-14);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.retail-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ---- Retail Demo Form ---- */
.retail-demo-form {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.retail-form-title {
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 6px;
}

.retail-form-subtitle {
    font-size: var(--fs-14);
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.retail-form-field {
    margin-bottom: 12px;
}

.retail-form-field input,
.retail-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: var(--fs-14);
    font-family: var(--font-family-primary);
    color: var(--color-black);
    background-color: #F8F9FA;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.retail-form-field input::placeholder,
.retail-form-field textarea::placeholder {
    color: #999;
    font-size: var(--fs-14);
}

.retail-form-field input:focus,
.retail-form-field textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px var(--color-green-quarter);
    background-color: var(--color-white);
}

.retail-form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.retail-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: var(--fs-16);
    font-weight: 600;
    border-radius: 8px;
    gap: 8px;
}

/* ---- Retail Tag Badge ---- */
.retail-tag {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    color: var(--color-blue);
    background: var(--color-blue-half);
    font-size: var(--fs-14);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ---- Features Section ---- */
.retail-features-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-light-blue);
}

.retail-features-header {
    text-align: center;
    margin-bottom: 48px;
}

.retail-features-title {
    font-size: var(--fs-32);
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

/* ---- Feature Card ---- */
.retail-feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-blue-half);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.retail-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border: 1px solid var(--color-blue);
}

.retail-feature-icon {
    width: 48px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00BC5B 0%, #0E3BA6 100%);
}

.retail-feature-card-title {
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
    line-height: 1.4;
}

.retail-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.retail-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--fs-14);
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.retail-feature-list li:last-child {
    margin-bottom: 0;
}

.retail-feature-list li svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-top: 4px;
    color: var(--color-green);
    flex-shrink: 0;
}

/* ---- Why Choose Section ---- */
.retail-why-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-light-blue);
}

.retail-why-header {
    text-align: center;
    margin-bottom: 48px;
}

.retail-why-title {
    font-size: var(--fs-32);
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

/* ---- Why Checklist ---- */
.retail-why-checklist {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.retail-why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-blue-half);
}

.retail-why-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: hsl(217 89% 40% / .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.retail-why-item-icon svg stroke {
    color: var(--color-blue) !important;
}

.retail-why-item span {
    flex: 1;
    font-size: var(--fs-16);
    font-weight: 500;
    color: var(--color-black);
}

.retail-why-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.retail-why-check svg {
    width: 14px !important;
    height: 14px !important;
}

/* ---- Why Content Block ---- */
.retail-why-content {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E8ECF0;
}

.retail-why-content-title {
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

.retail-why-content p {
    font-size: var(--fs-16);
    color: var(--color-black);
    opacity: .8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.retail-why-content p:last-child {
    margin-bottom: 0;
}

.retail-why-cta-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background-color: var(--color-green-half);
    border-radius: 8px;
}

.retail-why-cta-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.retail-why-cta-box p {
    font-size: var(--fs-14);
    color: var(--color-black);
    margin: 0;
    line-height: 1.6;
}

/* ---- Responsive: Retail Sections ---- */
@media (max-width: 991px) {

    .retail-demo-form {
        margin-top: 36px;
    }

    .retail-features-header,
    .retail-why-header {
        margin-bottom: 32px;
    }

    .retail-why-checklist {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {

    .retail-hero-actions {
        flex-direction: column;
    }

    .retail-hero-actions .btn,
    .retail-hero-actions .retail-btn-outline {
        width: 100%;
        text-align: center;
    }

    .retail-demo-form {
        padding: 24px 20px;
    }

    .retail-features-section,
    .retail-why-section {
        padding: 36px 0;
    }

    .retail-feature-card {
        padding: 22px 20px;
    }

    .retail-why-content {
        padding: 28px 22px;
    }

    .retail-why-cta-box {
        padding: 16px;
    }
}

/*----- retails softwere end -------*/

/*----- gallery style start -------*/

/* ---- Gallery Hero Section ---- */
.gallery-hero-section {
    padding: var(--section-padding) 0;
    background: var(--color-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--color-white);
    font-size: var(--fs-14);
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.gallery-hero-title {
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.gallery-hero-desc {
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ---- Gallery Content Section ---- */
.gallery-content-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

/* Section Title */
.gallery-section-title {
    font-size: var(--fs-28);
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 24px;
}

/* ---- Filter Tabs ---- */
.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.gallery-tab {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--fs-14);
    font-weight: 500;
    font-family: var(--font-family-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid #ddd;
    background: var(--color-white);
    color: #666;
}

.gallery-tab:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.gallery-tab.active {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

/* ---- Gallery Divider ---- */
.gallery-divider {
    width: 60px;
    height: 3px;
    background: var(--color-green);
    margin: 0 auto 36px;
    border-radius: 2px;
}

/* ---- Gallery Grid ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ---- Photo Count ---- */
.gallery-photo-count {
    text-align: center;
    font-size: var(--fs-14);
    color: #888;
    margin-top: 32px;
    font-weight: 400;
}

/* ---- Gallery Lightbox ---- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-prev {
    left: 24px;
}

.gallery-lightbox-next {
    right: 24px;
}

/* ---- Responsive: Gallery ---- */
@media (max-width: 991px) {
    .gallery-filter-tabs {
        gap: 8px;
    }

    .gallery-tab {
        padding: 6px 16px;
        font-size: 13px;
    }

    .gallery-grid {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .gallery-hero-section {
        padding: 36px 0;
    }

    .gallery-content-section {
        padding: 36px 0;
    }

    .gallery-section-title {
        font-size: var(--fs-24);
        margin-bottom: 20px;
    }

    .gallery-filter-tabs {
        gap: 6px;
    }

    .gallery-tab {
        padding: 6px 14px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .gallery-lightbox-prev {
        left: 12px;
    }

    .gallery-lightbox-next {
        right: 12px;
    }

    .gallery-lightbox-nav,
    .gallery-lightbox-close {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-photo-count {
        margin-top: 24px;
        font-size: 12px;
    }
}

/*------ gallery style end -------*/


/*------ partnership page style start ------*/
.partnership-hero {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.partnership-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background-color: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
    font-size: var(--fs-14);
    font-weight: 600;
}

.partnership-badge.bg-light-green {
    background: rgba(0, 188, 91, 0.1);
    color: var(--color-green);
}

.partnership-badge-outline {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--color-blue-half);
    color: var(--color-blue);
    font-size: var(--fs-14);
    font-weight: 500;
    background: rgba(14, 59, 166, 0.1);
}

.partnership-badge-outline.white {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.partnership-title {
    font-size: var(--fs-36);
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.text-blue {
    color: var(--color-blue);
}

.text-green {
    color: var(--color-green);
}

.partnership-desc {
    font-size: var(--fs-16);
    color: var(--color-grey);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.partnership-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-blue-light {
    background-color: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-blue-light:hover {
    background-color: rgba(16, 67, 159, 0.2);
    color: var(--color-blue);
}

.partnership-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-box {
    background-color: var(--color-light-blue);
    border-radius: 8px;
    padding: 24px 32px;
    min-width: 180px;
    text-align: center;
}

.stat-box h3 {
    font-size: var(--fs-28);
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.stat-box p {
    font-size: var(--fs-14);
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.partnership-products {
    padding: var(--section-padding) 0;
    background-color: var(--color-light-blue);
}

.section-title {
    font-size: var(--fs-36);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-black);
}

.section-subtitle {
    font-size: var(--fs-16);
    color: var(--color-grey);
    line-height: 1.6;
}

.erp-wheel-img {
    max-width: 600px;
    width: 100%;
}

.partnership-process {
    background: var(--color-light-blue);
}

.process-wrapper {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    border-radius: 24px;
    padding: 60px 40px;
}

.process-wrapper .section-title {
    color: var(--color-white);
}

.process-steps {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px 24px;
}

.process-step-card {
    color: var(--color-white);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.process-step-card:hover {
    transform: translateY(-5px);
}

.step-num {
    background-color: var(--color-white);
    color: var(--color-green);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-16);
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step-card h4 {
    font-size: var(--fs-20);
    font-weight: 600;
    margin-bottom: 12px;
}

.process-step-card p {
    font-size: var(--fs-14);
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.partnership-benefits {
    padding: var(--section-padding) 0;
    background: var(--color-light-blue);
}

.benefit-card {
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--color-blue-half);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h4 {
    font-size: var(--fs-16);
    font-weight: 600;
    color: var(--color-black);
}

.benefit-card p {
    font-size: var(--fs-14);
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.h4-title h4 {
    padding: 0px 0px 16px 0px;
}

.partnership-cta {
    background: var(--color-light-blue);
}

.cta-wrapper {
    background-color: var(--color-blue);
    border-radius: 24px;
    padding: 48px;
    color: var(--color-white);
}

.cta-title {
    font-size: var(--fs-32);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: var(--fs-14);
    opacity: 0.9;
    max-width: 90%;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    font-size: 12px;
    opacity: 0.8;
}

.contact-text strong {
    font-size: var(--fs-14);
    font-weight: 400;
}

.cta-company-info {
    text-align: end;
}

@media (max-width:991px) {
    .cta-company-info {
        text-align: left;
    }
}

.cta-right-col {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: var(--fs-14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-actions .btn-blue-light {
    color: var(--color-blue);
    background: var(--color-white);
}

.cta-actions .btn-blue-light:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .partnership-title {
        font-size: 36px;
    }

    .cta-right-col {
        padding-left: 14px;
        border-left: none;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .partnership-hero {
        padding: 50px 0 40px;
    }

    .partnership-title {
        font-size: 28px;
    }

    .partnership-hero-actions {
        flex-direction: column;
    }

    .partnership-stats {
        gap: 16px;
    }

    .stat-box {
        width: 100%;
        padding: 20px;
    }

    .process-wrapper {
        padding: 40px 20px;
    }

    .cta-wrapper {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 24px;
    }
}

/*------ career page style start ------*/

/*------ career page style start ------*/
.career-hero {
    background: radial-gradient(70.45% 34.9% at 50% -2.93%, #00BC5B 0%, #0E3BA6 100%);
}

.career-hero .partnership-badge {
    color: var(--color-white);
    background: hsl(0 0% 100% / .1);
}

.career-hero .partnership-title {
    color: var(--color-white);
    font-weight: 700;
}

.career-hero .partnership-desc {
    color: var(--color-white);
}

.career-culture {
    padding: var(--section-padding) 0;
    background-color: var(--color-light-blue);
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: var(--fs-14);
    font-weight: 600;
}

.badge-light-green {
    background-color: rgba(0, 188, 91, 0.1);
    color: var(--color-green);
}

.badge-light-white {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.badge-light-blue {
    background-color: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
}

.section-title {
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: var(--fs-16);
    color: var(--color-grey);
    line-height: 1.6;
    max-width: 700px;
}

.culture-card {
    background-color: var(--color-white);
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.culture-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    margin-bottom: 20px;
}

.culture-card h4 {
    font-size: var(--fs-18);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
}

.culture-card p {
    font-size: var(--fs-14);
    color: var(--color-grey);
    line-height: 1.6;
    margin: 0;
}

.career-perks {
    background-color: var(--color-light-blue);
}

.perks-wrapper {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    border-radius: 24px;
    padding: 60px 40px;
}

.perk-pill {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    height: 100%;
    font-size: var(--fs-16);
    font-weight: 400;
    text-align: left;
}

.perks-wrapper .section-title {
    color: var(--color-white);
    margin: 0;
}

.career-testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--color-light-blue);
}

.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.stars {
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: var(--fs-16);
    color: var(--color-black);
    line-height: 1.8;
    font-weight: 500;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #eaeaea;
    padding: 16px 0 0 0;
    width: 100%;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info h6 {
    font-size: var(--fs-16);
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--color-grey);
}

.career-roles {
    background-color: var(--color-light-blue);
}

.role-accordion {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.role-item {
    background: var(--color-white);
    border: 1px solid #eaeaea;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.role-item:focus-within,
.role-item:has(> .accordion-header > .role-header-btn:not(.collapsed)) {
    border-color: var(--color-blue) !important;
    box-shadow: 0 4px 20px rgba(14, 59, 166, 0.05);
}

.role-header-btn {
    background: transparent;
    padding: 24px;
    box-shadow: none !important;
    border: none;
    border-radius: 12px !important;
}

.role-header-btn:not(.collapsed) {
    background-color: transparent;
    color: inherit;
}

.role-header-btn::after {
    margin-left: auto;
}

.role-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(14, 59, 166, 0.1);
    color: var(--color-blue);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 15px;
    flex-shrink: 0;
}

.role-info h4 {
    font-size: var(--fs-18);
    font-weight: 600;
    color: var(--color-black);
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}

.role-tags span {
    font-size: 13px;
    color: var(--color-grey);
    display: flex;
    align-items: center;
    gap: 6px;
}

.role-tags svg {
    flex-shrink: 0;
    color: var(--color-blue);
}

.role-body {
    padding: 0 24px 24px;
}

.role-body h6 {
    font-size: var(--fs-14);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
}

.role-body p {
    font-size: var(--fs-14);
    color: var(--color-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tags span {
    background-color: #f0f4ff;
    color: var(--color-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: none;
}

.role-offers {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.role-offers li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: var(--fs-14);
    color: var(--color-grey);
    line-height: 1.6;
}

.role-offers li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--color-grey);
    border-radius: 50%;
}

.apply-modal-content {
    border-radius: 16px;
    border: 1px solid var(--color-blue) !important;
    box-shadow: 0 10px 40px rgba(14, 59, 166, 0.15);
}

.apply-input {
    background-color: #f4f7fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.apply-input:focus {
    border-color: var(--color-blue);
    background-color: var(--color-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 59, 166, 0.1);
}

.upload-box {
    transition: all 0.3s ease;
    border: 1px dashed #ced4da;
    background-color: #fff;
    border-radius: 8px;
}

.upload-box:hover {
    border-color: var(--color-blue) !important;
    background-color: #f8fbff !important;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stat-card {
        width: 100%;
        padding: 20px;
    }

    .perks-wrapper {
        padding: 40px 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .role-tags {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/*------ career page style end ------*/


/* Custom Accordion & Modal (Vanilla CSS since Bootstrap JS/CSS is removed) */
.accordion-collapse {
    display: none;
}

.accordion-collapse.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.role-header-btn {
    width: 100%;
    text-align: left;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.role-header-btn::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: auto;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23606060'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.role-header-btn:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 40px 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    width: 100%;
    max-width: 550px;
    margin: 1.75rem auto;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.modal-content {
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-blue) !important;
    box-shadow: 0 10px 40px rgba(14, 59, 166, 0.15);
    overflow: hidden;
}

.modal-body {
    padding: 24px;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    font-size: 20px;
    width: 1em;
    height: 1em;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 1;
}

/* Premium Modal Effects */
.apply-input {
    transition: all 0.3s ease;
}

.apply-input:hover {
    background-color: #F0F4FA !important;
}

.apply-input:focus {
    border-color: var(--color-blue) !important;
    background-color: var(--color-white) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(14, 59, 166, 0.1) !important;
}

.upload-box:hover {
    border-color: var(--color-blue) !important;
    background-color: #EEF4FF !important;
}

.apply-submit-btn:hover {
    box-shadow: 0 12px 25px rgba(14, 59, 166, 0.35) !important;
    transform: translateY(-2px);
    color: white !important;
}

.form-label {
    display: block;
    margin-bottom: 10px !important;
}

.apply-input {
    width: 100% !important;
    display: block;
}

@media (max-width: 576px) {
    .apply-modal-content {
        border-radius: 12px !important;
    }

    .modal {
        padding: 20px 10px !important;
    }
}