/* =========================================
   Sumeet India - Custom Styles
   Purple/Navy Mockup Theme
   ========================================= */

:root {
    --color-primary: #6C4CE0;
    --color-primary-dark: #4B3BC7;
    --color-gradient-start: #6C4CE0;
    --color-gradient-end: #3E6FF0;
    --color-navy: #0E1B33;
    --color-navy-soft: #16213E;
    --color-bg-white: #FFFFFF;
    --color-bg-soft: #F5F6FB;
    --color-text-muted: #64748B;
    --color-border: #E7E9F3;
    --color-star: #FBBF24;
}

/* ---- Base ---- */
* {
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, #7C5CE7, #6C4CE0, #5B3FD4);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(108, 76, 224, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6C4CE0, #5B3FD4, #4B30C4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 76, 224, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-gradient {
    background: linear-gradient(135deg, #7C5CE7, #6C4CE0, #3E6FF0);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(108, 76, 224, 0.25);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 76, 224, 0.45);
}

/* ---- Hero Section ---- */
.hero-section {
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 27, 51, 0.95), rgba(14, 27, 51, 0.5));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

/* Glass morphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* ---- Service Cards ---- */
.service-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(108, 76, 224, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border-color: rgba(108, 76, 224, 0.2);
}

.service-card .icon-badge {
    position: absolute;
    top: calc(200px - 24px);
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7C5CE7, #6C4CE0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    z-index: 5;
    box-shadow: 0 6px 20px rgba(108, 76, 224, 0.35);
}

/* ---- Section Titles ---- */
.section-eyebrow {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #6C4CE0, #8B6CEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    color: var(--color-navy-soft);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2.25rem;
    }
}

/* ---- Carousel ---- */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 33.333%;
    }
}

.carousel-slide.active {
    transform: scale(1.05);
    z-index: 2;
}

.carousel-slide:not(.active) {
    opacity: 0.6;
    transform: scale(0.9);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7C5CE7, #6C4CE0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(108, 76, 224, 0.35);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #6C4CE0, #5B3FD4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(108, 76, 224, 0.5);
}

.carousel-arrow.prev {
    left: 0.5rem;
}

.carousel-arrow.next {
    right: 0.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 24px;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, #7C5CE7, #6C4CE0, #3E6FF0);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.testimonial-card .quote-icon {
    color: var(--color-primary);
    font-size: 2rem;
    opacity: 0.3;
}

/* ---- Stats ---- */
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(108, 76, 224, 0.15), rgba(62, 111, 240, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.875rem;
    border: 1px solid rgba(108, 76, 224, 0.15);
}

/* ---- Check List ---- */
.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.375rem 0;
}

.check-item i {
    color: var(--color-primary);
    font-size: 0.875rem;
    filter: drop-shadow(0 0 3px rgba(108, 76, 224, 0.3));
}

/* ---- Form Styles ---- */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    outline: none;
    background: #fff;
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(108, 76, 224, 0.08), 0 2px 8px rgba(108, 76, 224, 0.1);
}

.form-input.error {
    border-color: #EF4444;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- Gallery Lightbox ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10000;
}

/* ---- Badge ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 76, 224, 0.1);
    color: var(--color-primary);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }

/* ---- Scroll animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Mobile Menu ---- */
#mobileMenu.active {
    display: block;
}

/* ---- Flash Messages ---- */
.flash-message {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.flash-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.flash-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

/* ---- Table Styles ---- */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th {
    background: var(--color-bg-soft);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.data-table td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-border);
}

.data-table tr:hover td {
    background: var(--color-bg-soft);
}

/* ---- Industry Grid ---- */
.industry-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(108, 76, 224, 0.1);
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(108, 76, 224, 0.02), rgba(62, 111, 240, 0.02));
}

.industry-card .icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(108, 76, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* ---- Blog Cards ---- */
.blog-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* ---- Star Rating ---- */
.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--color-star);
    font-size: 0.875rem;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7C5CE7, #6C4CE0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6C4CE0, #5B3FD4);
}

