@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary-color: #0065f2;
    --primary-dark: #0052cc;
    --light-bg: #cce5ff;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--light-bg) 0%, #e6f0ff 100%); */
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 390px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Video Section */
/* .video-section {
        background: #F2F8FF;
        padding: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
      } */

.video-container {
    width: 100%;
    /* max-width: 800px; */
    aspect-ratio: 22 / 9;
    background-image: url('../images/linning_image.png');
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px);
    pointer-events: none;
}

.video-play-button {
    font-size: 40px;
    padding: 15px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color);
    margin-bottom: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}

.video-text {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    z-index: 1;
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-section {
        padding: 50px 20px;
    }

    .video-play-button {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .video-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .video-section {
        padding: 40px 15px;
    }

    .video-play-button {
        font-size: 35px;
        margin-bottom: 12px;
    }

    .video-text {
        font-size: 12px;
    }
}

.bespoke-section {
    /* background-color: #f5f5f5; */
    padding: 0px 80px 80px 0;
}

.bespoke-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0;
}

.bespoke-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bespoke-icon {
    /* margin-top: 100px; */
    width: 697px;
    height: 460px;
    border: 0px solid var(--primary-color);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background-color: #F2F8FF;
}

.bespoke-right {
    flex: 1;
}

.bespoke-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 60px;
}

.bespoke-description {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 30px;
    margin-top: -40px;
}

.bespoke-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 40px;
}

.bespoke-button:hover {
    background-color: var(--primary-dark);
}

.bespoke-industries-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bespoke-industries {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.industry-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.industry-item:last-child {
    border-bottom: none;
}

.industry-name {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.industry-name:hover {
    color: var(--primary-dark);
}

.industry-arrow {
    font-size: 16px;
    color: var(--primary-color);
}

.arrow-icon {
    transition: 0.3s;
    transform: rotate(-45deg);

}

/* Bespoke Section Responsive */
@media (max-width: 768px) {
    .bespoke-section {
        padding: 50px 20px;
    }

    .bespoke-container {
        flex-direction: column;
        gap: 40px;
    }

    .bespoke-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .bespoke-title {
        font-size: 28px;
    }

    .bespoke-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .bespoke-section {
        padding: 40px 15px;
    }

    .bespoke-title {
        font-size: 24px;
    }

    .bespoke-description {
        font-size: 12px;
    }

    .industry-name {
        font-size: 13px;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.testimonial-label {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.testimonial-quote-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 12px;
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 36px;
    font-weight: 700;
    /* font-style: italic; */
    color: var(--primary-color);
    line-height: 1.35;
    margin: 0;
}

.testimonial-author {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    align-self: flex-end;
    padding-bottom: 4px;
}

.testimonial-desc {
    font-size: 13px;
    color: var(--primary-color);
    line-height: 1.7;
    max-width: 400px;
}

.testimonial-right {
    flex: 0 0 45%;
    display: flex;
    align-items: stretch;
}

.testimonial-image-static {
    width: 100%;
    min-height: 340px;
    background-color: #F2F8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
}

/* Testimonial Section Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .testimonial-quote {
        font-size: 24px;
    }

    .testimonial-right {
        flex: 0 0 auto;
    }

    .testimonial-image-static {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-container {
        padding: 0 15px;
    }

    .testimonial-quote {
        font-size: 20px;
    }

    .testimonial-author {
        font-size: 14px;
    }

    .testimonial-desc {
        font-size: 12px;
    }

    .testimonial-image-static {
        min-height: 200px;
        font-size: 40px;
    }
}

/* Case Studies Section */
.case-studies-section {
    background: #F2F8FF;
    padding: 60px 0 50px;
    /* border-top: 3px solid var(--primary-color); */
}

.case-studies-header {
    text-align: center;
    margin-bottom: 40px;
}

.case-studies-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.case-studies-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Slider viewport & track */
.cs-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.cs-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual card — full width of viewport */
.case-study-card {
    flex: 0 0 100%;
    min-width: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

/* Hatched/striped pattern overlay */
.case-study-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 101, 242, 0.03) 10px,
            rgba(0, 101, 242, 0.03) 20px);
    pointer-events: none;
    z-index: 0;
}

.cs-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.cs-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.case-study-icon {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.cs-card-content {
    margin-top: auto;
}

.case-study-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.case-study-description {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 320px;
}

.case-study-link {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.case-study-link:hover {
    color: var(--primary-dark);
}

/* Right side — Colors & Brands */
.cs-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    padding-top: 10px;
}

.cs-tag-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cs-tag-label {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.cs-tag-circles {
    display: flex;
    gap: -4px;
}

/* Color circles — half dark / half light split */
.cs-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    border: none;
    position: relative;
}

.cs-color-circle {
    background: var(--primary-color);
    border: 2px solid #fff;
    margin-right: -15px;
}

.cs-color-circle:last-child {
    margin-right: 0;
}

/* Brand circles — filled blue with white text */
.cs-brand-circle {
    background: var(--primary-color);
    font-size: 7px;
    letter-spacing: 0.5px;
    font-weight: 800;
    border: 2px solid #e0ecfa;
    margin-right: -6px;
}

.cs-brand-circle:last-child {
    margin-right: 0;
}

/* Navigation buttons (outside card) */
.cs-nav-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cs-nav-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Explore All button wrapper */
.cs-explore-wrapper {
    text-align: center;
    margin-top: 35px;
}

.explore-all-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.explore-all-btn:hover {
    background-color: var(--primary-dark);
}

/* Case Studies Responsive */
@media (max-width: 768px) {
    .case-studies-section {
        padding: 50px 0 40px;
    }

    .case-studies-title {
        font-size: 28px;
    }

    .case-study-card {
        padding: 25px;
        min-height: 260px;
    }

    .cs-card-inner {
        flex-direction: column;
        gap: 25px;
    }

    .cs-card-right {
        flex-direction: row;
        align-items: flex-start;
        gap: 25px;
    }

    .case-studies-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .case-studies-section {
        padding: 40px 0 30px;
    }

    .case-studies-title {
        font-size: 24px;
    }

    .case-study-card {
        padding: 20px;
    }

    .case-study-title {
        font-size: 14px;
    }

    .case-study-description {
        font-size: 12px;
    }

    .cs-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Explore by Category Section */
.explore-section {
    background-color: white;
    padding: 80px 40px;
}

.explore-header {
    text-align: center;
    margin-bottom: 60px;
}

.explore-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.explore-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.slider-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 102, 255, 0.1);
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 0 20px;
}

.category-card {
    min-width: 280px;
    /* height: 320px; */
    background: #F2F8FF;
    border-radius: 0px;
    padding: 30px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: start;
}

.category-card.elevated {
    transform: translateY(-30px);
    background: #F2F8FF;
}

.category-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2); */
}

