/* =========================================================================
   Vyasaka Ind layout stylesheet
   Design tokens sampled from the reference screenshot:
     - Accent blue/teal .......... #0C90CE  (hero button, focus strip, links, icon circles)
     - Hero gradient start ....... #3B168A  (violet)
     - Hero gradient end ......... #0E318B  (deep blue)
     - Ink / headings ............ #212529
     - Muted body text ........... #5B6470
     - Offer section background .. #E9E9E9
     - Contact section background  #F2FBFA
     - Footer background ......... #222222
     - Testimonial band .......... #14170D (dark, photographic in the source)
   Headings: Poppins (600/700/800), Body: Nunito Sans (400/600/700)
   Buttons: full pill radius. Cards: 2px flat corners with soft shadow.
   ========================================================================= */

:root {
    --vind-accent: #0C90CE;
    --vind-accent-dark: #0A76A8;
    --vind-grad-start: #3B168A;
    --vind-grad-end: #0E318B;
    --vind-ink: #212529;
    --vind-muted: #5B6470;
    --vind-offer-bg: #ECECEC;
    --vind-contact-bg: #F2FBFA;
    --vind-footer-bg: #202020;
    --vind-dark-band: #14170D;
    --vind-border: #E3E5E8;
    --vind-heading-font: "Poppins", "Segoe UI", sans-serif;
    --vind-body-font: "Nunito Sans", "Segoe UI", sans-serif;
}

.vind-navbar,
.vind-hero,
.vind-story,
.vind-happenings,
.vind-approach,
.vind-offer,
.vind-stats,
.vind-testimonial,
.vind-contact,
.vind-footer {
    font-family: var(--vind-body-font);
    color: var(--vind-ink);
    box-sizing: border-box;
}

.vind-navbar *,
.vind-hero *,
.vind-story *,
.vind-happenings *,
.vind-approach *,
.vind-offer *,
.vind-stats *,
.vind-testimonial *,
.vind-contact *,
.vind-footer *,
.vind-navbar *::before,
.vind-hero *::before,
.vind-happenings *::before {
    box-sizing: border-box;
}

.vind-section-heading {
    font-family: var(--vind-heading-font);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1.7rem;
    color: var(--vind-ink);
    margin-bottom: 3rem;
}

.vind-section-heading-light {
    color: #ffffff;
}

.vind-btn-pill {
    border-radius: 999px;
    padding: 0.85rem 2.1rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.vind-hero-copy .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.vind-btn-accent {
    background: var(--vind-accent);
    color: #ffffff;
    box-shadow: 0 10px 24px -8px rgba(12, 144, 206, 0.65);
}

.vind-btn-accent:hover {
    background: var(--vind-accent-dark);
    color: #fff;
}

.vind-btn-outline {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border: 1px solid #C9CDD2;
    color: var(--vind-ink);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    background: #fff;
}

.vind-btn-outline:hover {
    border-color: var(--vind-accent);
    color: var(--vind-accent);
}

.vind-btn-outline-dark {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 1px solid var(--vind-ink);
    color: var(--vind-ink);
    font-weight: 600;
    font-size: 0.85rem;
    background: transparent;
}

.vind-btn-outline-dark:hover {
    background: var(--vind-ink);
    color: #fff;
}

/* ---------------------------------------------------------------------
   Navbar
   --------------------------------------------------------------------- */
.vind-navbar {
    background: #ffffff;
    position: relative;
    z-index: 40;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.vind-navbar-inner {
    padding: 0.9rem 0;
}

.vind-navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.vind-navbar-mark {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-block;
    flex: 0 0 auto;
}

.vind-navbar-mark-diamond {
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #C6316F, #E8577E);
    transform: rotate(45deg);
    border-radius: 3px;
    opacity: 0.92;
}

.vind-navbar-mark-top {
    top: 0;
    left: 9px;
}

.vind-navbar-mark-left {
    top: 9px;
    left: 0;
    opacity: 0.7;
}

.vind-navbar-mark-right {
    top: 9px;
    left: 18px;
    opacity: 0.7;
}

.vind-navbar-mark-bottom {
    top: 18px;
    left: 9px;
    opacity: 0.5;
}

.vind-navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.vind-navbar-brand-name {
    font-family: var(--vind-heading-font);
    font-weight: 800;
    font-size: 1.5rem;
    color: #2B2560;
    text-transform: lowercase;
    letter-spacing: 0.01em;
}

.vind-navbar-brand-tagline {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8A8FA3;
}

.vind-navbar-brand-img {
    height: 34px;
    width: auto;
}

.vind-navbar-toggler {
    border: none;
    font-size: 1.4rem;
    color: var(--vind-ink);
    background: none;
}

.vind-navbar-toggler:focus {
    box-shadow: none;
}

.vind-navbar-links {
    gap: 1.9rem;
    align-items: center;
}

.vind-navbar-links .nav-link {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--vind-ink);
    padding: 0.3rem 0;
    position: relative;
}

.vind-navbar-links .nav-link.active,
.vind-navbar-links .nav-link:hover {
    color: var(--vind-accent);
}

@media (max-width: 991.98px) {
    .vind-navbar-links {
        gap: 0.4rem;
        padding-top: 0.75rem;
    }
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
   Hero  (replace the existing "Hero" block in the main stylesheet
   with everything below — selectors are unchanged so nothing else
   in the file needs to move)
   --------------------------------------------------------------------- */
.vind-hero {
    position: relative;
    overflow: hidden;
    background: #0f1f70;
}

.vind-hero-carousel {
    position: relative;
}

.vind-hero-carousel .carousel-item {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    /* keep the oversized globe from pushing layout below */
}

.vind-hero-carousel .carousel-item>.container {
    min-height: 720px;
    display: flex;
    align-items: center;
}

.vind-hero .row {
    width: 100%;
    align-items: center;
}

.vind-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.vind-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;
}

.vind-hero .container {
    position: relative;
    z-index: 20;
}

.vind-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    z-index: 3;
}


