/* ==============================
   Our Approach
============================== */

.approach-area {
    background: #fff;
}

.approach-card {
    position: relative;
    height: 100%;
    padding: 40px 35px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    transition: all 0.35s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.approach-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f6fb;
    color: #ba9a43;
    font-size: 32px;
    transition: all 0.35s ease;
}

.approach-card:hover .approach-icon {
    background: #ba9a43;
    color: #fff;
}

.approach-number {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.approach-card h3 {
    margin-bottom: 15px;
    font-size: 23px;
}

.approach-card p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.8;
}


/* ==============================
   Team & Data Section
============================== */

.approach-feature-area {
    background: #f8f9fa;
}

.approach-feature-content {
    height: 100%;
    padding: 45px 35px;
    background: #fff;
    border-radius: 8px;
}

.feature-icon {
    margin-bottom: 20px;
    color: #ba9a43;
    font-size: 40px;
}

.approach-feature-content h2 {
    margin-bottom: 18px;
    font-size: 28px;
}

.approach-feature-content p {
    color: #666;
    line-height: 1.8;
}


/* ==============================
   Closing Statement
============================== */

.approach-statement-area {
    padding: 80px 0;
    background: #ba9a43;
}

.approach-statement {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.approach-statement > i {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 45px;
}

.approach-statement h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 32px;
}

.approach-statement p {
    margin-bottom: 0;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
}



/* =========================================================
   VINTEK PRODUCTS AREA
========================================================= */

.vintek-products-area {
    background: #f7f9fc;
}


/* Category */

.vintek-product-category {
    margin-top: 55px;
}

.vintek-product-category:first-of-type {
    margin-top: 45px;
}


/* Category Heading */


.vintek-category-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.vintek-category-heading .category-line {
    width: 35px;
    height: 3px;
    background: #c49b3b;
    flex-shrink: 0;
}

.vintek-category-heading h3 {
    margin: 0;
    color: #172b4d;
    font-size: 24px;
    font-weight: 700;
}

.vintek-category-heading .category-count {
    margin-left: auto;
    padding: 5px 12px;
    border: 1px solid #d9e1eb;
    border-radius: 30px;
    background: #fff;
    color: #718096;
    font-size: 12px;
    font-weight: 600;
}


/* Product Card */

.vintek-product-card {
    position: relative;
    min-height: 190px;
    margin-bottom: 30px;
    padding: 30px 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 10px;

    overflow: hidden;

    transition: all 0.35s ease;
}


/* Large Number */

.vintek-product-card .product-number {
    position: absolute;
    top: 10px;
    right: 18px;

    color: #eef1f5;

    font-size: 58px;
    font-weight: 800;
    line-height: 1;

    transition: all 0.35s ease;
}


/* Icon */

.vintek-product-card .product-icon {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 8px;

    background: #f3f6fa;
    color: #c49b3b;

    font-size: 27px;

    transition: all 0.35s ease;
}


/* Product Title */

.vintek-product-card h3 {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #172b4d;

    font-size: 23px;
    font-weight: 700;

    transition: all 0.35s ease;
}


/* Bottom Accent */

.vintek-product-card::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: linear-gradient(
        90deg,
        #1d4f8c,
        #c49b3b
    );

    transition: width 0.4s ease;
}


/* Hover */

.vintek-product-card:hover {
    transform: translateY(-6px);

    border-color: #c49b3b;

    box-shadow: 0 15px 35px rgba(20, 50, 90, 0.10);
}

.vintek-product-card:hover::after {
    width: 100%;
}

.vintek-product-card:hover .product-icon {
    background: #1d3b6d;
    color: #fff;

    transform: scale(1.06);
}

.vintek-product-card:hover .product-number {
    color: #f1f3f6;
    transform: scale(1.08);
}

