/*BANNER*/
.vdom-hero {
    width: 100%;
    min-height: 620px;
    display: flex;
    position: relative;
}

/* left teal panel */
.vdom-hero-left {
    width: 46%;
    min-width: 360px;
    background: rgb(109, 174, 218);
    overflow: hidden;
}

/* subtle frame like screenshot */
.vdom-hero-frame {
    position: absolute;
    inset: 90px 36% 90px 20%;
    border: 6px solid rgba(255, 255, 255, .18);
    pointer-events: none;
    z-index: 2;
}

/* content */
.vdom-hero-content {
    position: absolute;
    padding: 90px 0 90px 24%;
    color: #fff;
    z-index: 2;
}

.vdom-hero-left {
    display: flex;
    align-items: center;
}

.vdom-hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    opacity: .95;
}

.vdom-hero-line {
    width: 70px;
    height: 2px;
    background: rgba(255, 255, 255, .75);
    display: inline-block;
}

.vdom-hero-kicker-text {
    font-size: 12px;
    letter-spacing: .8px;
    font-weight: 600;
    text-transform: uppercase;
}

/* big serif title */
.vdom-hero-title {
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 1.05;
    margin: 0 0 34px;
}

.vdom-hero-btn {
    background-color: #4693c6;
}

/* right image */
.vdom-hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

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

    /* semi transparent dark layer */
    background: rgba(0, 0, 0, 0.25);

    pointer-events: none;
}

/* optional “steps” left side */
.vdom-hero-steps {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vdom-hero-steps span {
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, .35);
    display: block;
}

.vdom-hero-steps span.active {
    background: rgba(255, 255, 255, .9);
}