.vind-hero-copy {
    position: relative;
    z-index: 20;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vind-hero-copy .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.vind-hero-eyebrow {
    display: inline-block;
    color: #9FE7FF;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.vind-hero-title {
    font-family: var(--vind-heading-font);
    font-weight: 800;
    font-size: 3.4rem;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 1.1rem;
}

.vind-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

/* Font-free chevrons: renders identically with or without an icon font
   loaded, which also prevents any leftover "missing glyph" boxes if the
   icon font used elsewhere on the page fails to load. */
.vind-hero-arrow {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    opacity: 1;
    z-index: 25;
}

.vind-hero-arrow:hover {
    color: #ffffff;
}

.vind-hero-arrow.carousel-control-prev {
    left: 1rem;
}

.vind-hero-arrow.carousel-control-next {
    right: 1rem;
}

.vind-hero-dots {
    position: absolute;
    bottom: 2.4rem;
    left: 5%;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    z-index: 25;
}

.vind-hero-dots [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    opacity: 1;
    margin: 0 5px;
    padding: 0;
    text-indent: -9999px;
    transition: width 0.2s ease, background 0.2s ease;
}

.vind-hero-dots [data-bs-target].active {
    width: 22px;
    background: var(--vind-accent);
}

@media (max-width: 991.98px) {
    .vind-hero-title {
        font-size: 2rem;
    }
}

/* ---------------------------------------------------------------------
   Our Story
   --------------------------------------------------------------------- */
.vind-story {
    background: #ffffff;
    padding: 6rem 0;
}

.vind-story-row {
    margin-top: 0.5rem;
}

.vind-story-card {
    border: 1px solid var(--vind-border);
    box-shadow: 0 20px 45px -25px rgba(20, 20, 40, 0.35);
    background: #fff;
    overflow: hidden;
}

.vind-story-card-bar {
    background: linear-gradient(90deg, #2b2b2b, #565656);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    position: relative;
}

.vind-story-card-avatar {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #c9432f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.vind-story-card-bar-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    font-size: 0.85rem;
}

.vind-story-card-bar-text em {
    font-style: normal;
    opacity: 0.65;
    font-size: 0.75rem;
}

.vind-story-card-bar-title {
    margin-left: auto;
    text-align: right;
    font-weight: 700;
    font-size: 0.95rem;
}

.vind-story-card-bar-title small {
    display: block;
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.68rem;
}

.vind-story-card-media {
    position: relative;
    background: #111;
}

.vind-story-card-media img {
    width: 100%;
    display: block;
    aspect-ratio: 16/7;
    object-fit: cover;
    opacity: 0.9;
}

.vind-story-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #d92d20;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.vind-story-card-chips {
    display: flex;
    border-top: 1px solid var(--vind-border);
}

.vind-story-chip {
    flex: 1 1 50%;
    display: flex;
    gap: 0.6rem;
    padding: 1rem 1.1rem;
    border-right: 1px solid var(--vind-border);
}

.vind-story-chip:last-child {
    border-right: none;
}

.vind-story-chip-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--vind-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.vind-story-chip:nth-child(2) .vind-story-chip-icon {
    background: #4CAF50;
}

.vind-story-chip-copy {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--vind-muted);
}