.category-card.elevated:hover {
    transform: translateY(-35px);
}

.card-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F8FF;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.category-card.elevated .card-icon {
    /* background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%); */
    transform: scale(1.1);
}

.card-icon svg {
    width: 70px;
    height: 70px;
    stroke: #0066ff;
    stroke-width: 2;
    fill: none;
    transition: all 0.4s ease;
}

.category-card.elevated .card-icon svg {
    stroke: white;
}

.card-title {
    font-size: 20px;
    font-weight: 500;
    color: #0066ff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-align: start;
    margin-right: auto;
}

.category-card.elevated .card-title {
    color: #0052cc;
    font-size: 24px;
}

.card-items {
    font-size: 0.95rem;
    color: #0066ff;
    transition: all 0.3s ease;
    margin-right: auto;
}

.category-card.elevated .card-items {
    color: #0066ff;
    font-weight: 600;
}

.slider-controls {
    display: none;
}

.dots-container {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0066ff;
    width: 35px;
    border-radius: 6px;
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 30px;
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    /* box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3); */
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
    color: white;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .category-card {
        min-width: 260px;
        height: 300px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .slider-container {
        padding: 30px 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 30px 0;
    }

    .slider-section {
        padding: 40px 0;
    }

    .category-card {
        min-width: 220px;
        height: 270px;
        padding: 25px;
    }

    .category-card.elevated {
        transform: translateY(-25px);
    }

    .category-card.elevated:hover {
        transform: translateY(-30px);
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .slider-container {
        padding: 25px 0;
    }

    .slider-wrapper {
        gap: 20px;
        padding: 0 15px;
    }

    .card-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .card-icon svg {
        width: 55px;
        height: 55px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .category-card.elevated .card-title {
        font-size: 1.3rem;
    }

    .card-items {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    body {
        padding: 20px 0;
    }

    .slider-section {
        padding: 30px 0;
    }

    .category-card {
        min-width: 200px;
        height: 250px;
        padding: 20px;
    }

    .category-card.elevated {
        transform: translateY(-20px);
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .slider-wrapper {
        gap: 15px;
        padding: 0 10px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .card-icon svg {
        width: 50px;
        height: 50px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .category-card.elevated .card-title {
        font-size: 1.2rem;
    }

    .card-items {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
        margin-top: 30px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }
}

/* Featured Products Section */
.featured-products-section {
    background-color: white;
    padding: 80px 40px;
}

.featured-products-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-products-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image-container {
    background: #F2F8FF;
    border-radius: 0px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.product-bookmark {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s;
}

.product-bookmark:hover {
    color: var(--primary-dark);
}

.product-image {
    font-size: 80px;
    color: var(--primary-color);
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Featured Products Responsive */
@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-products-section {
        padding: 50px 20px;
    }

    .featured-products-title {
        font-size: 28px;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-image-container {
        height: 200px;
        margin-bottom: 15px;
    }

    .product-image {
        font-size: 60px;
    }

    .featured-products-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .featured-products-section {
        padding: 40px 15px;
    }

    .featured-products-title {
        font-size: 24px;
    }

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-container {
        height: 180px;
    }

    .product-image {
        font-size: 50px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-price {
        font-size: 13px;
    }
}

/* Book a Visit Section */
.book-visit-section {
    background: #F2F8FF;
    padding: 50px 40px;
    margin: 60px 40px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.book-visit-content {
    flex: 1;
}

.book-visit-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.book-visit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.book-visit-button:hover {
    background-color: var(--primary-dark);
}

/* Book a Visit Responsive */
@media (max-width: 768px) {
    .book-visit-section {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        margin: 40px 20px;
        text-align: center;
    }

    .book-visit-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .book-visit-section {
        padding: 30px 15px;
        margin: 30px 15px;
    }

    .book-visit-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .book-visit-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ===== Testimonials Slider Section ===== */
.testi-slider-section {
    background: #F2F8FFB2;
    padding: 60px 0;
    /* border-top: 3px solid var(--primary-color); */
}

.testi-slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.testi-slider-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.testi-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testi-slider-inner {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: stretch;
    overflow: hidden;
}

/* Left image placeholder */
.testi-slider-image {
    flex: 0 0 260px;
    min-height: 280px;
    background-color: #f0f6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
}

/* Cards viewport */
.testi-cards-viewport {
    flex: 1;
    overflow: hidden;
}

.testi-cards-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide-card {
    flex: 0 0 50%;
    min-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-slide-quote {
    font-size: 13px;
    color: var(--primary-color);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 25px;
}

.testi-slide-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d8e8fa;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.testi-company {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Nav buttons */
.testi-nav-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.testi-nav-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Testimonials Slider Responsive */
@media (max-width: 992px) {
    .testi-slider-image {
        flex: 0 0 200px;
        min-height: 240px;
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .testi-slider-section {
        padding: 50px 0;
    }

    .testi-slider-title {
        font-size: 28px;
    }

    .testi-slider-inner {
        flex-direction: column;
        gap: 20px;
    }

    .testi-slider-image {
        flex: 0 0 auto;
        min-height: 180px;
        font-size: 40px;
    }

    .testi-slide-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .testi-slider-section {
        padding: 40px 0;
    }

    .testi-slider-title {
        font-size: 24px;
    }

    .testi-slider-wrapper {
        gap: 8px;
        padding: 0 10px;
    }

    .testi-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .testi-slide-quote {
        font-size: 12px;
    }
}

/* Resources Section */
.resources-section {
    background-color: white;
    padding: 80px 40px;
}

.resources-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.resources-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.resources-see-all-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.resources-see-all-btn:hover {
    background-color: var(--primary-dark);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
}

.resource-image-container {
    background: #F2F8FF;
    border-radius: 0px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.resource-bookmark {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s;
}

.resource-bookmark:hover {
    color: var(--primary-dark);
}

.resource-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
}

.resource-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.resource-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.resource-link {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.resource-link:hover {
    color: var(--primary-dark);
}

/* Resources Section Responsive */
@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .resources-section {
        padding: 50px 20px;
    }

    .resources-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .resources-title {
        font-size: 28px;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .resource-image-container {
        height: 150px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .resources-section {
        padding: 40px 15px;
    }

    .resources-title {
        font-size: 24px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .resource-image-container {
        height: 180px;
    }

    .resource-title {
        font-size: 14px;
    }

    .resource-description {
        font-size: 12px;
    }
}

/* ===== Link Cards Section ===== */
.link-cards-section {
    background-color: #F2F8FF;
    padding: 0;
    /* border-top: 3px solid var(--primary-color); */
    /* border-bottom: 3px solid var(--primary-color); */
}

.link-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin: 0;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 40px 30px;
    text-decoration: none;
    overflow: hidden;
    border-right: 1px solid #c8ddf5;
    transition: background-color 0.3s;
}

.link-card:last-child {
    border-right: none;
}

.link-card:hover {
    background-color: #e0edfa;
}

.link-card-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
}

.link-card-title {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

/* Link Cards Responsive */
@media (max-width: 768px) {
    .link-card {
        min-height: 200px;
        padding: 30px 20px;
    }

    .link-card-title {
        font-size: 24px;
    }

    .link-card-img {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .link-cards-grid {
        grid-template-columns: 1fr;
    }

    .link-card {
        min-height: 160px;
        border-right: none;
        border-bottom: 1px solid #c8ddf5;
    }

    .link-card:last-child {
        border-bottom: none;
    }

    .link-card-title {
        font-size: 22px;
    }

    .link-card-img {
        width: 130px;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 12px;
    }
}

/* Featured Products Section */
.featured-products-section {
    padding: 60px 0;
}

.featured-products-header {
    text-align: center;
    margin-bottom: 40px;
}

.featured-products-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 32px;
}

.fp-card {
    background: #fff;
    border: 1px solid #F2F8FF;
    border-radius: 0px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fp-card-top {
    height: 240px;
    background: #F2F8FF;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fp-card-top img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.fp-card-bookmark {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--primary-color);
    font-size: 16px;
}

.fp-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.fp-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.fp-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
}