.welcome-hero {
    padding: 100px 20px 60px;
    text-align: center;
    background-color: var(--bg-color);
}

.hero-inner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.hero-inner p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.value-props-carousel {
    padding: 30px 20px;
    background-color: var(--bg-color);
    text-align: center;
}

.value-props-carousel h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.valueSwiper {
    flex: 1;
    max-width: 1300px;
    width: 100%;
    position: relative;
}

.value-slide {
    background-color: var(--bg-color);
    border-radius: 16px;
    padding: 40px 0px;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.value-slide:hover {
    transform: translateY(-6px);
}

.value-slide i {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-slide h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-slide p {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

/* Arrows */
.swiper-button-prev.custom-arrow {
    font-size: 1rem;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 100%;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
    position: relative;
    margin: 0 20px;
}

.swiper-button-next.custom-arrow {
    font-size: 1rem;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 100%;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
    position: relative;
    margin: 0 20px;
}

.custom-arrow:hover {
    color: #ffcc00;
}

/* Remove Swiper blue arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Pagination dots */
.swiper-pagination {
    position: relative;
    bottom: -20px;
    text-align: center;
    color: #ffcc00;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background-color: #e0e0e0 !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #ffcc00 !important;
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .custom-arrow {
        display: none;
    }

    .value-slide {
        padding: 40px 0px;
    }

    .value-slide p {
        font-size: 0.95rem;
    }

    .valueSwiper {
        padding: 0;
    }
}

.services-showcase {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    max-width: 1200px;
    margin: auto;
}

.services-showcase h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.services-subtext {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.services-grid.branded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card.white {
    background-color: var(--bg-color);
}

.service-card.white li {
    color: var(--text-color);
}

.service-card.white p {
    color: var(--text-color);
}

.service-card.yellow h3 {
    color: var(--text-color);
}

.service-card.yellow li {
    color: var(--text-color);
}

.service-card.yellow {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #000;
}

.service-card.yellow i {
    color: var(--bg-color);
}
.service-card.yellow h3 {
    color: var(--text-color);
}

.service-card.yellow li {
    color: var(--text-color);
}

.service-card i {
    font-size: 28px;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-color);
}

.service-card ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

.service-card ul li {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 6px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--button-text);
    border: none;
    transition: 0.3s ease;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--button-hover-bg);
    color: var(--button-hover-text);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--button-text);
}

.soft-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.soft-cta.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.soft-cta p {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #ffcc00;
    font-weight: 700;
}

