
    /* =====================================================================
   service-page.css  (Video Editing in Trichy)
   Scoped stylesheet — all classes prefixed with `ve-`.
   No body{}, *{}, or font-family rules used — inherits theme typography.
   Alternating pure #ffffff / #000000 section backgrounds as required.
===================================================================== */
.ve-faq-item__answer {
    cursor: pointer;
}
.ve-container { width: 100%; max-width: 1240px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
.ve-section { padding: 64px 0; }
.ve-section--white { background-color: #ffffff; }
.ve-section--dark { background-color: #000000; }
.ve-mt-24 { margin-top: 24px; }

/* Breadcrumb */
.ve-breadcrumb { padding: 16px 0; background-color: #c5ffbc; border-bottom: 1px solid #e5e7ec; }
.ve-breadcrumb__list { display: flex; flex-wrap: wrap; align-items: center; list-style: none; margin: 0; padding: 0; gap: 8px; }
.ve-breadcrumb__item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #6b6f7b; }
.ve-breadcrumb__item:not(:last-child)::after { content: "›"; margin-left: 8px; color: #a7abb5; }
.ve-breadcrumb__link { color: #6b6f7b; text-decoration: none; transition: color 0.25s ease; }
.ve-breadcrumb__link:hover { color: #91d904; }
.ve-breadcrumb__item--active { color: #1a1a1a; font-weight: 600; }

/* Typography (light) */
.ve-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; font-weight: 700; color: #91d904; margin-bottom: 12px; }
.ve-h1 { font-size: clamp(28px, 4vw, 46px); line-height: 1.2; font-weight: 800; color: #14161b; margin: 0 0 16px; }
.ve-h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.25; font-weight: 700; color: #14161b; margin: 0 0 18px; }
.ve-h3 { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.3; font-weight: 700; color: #14161b; margin: 0 0 12px; }
.ve-h4 { font-size: 17px; line-height: 1.35; font-weight: 700; color: #14161b; margin: 0 0 8px; }
.ve-paragraph { font-size: 16px; line-height: 1.75; color: #4b4f5a; text-align: justify; margin: 0 0 14px; }
.ve-hero-block__tagline { font-size: 18px; font-weight: 600; color: #3b3f47; text-align: justify; margin-bottom: 20px; }

/* Typography (dark) */
.ve-section--dark .ve-h1, .ve-section--dark .ve-h2, .ve-section--dark .ve-h3, .ve-section--dark .ve-h4 { color: #ffffff; }
.ve-section--dark .ve-paragraph, .ve-section--dark .ve-hero-block__tagline { color: #c9cbd1; }
.ve-section--dark .ve-breadcrumb__link { color: #c9cbd1; }

/* Flow text */
.ve-flow-text { font-size: 15px; font-weight: 600; color: #26282f; background-color: #c5ffbc; border-left: 4px solid #91d904; border-radius: 10px; padding: 14px 18px; margin: 0 0 16px; line-height: 1.7; }
.ve-flow-text--dark { background-color: #16181d; color: #eef8dc; border-left-color: #91d904; }

/* Section headings */
.ve-section-heading { margin-bottom: 36px; }
.ve-section-heading--center { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.ve-section-heading--center .ve-paragraph { text-align: center; }

/* Hero */
.ve-hero-block__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.ve-hero-block__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

/* Tag Chips */
.ve-tag-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.ve-tag-chip-row--center { justify-content: center; }
.ve-tag-chip { display: inline-block; background-color: #c5ffbc; border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: #3b3f47; }

/* Buttons */
.ve-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 999px; font-size: 15px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.03em; transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease; border: 2px solid transparent; cursor: pointer; }
.ve-btn--primary { background-color: #91d904; color: #0e1207; box-shadow: 0 8px 20px rgba(145, 217, 4, 0.28); }
.ve-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(145, 217, 4, 0.38); }
.ve-btn--outline { background-color: transparent; color: #14161b; border-color: #14161b; }
.ve-btn--outline:hover { background-color: #14161b; color: #ffffff; transform: translateY(-2px); }
.ve-section--dark .ve-btn--outline { color: #ffffff; border-color: #ffffff; }
.ve-section--dark .ve-btn--outline:hover { background-color: #ffffff; color: #000000; }

/* Images / Split */
.ve-img-rounded { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 45px rgba(20, 22, 27, 0.12); object-fit: cover; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.ve-img-rounded:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(20, 22, 27, 0.18); }
.ve-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 28px; }
.ve-split--image-left .ve-split__image { order: 1; }
.ve-split--image-left .ve-split__content { order: 2; }
.ve-split--content-left .ve-split__content { order: 1; }
.ve-split--content-left .ve-split__image { order: 2; }

/* Content cards */
.ve-content-card { background-color: #ffffff; border: 1px solid #ecedf1; border-radius: 18px; padding: 32px; margin-bottom: 28px; box-shadow: 0 10px 30px rgba(20, 22, 27, 0.04); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.ve-content-card:hover { box-shadow: 0 16px 40px rgba(20, 22, 27, 0.08); transform: translateY(-3px); }
.ve-content-card:last-child { margin-bottom: 0; }
.ve-section--dark .ve-content-card { background-color: #111318; border-color: #24272f; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.ve-section--dark .ve-content-card:hover { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55); }
.ve-insight-box { background: linear-gradient(135deg, #f4faec 0%, #eef7e2 100%); border: 1px solid #d7ecb4; border-radius: 14px; padding: 20px 22px; }

/* Bullet lists */
.ve-bullet-list { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ve-bullet-list li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.65; color: #4b4f5a; text-align: justify; }
.ve-section--dark .ve-bullet-list li { color: #c9cbd1; }
.ve-bullet-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background-color: #91d904; }
.ve-bullet-list--two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }

/* Check grid */
.ve-check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ve-check-item { display: flex; align-items: center; gap: 12px; background-color: #c5ffbc; border: 1px solid #e7e9ee; border-radius: 14px; padding: 14px 16px; font-size: 15px; font-weight: 600; color: #26282f; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.ve-check-item:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(20, 22, 27, 0.08); border-color: #cdeaa0; }
.ve-section--dark .ve-check-item { background-color: #16181d; border-color: #24272f; color: #e6e8ee; }
.ve-section--dark .ve-check-item:hover { background-color: #1c1f26; box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5); border-color: #91d904; }
.ve-check-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background-color: #eef8dc; color: #5c8c00; font-weight: 800; font-size: 13px; }

/* Role grid */
.ve-role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px; }
.ve-role-item { background-color: #c5ffbc; border-radius: 14px; padding: 18px; border: 1px solid #ecedf1; transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease; }
.ve-role-item:hover { transform: translateY(-4px); background-color: #ffffff; box-shadow: 0 12px 26px rgba(20, 22, 27, 0.08); }
.ve-role-grid--dark .ve-role-item { background-color: #16181d; border-color: #24272f; }
.ve-role-grid--dark .ve-role-item:hover { background-color: #1c1f26; box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5); border-color: #91d904; }

/* Type grid */
.ve-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ve-type-card { background-color: #ffffff; border-radius: 16px; padding: 24px; border: 1px solid #ecedf1; box-shadow: 0 8px 22px rgba(20, 22, 27, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.ve-type-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09); border-color: #cdeaa0; }
.ve-type-grid--dark .ve-type-card { background-color: #111318; border-color: #24272f; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4); }
.ve-type-grid--dark .ve-type-card:hover { box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55); border-color: #91d904; }

/* Timeline */
.ve-timeline { position: relative; display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.ve-timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, #91d904 0%, rgba(145, 217, 4, 0.1) 100%); }
.ve-timeline__item { position: relative; display: flex; gap: 22px; align-items: flex-start; }
.ve-timeline__marker { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; min-width: 52px; border-radius: 50%; background-color: #91d904; color: #0e1207; font-weight: 800; font-size: 18px; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3); }
.ve-timeline__body { background-color: #111318; border: 1px solid #24272f; border-radius: 16px; padding: 20px 24px; flex: 1; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.ve-timeline__body:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55); transform: translateY(-3px); }

/* CTA */
.ve-cta-block__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.ve-cta-block__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 24px; }

/* FAQ */
.ve-faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 920px; margin: 0 auto; }
.ve-faq-item { background-color: #ffffff; border: 1px solid #ecedf1; border-radius: 14px; padding: 6px 22px; box-shadow: 0 6px 18px rgba(20, 22, 27, 0.04); transition: box-shadow 0.25s ease; }
.ve-faq-item[open] { box-shadow: 0 12px 28px rgba(20, 22, 27, 0.09); border-color: #91d904; }
.ve-faq-item__question { padding: 16px 0; font-size: 16px; font-weight: 700; color: #14161b; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.ve-faq-item__question::-webkit-details-marker { display: none; }
.ve-faq-item__question::after { content: "+"; font-size: 22px; color: #91d904; margin-left: 12px; transition: transform 0.25s ease; }
.ve-faq-item[open] .ve-faq-item__question::after { transform: rotate(45deg); }
.ve-faq-item__answer { padding: 0 0 18px; }

/* Related services */
.ve-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ve-related-card { display: block; background-color: #111318; border-radius: 16px; padding: 24px; border: 1px solid #24272f; text-decoration: none; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.ve-related-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55); border-color: #91d904; }
.ve-related-card .ve-h4 { color: #ffffff; }
.ve-related-card .ve-paragraph { margin-bottom: 0; font-size: 14.5px; color: #c9cbd1; }

/* Responsive */
@media (min-width: 1440px) { .ve-container { max-width: 1320px; } }

@media (max-width: 1199px) {
    .ve-type-grid, .ve-type-grid--dark, .ve-related-grid, .ve-check-grid { grid-template-columns: repeat(2, 1fr); }
    .ve-role-grid, .ve-role-grid--dark { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .ve-section { padding: 48px 0; }
    .ve-hero-block__grid, .ve-split { grid-template-columns: 1fr; gap: 32px; }
    .ve-split--image-left .ve-split__image, .ve-split--content-left .ve-split__image { order: -1; }
    .ve-check-grid, .ve-role-grid, .ve-role-grid--dark, .ve-type-grid, .ve-type-grid--dark, .ve-related-grid { grid-template-columns: repeat(2, 1fr); }
    .ve-bullet-list--two-col { grid-template-columns: 1fr; }
    .ve-timeline::before { left: 21px; }
    .ve-timeline__marker { width: 42px; height: 42px; min-width: 42px; font-size: 15px; }
}

@media (max-width: 767px) {
    .ve-container { padding-left: 16px; padding-right: 16px; }
    .ve-section { padding: 40px 0; }
    .ve-check-grid, .ve-role-grid, .ve-role-grid--dark, .ve-type-grid, .ve-type-grid--dark, .ve-related-grid { grid-template-columns: 1fr; }
    .ve-hero-block__cta, .ve-cta-block__buttons { flex-direction: column; align-items: stretch; }
    .ve-btn { width: 100%; }
    .ve-timeline__item { gap: 14px; }
    .ve-timeline__body { padding: 18px; }
}

@media (max-width: 480px) {
    .ve-h1 { font-size: 26px; }
    .ve-h2 { font-size: 22px; }
    .ve-h3 { font-size: 18px; }
    .ve-paragraph, .ve-bullet-list li { font-size: 14.5px; }
    .ve-content-card, .ve-insight-box, .ve-type-card, .ve-role-item { padding: 18px; }
    .ve-timeline__marker { width: 38px; height: 38px; min-width: 38px; font-size: 13px; }
    .ve-check-item { padding: 12px 14px; }
    .ve-tag-chip { font-size: 12px; padding: 5px 12px; }
}
.ve-youtube-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    margin-bottom: 24px;
}

.ve-youtube-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ve-related-card {
    overflow: hidden;
}

.ve-related-card .ve-youtube-wrapper {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .ve-related-grid {
        grid-template-columns: 1fr;
    }

    .ve-related-card .ve-youtube-wrapper {
        max-width: 100%;
    }
}
