/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --btn-hover: #b1820b;
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
}

.slide-item {
    position: relative;
    width: 100%;
    height: 560px;
    outline: none;
}

.slide-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.slide-inner {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 600px;
    text-align: left;
}

.slide-sub {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-white);
    margin-bottom: 20px;
}

.slide-divider {
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
    margin-bottom: 20px;
}

.slide-desc {
    font-size: 15px;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

.slide-btn .arrow {
    transform: translateY(-3px);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0px 12px;
    text-transform: uppercase;
}

.slide-btn.primary {
    background: var(--color-third);
    color: var(--text-white);
}

.slide-btn.primary:hover {
    background: var(--btn-hover);
}

.slide-btn.secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.slide-btn.secondary:hover {
    background: var(--text-white);
    color: #000;
    border-color: var(--text-white);
}

/* ============================================================
   SLICK DOTS & ARROWS STYLE
============================================================ */
.slick-dots {
    bottom: auto;
    z-index: 3;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    border: none;
    background: transparent;
    padding: 0;
    width: 10px;
    height: 10px;
    cursor: pointer;
    outline: none;
    font-size: 0;
    line-height: 0;
}

.slick-dots li button::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button::before {
    background: var(--color-secondary) !important;
    opacity: 1;
    transform: scale(1.2);
}

.slick-prev,
.slick-next {
    width: 44px !important;
    height: 44px !important;
    z-index: 10 !important;
    transition: all 0.3s ease;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #333 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    outline: none;
    opacity: 1 !important;
}


.slick-prev::before,
.slick-next::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    color: currentColor;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
}

.slick-prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.slick-next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--color-secondary) !important;
    color: #fff !important;
    border-color: var(--color-secondary) !important;
}

.slick-prev:hover::before,
.slick-next:hover::before {
    opacity: 1;
}

/* Dark theme overrides for hero slider */
.hero-slider .slick-dots {
    bottom: 25px;
}

.hero-slider .slick-dots li button::before {
    background: var(--text-white);
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--text-white) !important;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: var(--color-secondary) !important;
    color: #fff !important;
    border-color: var(--color-secondary) !important;
}

/* ============================================================
   PARTNER SECTION
============================================================ */
.partner-section {
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.partner-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
}

.partner-slider {
    margin: 0 auto;
    overflow: hidden;
}

.partner-slider .slick-list {
    overflow: hidden;
}

/* Hide dots for partner slider — not needed for logo strips */
.partner-slider .slick-dots {
    display: none !important;
}

.partner-item {
    padding: 0 15px;
    outline: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   RESPONSIVE LAYOUT
============================================================ */
@media (max-width: 992px) {

    .slide-item {
        height: 500px;
    }

    .slide-title {
        font-size: 38px;
    }

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }
}