/* ---- Responsive helpers ---- */
@media (max-width: 640px) {
    .section-heading {
        font-size: 1.5rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
}


/* =========================================
   Testimonials Section - Enhanced UI/UX
   ========================================= */

/* Section Background */
.testimonials-section {
    background: linear-gradient(180deg, #F8F6FF 0%, #FFFFFF 40%, #F5F6FB 100%);
    position: relative;
}

/* Animated Background Shapes */
.tst-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.tst-bg-shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(108, 76, 224, 0.06) 0%, transparent 70%);
    animation: tst-float 8s ease-in-out infinite;
}

.tst-bg-shape--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -100px;
    background: radial-gradient(circle, rgba(62, 111, 240, 0.05) 0%, transparent 70%);
    animation: tst-float 10s ease-in-out infinite reverse;
}

.tst-bg-shape--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    background: radial-gradient(circle, rgba(108, 76, 224, 0.04) 0%, transparent 70%);
    animation: tst-float 12s ease-in-out infinite 2s;
}

@keyframes tst-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

/* Carousel Wrapper */
.tst-carousel-wrapper {
    position: relative;
}

.tst-carousel-wrapper .carousel-slide {
    opacity: 1 !important;
    transform: none !important;
}

/* Main Testimonial Card */
.tst-card {
    position: relative;
}

.tst-card__inner {
    background: #FFFFFF;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(108, 76, 224, 0.08);
    box-shadow: 
        0 4px 6px rgba(108, 76, 224, 0.02),
        0 10px 40px rgba(108, 76, 224, 0.06),
        0 30px 60px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tst-card__inner:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 16px rgba(108, 76, 224, 0.04),
        0 20px 50px rgba(108, 76, 224, 0.1),
        0 40px 80px rgba(0, 0, 0, 0.04);
    border-color: rgba(108, 76, 224, 0.15);
}

/* Top accent gradient bar */
.tst-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C4CE0, #3E6FF0, #8B6CEF);
    opacity: 0.8;
}

/* Author Panel (Left) */
.tst-card__author-panel {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(108, 76, 224, 0.02) 0%, rgba(62, 111, 240, 0.02) 100%);
    border-bottom: 1px solid rgba(108, 76, 224, 0.06);
}

@media (min-width: 768px) {
    .tst-card__author-panel {
        border-bottom: none;
        border-right: 1px solid rgba(108, 76, 224, 0.06);
    }
}

/* Avatar */
.tst-card__avatar-wrap {
    position: relative;
    margin-bottom: 1rem;
}

.tst-card__avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(108, 76, 224, 0.15);
}

.tst-card__avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 76, 224, 0.08), rgba(62, 111, 240, 0.06));
    color: #6C4CE0;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(108, 76, 224, 0.12);
}

.tst-card__avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #6C4CE0, #3E6FF0) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: tst-ring-rotate 4s linear infinite;
}

@keyframes tst-ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Author text */
.tst-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #16213E;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.tst-card__role {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tst-card__company {
    font-size: 0.72rem;
    color: #6C4CE0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    background: rgba(108, 76, 224, 0.06);
    border-radius: 9999px;
    margin-top: 0.5rem;
}

/* Stars */
.tst-card__stars {
    display: flex;
    gap: 3px;
    margin-top: 0.75rem;
}

.tst-card__stars i {
    color: #FBBF24;
    font-size: 0.8rem;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

/* Quote Panel (Right) */
.tst-card__quote-panel {
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (max-width: 767px) {
    .tst-card__quote-panel {
        padding: 2rem 1.5rem 2rem;
    }
}

/* Quote icon */
.tst-card__quote-icon {
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Quote text */
.tst-card__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #16213E;
    font-weight: 500;
    font-style: italic;
    position: relative;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .tst-card__text {
        font-size: 1.1rem;
    }
}

/* Verified badge */
.tst-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #10B981;
    padding: 0.3rem 0.75rem;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.12);
    width: fit-content;
}