.vind-story-chip-copy strong {
    color: var(--vind-ink);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.vind-story-watch-btn {
    display: block;
    text-align: center;
    background: #6f6f6f;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem;
    text-decoration: none;
}

.vind-story-watch-btn i {
    margin-right: 0.4rem;
    color: #ff0000;
    background: #fff;
    border-radius: 3px;
    padding: 1px 3px;
}

.vind-story-watch-btn:hover {
    background: #5c5c5c;
    color: #fff;
}

.vind-story-copy {
    padding-top: 0.5rem;
}

.vind-story-copy p {
    color: var(--vind-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.vind-story-links a {
    color: var(--vind-accent);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.2rem;
}

.vind-story-links a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .vind-story {
        padding: 3.5rem 0;
    }

    .vind-story-copy {
        margin-top: 2.5rem;
    }
}

/* ---------------------------------------------------------------------
   Latest Happenings
   --------------------------------------------------------------------- */
.vind-happenings {
    background: #ffffff;
    padding: 5rem 0 6rem;
}

.vind-happenings-row {
    margin-top: 1rem;
}

.vind-happenings-eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vind-ink);
    margin-bottom: 0.85rem;
}

/* Banner built entirely from CSS shapes (diagonal color blocks) echoing
   the source design's geometric cut-out motif; no matching source photo
   was provided for this specific product banner. */
.vind-happenings-banner {
    position: relative;
    aspect-ratio: 16/9.2;
    overflow: hidden;
    background: linear-gradient(135deg, #5B2A86 0%, #2E1E63 55%, #101634 100%);
    box-shadow: 0 20px 45px -25px rgba(20, 20, 40, 0.4);
    margin-bottom: 1.5rem;
}

.vind-happenings-banner-shape {
    position: absolute;
    opacity: 0.85;
}

.vind-shape-a {
    width: 60%;
    height: 140%;
    background: rgba(190, 170, 235, 0.35);
    top: -20%;
    left: -10%;
    transform: rotate(18deg);
}

.vind-shape-b {
    width: 45%;
    height: 160%;
    background: rgba(12, 144, 206, 0.55);
    bottom: -30%;
    left: 18%;
    transform: rotate(18deg);
}

.vind-shape-c {
    width: 40%;
    height: 160%;
    background: rgba(230, 60, 130, 0.25);
    top: -30%;
    left: 38%;
    transform: rotate(18deg);
}

.vind-happenings-banner-copy {
    position: absolute;
    right: 6%;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
    text-align: right;
}

.vind-happenings-product-name {
    font-family: var(--vind-heading-font);
    font-weight: 800;
    font-size: 2rem;
    color: #ffffff;
}

.vind-happenings-product-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
}