@media (max-width: 768px) {

    .slide-item {
        height: 480px;
    }

    .slide-inner {
        padding: 0 12px;
    }

    .slide-title {
        font-size: 23px;
    }

    .slide-desc {
        font-size: 14px;
    }

    .slide-buttons {
        /* flex-direction: column; */
        gap: 10px;
        flex-wrap: wrap;
    }

    .slide-btn {
        /* width: 100%; */
        justify-content: center;
        padding: 10px 20px;
        font-size: 12px;
        gap: 0px 7px;
    }

    .slide-btn .arrow {

        transform: translateY(-2px);
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .slide-btn {
        width: 100%;
    }
}


/* ============================================================
   SERVICES CAPABILITIES SECTION
============================================================ */
.services-section {
    position: relative;
    width: 100%;
    padding: 50px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.sub-title {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.main-title {
    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.4;
}

.trust-engine-header .main-title {
    color: #fff;
}

.services-slider {
    margin: 0;
}

.service-slide-item {
    outline: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.services-slider .slick-track {
    display: flex !important;
}

.services-slider .slick-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.service-card {
    padding: 0 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    margin: 0 auto 25px;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-link {
    font-size: 20px;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: 30px;
}

.service-card:hover .service-card-link {
    color: var(--color-secondary);
    transform: translateX(6px);
}

@media (max-width: 992px) {
    .services-title {
        font-size: 28px;
    }

    .service-card {
        padding: 0px 10px;
    }
}

@media (max-width: 768px) {
    .service-slide-item {
        border-right: none;
    }

    .service-card-link {
        display: none;
    }

    .service-card-title {
        height: 46px;
    }

    .service-card-desc {
        margin-bottom: 0;
    }
}

/* ============================================================
   TRUST ENGINE SECTION
============================================================ */
.trust-engine-section {
    background: #0d0d0d;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative pattern */
.trust-engine-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.trust-engine-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 40px; */
}

.trust-engine-header {
    margin-bottom: 40px;
}



.trust-engine-title {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* Timeline row */
.trust-engine-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 0 30px;
}

/* Each step */
.trust-step {
    flex: 0 0 76px;
    width: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.trust-step-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    /* Double ring: inner dark fill, outer golden ring, outer halo */
    background: #1a1710;
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.12), 0 0 0 7px rgba(201, 168, 76, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.trust-step-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.trust-step:hover .trust-step-icon {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.22), 0 0 0 7px rgba(201, 168, 76, 0.10);
    border-color: #e0be6a;
}

.trust-step-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.trust-step-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin: 0;
    width: 140px;
    max-width: 140px;
}

/* Connector line + diamond dots between steps */
.trust-connector {
    display: flex;
    align-items: center;
    flex: 1;
    /* vertically center with the icon ring (half of 76px icon + 20px margin) */
    margin-top: 38px;
    padding: 0 10px;
}

.trust-connector-line {
    flex: 1;
    height: 1px;
    min-width: 20px;
    background: rgba(201, 168, 76, 0.55);
}

/* Diamond dot at each end of connector */
.trust-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-engine-title {
        font-size: 26px;
    }

    .trust-step-desc {
        max-width: 110px;
        font-size: 12px;
    }

    .trust-step-icon {
        width: 58px;
        height: 58px;
    }

    .trust-step-icon svg {
        width: 22px;
        height: 22px;
    }

    .trust-connector {
        margin-top: 31px;
    }
}

@media (max-width: 768px) {
    .trust-engine-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0 10px;
    }

    .trust-step {
        flex: 1 1 auto;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
        width: 100%;
        display: grid;
        grid-template-columns: 60px 100px 1fr;

    }

    .trust-step-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .trust-step-name {
        margin-bottom: 6px;
    }

    .trust-step-desc {
        max-width: 100%;
    }

    .trust-connector {
        flex-direction: column;
        margin-top: 0;
        margin-left: 25px;
        padding: 4px 0;
    }

    .trust-connector-line {
        min-width: 0;
        width: 1px;
        min-height: 24px;
        height: auto;
        background: rgba(201, 168, 76, 0.55);
    }

    .trust-engine-section {
        padding: 45px 0;
    }
}



/* ============================================================
   NEWS SLIDER SECTION
============================================================ */
.news-slider-section {
    background: #ffffff;
    padding: 40px 0;
}

.news-slider-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 30px;
}

.news-header-right {
    margin-bottom: 6px;
}

.view-all-link {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.news-slider .slick-track {
    display: flex !important;
}

.news-slider .slick-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.news-slide-item {
    outline: none;
    height: auto;
    display: flex;
    flex-direction: column;
}

.news-slider .slick-slide {
    margin: 0 10px;
}

.news-slider .slick-list {
    margin: 0 -10px;
}

.news-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a {
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    padding: 12px 20px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-card-category {
    font-size: 15px;
    font-weight: 700;
}

.news-card-date {
    font-size: 14px;
    color: #000;
}

/* Adjust Dots & Arrows position for News Slider */
.news-slider-section .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-slider-section {
        padding: 40px 0;
    }

    .news-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }
}


/* ============================================================
   FEATURED CASE STUDY SECTION
============================================================ */
.featured-case-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.featured-case-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.featured-case-content {
    flex: 1;
    max-width: 520px;
}

.featured-case-title .title-brand {
    display: block;
    margin-bottom: 8px;
}

.featured-case-title .title-main {
    display: block;
}

.featured-case-divider {
    width: 48px;
    height: 2px;
    background: var(--color-secondary);
    margin: 15px 0;
}

.featured-case-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 36px 0;
}

.featured-case-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.featured-case-link .arrow {
    display: inline-block;
    margin-left: 8px;
    margin-top: -4px;
    transition: transform 0.3s;
}

.featured-case-link:hover .arrow {
    transform: translateX(5px);
}

.featured-case-image {
    flex: 1.2;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.featured-case-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: transform 0.6s ease;
}

.featured-case-image:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
    .featured-case-inner {
        gap: 40px;
    }

    .featured-case-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .featured-case-section {
        padding: 40px 0;
    }

    .featured-case-inner {
        flex-direction: column;
        gap: 36px;
    }

    .featured-case-content {
        max-width: 100%;
    }

    .featured-case-image {
        width: 100%;
    }

    .featured-case-desc {
        margin-bottom: 20px;
    }
}