.vintek-product-card:hover h3 {
    color: #1d4f8c;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vintek-category-heading h3 {
        font-size: 22px;
    }

    .vintek-product-card {
        min-height: 180px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .vintek-category-heading {
        gap: 10px;
    }

    .vintek-category-heading h3 {
        font-size: 20px;
    }

    .vintek-category-heading .category-count {
        font-size: 11px;
        padding: 4px 9px;
    }

    .vintek-product-card {
        min-height: 165px;
        padding: 25px 22px;
    }

    .vintek-product-card .product-number {
        font-size: 50px;
    }

    .vintek-product-card .product-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .vintek-product-card h3 {
        font-size: 20px;
    }
}




/*
=========================================================
VINTEK PRELOADER / LOGO LOADER
=========================================================
*/

/* Main Preloader */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 99999;
    overflow: hidden;

    background-color: var(--white-color);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease-out;
}


/* Loader Container */

.loader {
    position: relative;

    width: 220px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 100000;
}


/* Vintek Logo */

.vintek-loader-logo {
    width: 190px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Logo Image */

.vintek-loader-logo img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 190px;

    object-fit: contain;

    animation: vintekLogoPulse 1.8s ease-in-out infinite;
}


/*
=========================================================
LOGO PULSE ANIMATION
=========================================================
*/

@keyframes vintekLogoPulse {

    0% {
        opacity: 0.65;
        transform: scale(0.94);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.65;
        transform: scale(0.94);
    }

}


/*
=========================================================
LOADED STATE
=========================================================
*/

.loaded .loader-wrapper {
    visibility: hidden;

    transform: translateY(-100%);

    transition:
        all 0.3s 1s ease-out;
}


/* Fade Logo */

.loaded .loader {
    opacity: 0;

    transform: scale(0.95);

    transition:
        all 0.3s ease-out;
}


/*
=========================================================
MOBILE
=========================================================
*/

@media (max-width: 767px) {

    .loader {
        width: 180px;
        height: 100px;
    }

    .vintek-loader-logo {
        width: 160px;
    }

    .vintek-loader-logo img {
        max-width: 160px;
    }

}




/* =========================================================
   VINTEK COMPANY OVERVIEW
   Scoped CSS - Does not affect existing sections
========================================================= */

.vintek-company-overview {
    position: relative;
    background: #f7f9fc;
    overflow: hidden;
}

/* =========================================================
   VINTEK - WHO WE ARE
   Clean enhancement of existing structure
========================================================= */

.vintek-who-section {
    position: relative;
    overflow: hidden;
}


/* Main Content */

.vintek-who-content {
    max-width: 900px;
    margin: 0 auto;
}


/* Top Label */

.vintek-who-content .top-title {
    position: relative;
    display: inline-block;

    padding-left: 40px;

    color: #c49b3b;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


.vintek-who-content .top-title::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 28px;
    height: 2px;

    background: #c49b3b;

    transform: translateY(-50%);
}


/* Main Heading */

.vintek-who-content h2 {
    margin-top: 12px;
    margin-bottom: 22px;

    color: #172b4d;

    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}


.vintek-who-content h2 span {
    color: #c49b3b;
}


/* Description */

.vintek-who-content p {
    max-width: 850px;

    margin: 0 auto 8px;

    color: #687385;

    font-size: 15px;
    line-height: 1.8;
}


.vintek-who-content strong {
    color: #1d4f8c;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.vintek-mission-vision {
    position: relative;
    margin-top: 10px;
}


/* Vertical Divider on Desktop */

.vintek-mission-vision .col-lg-6:first-child {
    border-right: 1px solid #e2e7ed;
}


/* Purpose */

.vintek-purpose {
    display: flex;
    align-items: flex-start;

    padding: 15px 35px;

    text-align: left;

    transition: all 0.3s ease;
}


/* Icon */

.vintek-purpose .purpose-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 20px;

    background: #f5f7fa;

    border-radius: 8px;

    color: #c49b3b;

    font-size: 25px;

    transition: all 0.3s ease;
}


/* Text */

.vintek-purpose .purpose-text {
    flex: 1;
}


/* Small Label */