.tst-card__verified i {
    font-size: 0.7rem;
}

/* Navigation Arrows - Redesigned (override base carousel-arrow styles) */
.tst-carousel-wrapper .carousel-arrow.tst-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid rgba(108, 76, 224, 0.1);
    color: #6C4CE0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(108, 76, 224, 0.08);
}

.tst-carousel-wrapper .carousel-arrow.tst-nav-arrow:hover {
    background: linear-gradient(135deg, #6C4CE0, #5236B0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(108, 76, 224, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.tst-carousel-wrapper .carousel-arrow.tst-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.tst-nav-arrow--prev {
    left: -25px;
}

.tst-nav-arrow--next {
    right: -25px;
}

@media (max-width: 1024px) {
    .tst-nav-arrow--prev { left: -10px; }
    .tst-nav-arrow--next { right: -10px; }
}

@media (max-width: 640px) {
    .tst-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    .tst-nav-arrow--prev { left: -5px; }
    .tst-nav-arrow--next { right: -5px; }
}

/* Dots - Enhanced */
.tst-dots {
    margin-top: 2rem !important;
}

.tst-dots .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(108, 76, 224, 0.15);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tst-dots .carousel-dot:hover {
    background: rgba(108, 76, 224, 0.3);
    transform: scale(1.2);
}

.tst-dots .carousel-dot.active {
    width: 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6C4CE0, #3E6FF0);
    box-shadow: 0 2px 8px rgba(108, 76, 224, 0.35);
}

/* Trust Bar */
.tst-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
    padding: 1.5rem 2.5rem;
    background: #FFFFFF;
    border-radius: 1rem;
    border: 1px solid rgba(108, 76, 224, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
}

.tst-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tst-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 76, 224, 0.08), rgba(62, 111, 240, 0.05));
    color: #6C4CE0;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tst-trust-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #16213E;
    line-height: 1.2;
}

.tst-trust-label {
    display: block;
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 500;
}

.tst-trust-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(108, 76, 224, 0.15), transparent);
}

@media (max-width: 640px) {
    .tst-trust-bar {
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }
    .tst-trust-divider {
        display: none;
    }
    .tst-trust-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}


/* =========================================
   Gallery Section (Homepage)
   ========================================= */

/* Filter Buttons */
.gallery-filter-btn {
    background: var(--color-bg-soft);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    background: rgba(108, 76, 224, 0.08);
    color: var(--color-primary);
    border-color: rgba(108, 76, 224, 0.2);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #6C4CE0, #5236B0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(108, 76, 224, 0.3);
}

/* 3D Gallery Cards */
.gallery-3d {
    perspective: 800px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-3d-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(108, 76, 224, 0.06);
    border: 2px solid rgba(108, 76, 224, 0.08);
}

.gallery-3d:hover .gallery-3d-inner {
    box-shadow: 
        0 20px 50px rgba(108, 76, 224, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.gallery-3d-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-3d:hover .gallery-3d-img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-3d-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.gallery-3d:hover .gallery-3d-overlay {
    opacity: 1;
}

/* Zoom Icon */
.gallery-3d-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-3d:hover .gallery-3d-zoom {
    opacity: 1;
}

/* ---- Gallery Lightbox with Zoom ---- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lb-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
    line-height: 1;
}

.gallery-lb-close:hover {
    background: rgba(255,255,255,0.2);
}

.gallery-lb-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-lb-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.gallery-lb-controls button:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.gallery-lb-imgwrap {
    max-width: 90vw;
    max-height: 78vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    border-radius: 12px;
}

.gallery-lb-imgwrap img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.2s ease;
    user-select: none;
}

.gallery-lb-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .gallery-3d-inner {
        height: 160px;
        border-radius: 14px;
    }
    .gallery-grid {
        gap: 0.75rem;
    }
    .gallery-lb-controls {
        bottom: 1rem;
        padding: 0.4rem 0.75rem;
    }
    .gallery-lb-controls button {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}


/* Hide scrollbar for horizontal scroll sections */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