.vind-happenings-desc {
    color: var(--vind-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

/* ---------------------------------------------------------------------
   Latest Happenings — additions / overrides
   Add this AFTER the existing "Latest Happenings" block in the main
   stylesheet (or replace the matching selectors in place).
   --------------------------------------------------------------------- */

/* Focus areas strip — bigger, and each segment reacts on hover */
.vind-focus-strip {
    display: flex;
    margin-bottom: 2rem;
    min-height: 260px;
    /* was 130px */
}

.vind-focus-seg {
    flex: 1 1 0;
    padding: 1.4rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px dashed rgba(255, 255, 255, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.vind-focus-seg:last-child {
    border-right: none;
}

.vind-focus-seg-accent {
    background: var(--vind-accent);
    flex: 0 0 26%;
}

.vind-focus-seg-dark {
    background: #101010;
}

.vind-focus-seg:hover {
    transform: translateY(-3px);
}

.vind-focus-seg-accent:hover {
    background: var(--vind-accent-dark);
}

.vind-focus-seg-dark:hover {
    background: #1c1c1c;
}

.vind-focus-seg-eyebrow {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.vind-focus-seg-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
}

.vind-focus-seg-accent .vind-focus-seg-title {
    font-size: 1.15rem;
    text-transform: lowercase;
}

@media (max-width: 991.98px) {
    .vind-focus-strip {
        flex-wrap: wrap;
        min-height: 0;
    }

    .vind-focus-seg {
        flex: 1 1 50%;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
        min-height: 150px;
    }
}

/* Case-study tiles — image-filled, clickable, with a hover lift */
.vind-happenings-card-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16/10;
    border: 1px solid var(--vind-border);
    box-shadow: 0 12px 25px -18px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vind-happenings-card-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -18px rgba(0, 0, 0, 0.55);
}

/* Featured banner — same hover treatment when it's a clickable image */
button.vind-happenings-banner {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: inherit;
}

button.vind-happenings-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px -20px rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------------------------
   Lightbox — embeds a Google Slides deck (jumped to the clicked slide)
   in a full-screen, letterboxed viewer, matching the native Slides
   embed chrome (prev/next arrows, slide counter, branding at bottom
   are all part of Google's own iframe — nothing to build for those).
   --------------------------------------------------------------------- */
.vind-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.vind-lightbox-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.vind-lightbox-frame-wrap {
    position: relative;
    width: min(1400px, 92vw);
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
}

.vind-lightbox-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vind-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

.vind-lightbox-close:hover {
    background: var(--vind-accent);
    border-color: var(--vind-accent);
}

@media (max-width: 767.98px) {
    .vind-lightbox-frame-wrap {
        width: 96vw;
    }
}

/* ---------------------------------------------------------------------
   Our Approach
   --------------------------------------------------------------------- */
.vind-approach {
    background: #ffffff;
    padding: 5.5rem 0;
}

.vind-approach-row {
    border: 1px solid var(--vind-border);
}

.vind-approach-col {
    border-right: 1px solid var(--vind-border);
}

.vind-approach-col:last-child {
    border-right: none;
}

.vind-approach-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    height: 100%;
}

.vind-approach-icon {
    font-size: 2.1rem;
    color: var(--vind-ink);
    margin-bottom: 1.1rem;
}

.vind-approach-title {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.vind-approach-underline {
    width: 34px;
    height: 2px;
    background: var(--vind-accent);
    display: block;
}

.vind-approach-highlight-col {
    position: relative;
}

.vind-approach-highlight {
    background: #ffffff;
    box-shadow: 0 24px 55px -20px rgba(20, 20, 40, 0.35);
    padding: 2.4rem 2.2rem;
    height: 170%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vind-approach-highlight-title {
    font-size: 1.3rem;
    color: #4b4b4b;
    font-weight: 400;
    line-height: 1.35;
    max-width: 220px;
    margin-bottom: 1.5rem;
}

.vind-approach-highlight-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vind-approach-highlight-number {
    font-family: var(--vind-heading-font);
    font-weight: 800;
    font-size: 3.4rem;
    color: var(--vind-accent);
    line-height: 1;
}

.vind-approach-highlight-copy {
    display: flex;
    flex-direction: column;
}

.vind-approach-highlight-copy strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vind-ink);
}

.vind-approach-highlight-copy span {
    font-size: 0.72rem;
    color: var(--vind-muted);
    max-width: 170px;
}

@media (max-width: 991.98px) {
    .vind-approach {
        padding: 3.5rem 0;
    }

    .vind-approach-col {
        border-right: none;
        border-bottom: 1px solid var(--vind-border);
    }

    .vind-approach-highlight-col {
        border-bottom: none;
    }
}

button.vind-approach-card {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    cursor: pointer;
}

button.vind-approach-card:hover {
    cursor: pointer;
}

/* Highlight card — same clickable/hover treatment when a presentation/embed is configured */
button.vind-approach-highlight {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.vind-approach-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(20, 20, 40, 0.45);
}

/* ---------------------------------------------------------------------
   What We Offer
   --------------------------------------------------------------------- */
.vind-offer {
    background: var(--vind-offer-bg);
    padding: 5.5rem 0;
}

.vind-offer-col {
    margin-bottom: 1.6rem;
}

.vind-offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid #DADADA;
    padding: 3.2rem 1.5rem;
    text-decoration: none;
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vind-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.35);
}

.vind-offer-icon {
    font-size: 2.2rem;
    color: var(--vind-ink);
    margin-bottom: 1.2rem;
}

.vind-offer-title {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--vind-ink);
    margin-bottom: 0.8rem;
}