.vintek-purpose .purpose-text > span {
    display: block;

    margin-bottom: 4px;

    color: #c49b3b;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* Heading */

.vintek-purpose .purpose-text h3 {
    margin: 0 0 8px;

    color: #172b4d;

    font-size: 21px;
    font-weight: 700;
}


/* Paragraph */

.vintek-purpose .purpose-text p {
    margin: 0;

    color: #687385;

    font-size: 14px;
    line-height: 1.7;
}


/* Subtle Hover */

.vintek-purpose:hover .purpose-icon {
    background: #1d4f8c;
    color: #ffffff;

    transform: translateY(-2px);
}


.vintek-purpose:hover .purpose-text h3 {
    color: #1d4f8c;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .vintek-who-content h2 {
        font-size: 32px;
    }

    .vintek-purpose {
        padding: 15px 20px;
    }

}


@media (max-width: 767px) {

    .vintek-who-content h2 {
        font-size: 27px;
    }

    .vintek-who-content p {
        font-size: 14px;
    }

    .vintek-mission-vision .col-lg-6:first-child {
        border-right: none;
        border-bottom: 1px solid #e2e7ed;

        padding-bottom: 20px;
        margin-bottom: 15px;
    }

    .vintek-purpose {
        padding: 10px 5px;
    }

    .vintek-purpose .purpose-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        margin-right: 15px;

        font-size: 21px;
    }

    .vintek-purpose .purpose-text h3 {
        font-size: 19px;
    }

}

/* =========================================================
   VINTEK - WHO WE ARE OVER HERO SLIDER
========================================================= */

.vnt-who-overlap {
    position: relative;

    z-index: 20;

    margin-top: -60px;

    padding-bottom: 20px;
}


/* White Content Box */

.vnt-who-box {
    position: relative;

    padding: 38px 60px 35px;

    background: #ffffff;

    border-radius: 0;

    box-shadow: 0 12px 35px rgba(20, 40, 70, 0.08);

    overflow: hidden;
}


/* Small top decorative line */

.vnt-who-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 55px;
    height: 3px;

    background: #c49b3b;

    transform: translateX(-50%);
}


/* WHO WE ARE */

.vnt-who-box .top-title {
    position: relative;

    display: inline-block;

    margin-bottom: 10px;

    padding-left: 13px;

    color: #c49b3b;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 0.3px;
}


.vnt-who-box .top-title::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 2px;
    height: 16px;

    background: #c49b3b;

    transform: translateY(-50%);
}


/* Main Heading */

.vnt-who-box h2 {
    margin: 0 auto 15px;

    color: #07152f;

    font-size: 36px;

    line-height: 1.25;

    font-weight: 700;
}


.vnt-who-box h2 span {
    color: #c49b3b;
}


/* Description */

.vnt-who-box p {
    max-width: 900px;

    margin: 0 auto;

    color: #687385;

    font-size: 15px;

    line-height: 1.7;
}


.vnt-who-box p strong {
    color: #1d4f8c;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .vnt-who-overlap {
        margin-top: -45px;
    }

    .vnt-who-box {
        padding: 35px 35px 30px;
    }

    .vnt-who-box h2 {
        font-size: 30px;
    }

}


@media (max-width: 767px) {

    .vnt-who-overlap {
        margin-top: -30px;
    }

    .vnt-who-box {
        padding: 30px 20px 25px;
    }

    .vnt-who-box h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .vnt-who-box p {
        font-size: 14px;
        line-height: 1.65;
    }

}


/* =========================================================
   VINTEK - FEATURE HIGHLIGHTS
   Scoped CSS
========================================================= */

.vintek-features-section {
    position: relative;
    background: #ffffff;
}


/* Card */

.vintek-feature-card {
    position: relative;

    height: 100%;
    min-height: 285px;

    padding: 40px 32px 35px;

    background: #ffffff;

    border: 1px solid #e3e8ef;
    border-radius: 8px;

    overflow: hidden;

    text-align: center;

    transition: all 0.35s ease;
}


/* Top Gold Line */

.vintek-feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 45px;
    height: 3px;

    background: #c49b3b;

    transform: translateX(-50%);

    transition: width 0.35s ease;
}


/* Bottom Hover Line */

.vintek-feature-card::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: linear-gradient(
        90deg,
        #1d4f8c,
        #c49b3b
    );

    transition: width 0.4s ease;
}