.vdom-hero-nums {
    position: absolute;
    left: 28px;
    top: calc(50% + 52px);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.vdom-hero-nums .active {
    color: #fff;
}

/*ABOUT*/
.vdom-about {
    padding: 90px 0;
    background: #fff;
}

.vdom-about-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */
.vdom-about-images {
    position: relative;
    min-height: 560px;
}

.vdom-about-dots {
    position: absolute;
    right: 0;
    top: -26px;
    width: 110%;
    height: 110%;
    background-image: radial-gradient(rgba(0, 0, 0, .12) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: .6;
    z-index: 0;
}

.vdom-about-img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.vdom-about-img-1 {
    left: 0;
    top: 0;
    width: 420px;
    height: 560px;
    z-index: 1;
}

.vdom-about-img-2 {
    left: 240px;
    top: 130px;
    width: 300px;
    height: 340px;
    z-index: 2;
    transition: all .25s ease;
}

.vdom-about-img-2:hover {
    transform: scale(1.2);
}

/* bottom nav like demo */
.vdom-about-nav {
    position: absolute;
    left: 0;
    bottom: -45px;
    display: flex;
    gap: 22px;
    font-weight: 600;
    font-size: 16px;
}

.vdom-about-nav a {
    color: #111;
    text-decoration: none;
}

.vdom-about-nav a:hover {
    color: #6daeda;
}

/* RIGHT */
.vdom-about-content {
    padding-top: 20px;
}

.vdom-about-text {
    margin-top: 22px;
    max-width: 520px;
}

.vdom-about-text p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}

/*LAST PROJECTS*/
/* wrapper */
.vdom-projects {
    background-color: #f6f7f8;
    padding: 24px 0 44px;
}

.vdom-swiper-wrap {
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow: hidden;
}

/* slick must allow overflow for side slides */
.vdom-slick {
    overflow: visible;
}

.vdom-slick .slick-list {
    overflow: visible;
}

.vdom-slick .slick-track {
    display: flex;
}

/* slide spacing */
.vdom-slick .slick-slide {
    padding: 0 14px;
}

/* slide base */
.vdom-slide {
    height: 520px;
    position: relative;
    transform: scale(.97);
    opacity: .85;
    transition: transform .35s ease, opacity .35s ease;
}

/* center slide bigger */
.vdom-slick .slick-center .vdom-slide {
    transform: scale(1);
    opacity: 1;
}

/* background image */
.vdom-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/*Slide Thumbnail*/
.vdom-thumbs{
    position:absolute;
    right:20px;
    bottom:20px;
    display:flex;
    gap:8px;
    padding:8px;
    background:#ffffffd6;
}

.vdom-thumb{
    width:80px;
    height:60px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid transparent;
    transition:.25s;
}

.vdom-thumb:hover{
    border-color:#2aa9b2;
}

/* card fade in (only on center slide) */
.vdom-card {
    position: absolute;
    left: 60%;
    bottom: 50px;
    transform: translate(-50%, 20px);
    width: min(610px, 86%);
    background: #ffffffd1;
    padding: 28px 34px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
}

.vdom-card .title {
    color: black;
    font-size: 18px;
    font-weight: bold;
}

.vdom-card .description {
    font-size: 14px;
    color: #555555;
}

.vdom-card .read-more-btn {
    letter-spacing: 0;
}

.vdom-slick .slick-center .vdom-card {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.vdom-controls {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.vdom-controls button {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 8px;
    transition: color .25s ease;
}

.vdom-controls button:hover {
    color: #6daeda;
}

/*PREFER*/
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 1200px;
    padding: 0 15px;
}

/* Feature Item Styling */
.feature-item {
    background-color: #f6f7f8;
    padding: 50px 30px;
    text-align: center;
}

.feature-icon img {
    max-width: 64px;
    margin-bottom: 30px;
    filter: invert(70%) sepia(22%) saturate(853%) hue-rotate(171deg) brightness(92%) contrast(92%);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/*WORK*/
.vdom-work .row {
    display: flex;
    flex-wrap: wrap;
}

/* Image styling */
.vdom-work .work-img {
    overflow: hidden;
}

.vdom-work .work-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vdom-work .work-img img:hover {
    transform: scale(1.03);
}

/* Info section */
.vdom-work .work-info {
    padding: 10px 0;
}

/* Title styling */
.vdom-work .work-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

/* Location styling */
.vdom-work .work-location {
    font-size: 14px;
    color: #555;
}

.vdom-work .author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

/*QUOTE*/
.vdom-split {
    position: relative;
    min-height: 600px;
    padding: 60px 0;
}

.vdom-split .vdom-about-dots {
    height: 100%;
    top: 0;
    bottom: 0;
}

.vdom-split__inner {
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    top: 0;
    height: 100%;
}

.vdom-split__controls {
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    top: 0;
    left: 40%;
}

.vdom-split__controls button {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 10px;
    font-weight: 700;
}

.vdom-split__controls button:hover {
    color: #6daeda;
}

/* 2 columns */
.vdom-split__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

/* LEFT slick */
.vdom-left {
    min-width: 0;
    position: relative;
}

/* important for grid + slick */
.vdom-left-slick {
    width: 100%;
}

.vdom-left-slide {
    position: relative;
    padding-top: 10px;
}

.vdom-quote {
    font-size: 90px;
    line-height: 1;
    color: #6daeda;
    opacity: 0.3;
    font-weight: 700;
    margin-bottom: 8px;
    position: absolute;
    top: -20px;
}

.vdom-text {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.7;
    color: #667;
    margin: 0 0 35px;
}

.vdom-person__name {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.vdom-person__role {
    font-size: 15px;
    color: #7a7f86;
}

/* remove blue outline */
.vdom-left-slick *:focus {
    outline: none;
}

/* RIGHT */
.vdom-right {
    position: relative;
}

.vdom-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #eee;
}

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

/* stat cards */
.vdom-stat {
    position: absolute;
    background: rgba(255, 255, 255, .9);
    padding: 24px 20px;
    min-width: 190px;
    width: 220px;
    text-align: center;
}

.vdom-stat--top {
    top: 18px;
    right: 18px;
}

.vdom-stat--bottom {
    left: 18px;
    bottom: 18px;
}

.vdom-stat__num {
    font-size: 40px;
    color: #203334;
}

.vdom-stat__label {
    margin-top: 6px;
    font-size: 18px;
    color: #111;
    font-weight: 700;
}

/* avatar floating */
.vdom-avatar {
    width: 100px;
    height: 100px;
}

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

/* responsive */
@media (max-width: 992px) {
    .vdom-split__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vdom-avatar {
        left: 14px;
        top: auto;
        bottom: -32px;
        transform: none;
    }
}

/*RESPONSIVE*/

@media (max-width: 1500px) {
    .vdom-card {
        left: 50%;
    }
}

@media (max-width: 1280px) {
    .vdom-slide {
        height: 440px;
    }

    .vdom-hero-title {
        font-size: 42px;
    }

    .vdom-about {
        padding: 36px 0;
    }

    .vdom-about-inner {
        display: block !important;
        padding: unset;
    }

    .vdom-about-inner .vdom-about-images {
        min-height: 480px;
    }

    .vdom-about-img-1 {
        width: 60%;
        height: 400px;
        left: 10%;
    }

    .vdom-about-img-2 {
        width: 42%;
        left: 50%;
    }

    .vdom-about-content {
        text-align: center;
    }

    .vdom-about-text {
        margin: auto;
        max-width: 90%;
    }
}

/* responsive */
@media (max-width: 992px) {
    .vdom-slide {
        height: 380px;
    }

    .vdom-hero {
        flex-direction: column;
    }

    .vdom-hero-left {
        width: 100%;
        min-width: 0;
    }

    .vdom-hero-right {
        min-height: 380px;
    }

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

    .vdom-hero-frame {
        inset: 60px 24px;
    }

    .vdom-hero-content {
        top: 0;
        padding: 24% 12%;
    }

    .vdom-hero-steps, .vdom-hero-nums {
        display: none;
    }

    .vdom-about-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vdom-about-inner .vdom-about-images {
        min-height: 350px;
    }

    .vdom-about-img-1 {
        height: 300px;
    }

    .vdom-about-img-2 {
        height: 200px;
    }

    .vdom-about-nav {
        position: static;
        margin-top: 16px;
    }

    .vdom-split .vdom-text {
        max-width: 100%;
    }

    .vdom-split .vdom-split__controls {
        left: 38%;
        top: -38px;
    }

    .vdom-split__inner.container {
        max-width: unset !important;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .vdom-work .col-lg-4 {
        flex: 0 0 48%;
    }
}

@media (max-width: 576px) {
    .vdom-slide {
        height: 340px;
    }
}

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

    .vdom-work .col-lg-4 {
        flex: 0 0 100%;
    }
}