.vind-offer-underline {
    width: 34px;
    height: 2px;
    background: var(--vind-accent);
    display: block;
}

@media (max-width: 767.98px) {
    .vind-offer {
        padding: 3.5rem 0;
    }
}

/* ---------------------------------------------------------------------
   Stats band
   --------------------------------------------------------------------- */
.vind-stats {
    background: linear-gradient(100deg, #2c3448 0%, #454d63 100%);
    background-size: cover;
    background-position: top;
    padding: 3.2rem 0;
    position: relative;
    height: 250px;
}

.vind-stats-row {
    text-align: center;
}

.vind-stats-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vind-stats-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--vind-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.vind-stats-number {
    font-family: var(--vind-heading-font);
    font-weight: 800;
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.vind-stats-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767.98px) {
    .vind-stats-col {
        margin-bottom: 1.5rem;
    }
}

/* ---------------------------------------------------------------------
   Testimonial
   --------------------------------------------------------------------- */
.vind-testimonial {
    background:
        linear-gradient(rgba(10, 14, 8, 0.86), rgba(10, 14, 8, 0.86)),
        repeating-linear-gradient(45deg, #1c2415 0, #1c2415 2px, #171f11 2px, #171f11 4px);
    background-size: cover;
    padding: 5.5rem 0 6rem;
}

.vind-testimonial-slide {
    max-width: 720px;
    margin: 0 auto;
}

.vind-testimonial-avatar {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border: 3px solid #fff;
    margin-bottom: 1.1rem;
}

.vind-testimonial-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.vind-testimonial-quote-title {
    font-family: var(--vind-heading-font);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.vind-testimonial-quote-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.9;
}

.vind-testimonial-dots {
    position: static;
    margin-top: 2.5rem;
}

.vind-testimonial-dots [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    opacity: 1;
    margin: 0 4px;
    text-indent: -9999px;
}

.vind-testimonial-dots [data-bs-target].active {
    background: #ffffff;
}

/* ---------------------------------------------------------------------
   Get In Touch
   --------------------------------------------------------------------- */
.vind-contact {
    background: var(--vind-contact-bg);
    padding: 5.5rem 0;
}

.vind-contact-row {
    margin-top: 1rem;
}

.vind-contact-col-heading {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vind-ink);
    margin-bottom: 1.4rem;
}

.vind-contact-desc {
    color: var(--vind-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.vind-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.3rem;
    font-size: 0.85rem;
    color: var(--vind-muted);
}

.vind-contact-list a {
    color: var(--vind-muted);
    text-decoration: none;
}

.vind-contact-list a:hover {
    color: var(--vind-accent);
}

.vind-contact-list-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--vind-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.vind-form-control {
    border-radius: 0;
    border: 1px solid #CFE0DD;
    background: #fff;
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
}

.vind-form-control:focus {
    border-color: var(--vind-accent);
    box-shadow: 0 0 0 3px rgba(12, 144, 206, 0.15);
}

.vind-contact-twitter-link {
    color: var(--vind-accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.vind-contact-twitter-link:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .vind-contact {
        padding: 3.5rem 0;
    }

    .vind-contact-col {
        margin-bottom: 2.5rem;
    }

    .vind-contact-col:last-child {
        margin-bottom: 0;
    }
}

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.vind-footer {
    background: var(--vind-footer-bg);
    padding: 1.4rem 0;
    position: relative;
}

.vind-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.vind-footer-copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    margin: 0;
}

.vind-footer-copy strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.vind-footer-socials {
    display: flex;
    gap: 0.7rem;
    margin: 0;
}

.vind-footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px dotted rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
}

.vind-footer-socials a:hover {
    background: var(--vind-accent);
    border-color: var(--vind-accent);
    color: #fff;
}

.vind-footer-fab {
    position: fixed;
    right: 1.75rem;
    bottom: 1.75rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--vind-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 12px 25px -8px rgba(12, 144, 206, 0.75);
    z-index: 50;
    text-decoration: none;
}

.vind-footer-fab:hover {
    background: var(--vind-accent-dark);
    color: #fff;
}