/* Background Number */

.vintek-feature-card .feature-number {
    position: absolute;

    top: 8px;
    right: 18px;

    color: #f1f4f7;

    font-size: 70px;
    font-weight: 800;

    line-height: 1;

    transition: all 0.35s ease;
}


/* Icon */

.vintek-feature-card .feature-icon {
    position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background: #f5f7fa;

    border-radius: 50%;

    color: #c49b3b;

    font-size: 28px;

    transition: all 0.35s ease;
}


/* Label */

.vintek-feature-card .feature-label {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 6px;

    color: #c49b3b;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


/* Heading */

.vintek-feature-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #172b4d;

    font-size: 21px;
    font-weight: 700;

    transition: color 0.3s ease;
}


/* Description */

.vintek-feature-card p {
    position: relative;
    z-index: 2;

    max-width: 330px;

    margin: 0 auto;

    color: #687385;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   HOVER
========================================================= */

.vintek-feature-card:hover {
    transform: translateY(-7px);

    border-color: #d5dce5;

    box-shadow:
        0 18px 40px rgba(20, 50, 90, 0.10);
}


.vintek-feature-card:hover::before {
    width: 75px;
}


.vintek-feature-card:hover::after {
    width: 100%;
}


.vintek-feature-card:hover .feature-icon {
    background: #1d4f8c;

    color: #ffffff;

    transform: translateY(-3px);
}


.vintek-feature-card:hover .feature-number {
    color: #f5f7f9;

    transform: scale(1.08);
}


.vintek-feature-card:hover h3 {
    color: #1d4f8c;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vintek-feature-card {
        margin-bottom: 25px;

        min-height: 270px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vintek-feature-card {
        min-height: auto;

        padding: 35px 25px 30px;
    }

    .vintek-feature-card .feature-number {
        font-size: 60px;
    }

    .vintek-feature-card .feature-icon {
        width: 58px;
        height: 58px;

        font-size: 25px;
    }

    .vintek-feature-card h3 {
        font-size: 20px;
    }

    .vintek-feature-card p {
        font-size: 14px;
    }

}



/* =========================================================
   VINTEK INFRASTRUCTURE
   Equal Height + Centered Icons + Responsive
========================================================= */

.infrastructure-area {
    position: relative;
}


/* =========================================================
   GRID
========================================================= */

.infrastructure-area .row {
    display: flex;
    flex-wrap: wrap;
}


/* Make every column equal height */

.infrastructure-area .row > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}


/* =========================================================
   INFRASTRUCTURE CARD
========================================================= */

.infrastructure-area .single-feathers {
    width: 100%;
    height: 100%;
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;

    text-align: center;
}


/* =========================================================
   ICON
========================================================= */

.infrastructure-area .single-feathers > i {
    position: relative;

    display: flex !important;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center;

    line-height: 1;

    transition: all 0.3s ease;
}


/* =========================================================
   HEADING
========================================================= */

.infrastructure-area .single-feathers h3 {
    width: 100%;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.infrastructure-area .single-feathers p {
    width: 100%;
    max-width: 360px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;

    line-height: 1.7;
}


/* =========================================================
   HOVER ICON
========================================================= */

.infrastructure-area .single-feathers:hover > i {
    transform: translateY(-3px);
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .infrastructure-area .row > [class*="col-"] {
        min-height: 330px;
    }

    .infrastructure-area .single-feathers {
        min-height: 300px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .infrastructure-area .row > [class*="col-"] {
        min-height: 320px;
    }

    .infrastructure-area .single-feathers {
        min-height: 290px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .infrastructure-area .row {
        display: block;
    }

    .infrastructure-area .row > [class*="col-"] {
        display: block;

        min-height: auto;

        margin-bottom: 25px;
    }

    .infrastructure-area .single-feathers {
        width: 100%;

        min-height: auto;
        height: auto;

        padding-left: 15px;
        padding-right: 15px;
    }

    .infrastructure-area .single-feathers > i {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .infrastructure-area .single-feathers p {
        max-width: 500px;
    }

}