/* Reveal-on-Scroll Animations */
[class*="reveal-"] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal-fade-up {
    transform: translateY(30px);
}

.reveal-fade-left {
    transform: translateX(-30px);
}

.reveal-fade-right {
    transform: translateX(30px);
}

.reveal-zoom-in {
    transform: scale(0.95);
}

/* Active states for reveal */
.reveal-active {
    opacity: 1;
    transform: none !important;
}

:root {
    --sol-home-primary: #1a1e4a;
    --sol-home-secondary: #ffffff;
    --sol-home-accent: #2c316a;
    --sol-home-text-dark: #1a1e4a;
    --sol-home-text-muted: #64748b;
    --sol-home-bg-light: #EBF1FD;
    --sol-home-font-dm: 'DM Sans', sans-serif;
    --sol-home-font-playfair: 'Playfair Display', serif;
    --sol-home-font-poppins: 'Poppins', sans-serif;
    --sol-home-font-roboto: 'Roboto', sans-serif;
    --sol-home-transition: all 0.3s ease;
}

body {
    font-family: var(--sol-home-font-roboto);
    color: var(--sol-home-text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Global Container Utility for Mobile */
@media (max-width: 767.98px) {
    .container-fluid.px-5 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Header Styles */
.navbar {
    /* padding: 0.8rem 0; */
    background-color: var(--sol-home-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    z-index: 1000;
}

.navbar-brand img {
    height: 70px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sol-home-text-dark) !important;
    margin: 0 0.8rem;
}

.sol-home-consult-btn {
    border: 1px solid #e2e8f0;
    color: var(--sol-home-text-dark);
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--sol-home-transition);
}

.sol-home-consult-btn i {
    width: 28px;
    height: 28px;
    background-color: var(--sol-home-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.sol-home-consult-btn:hover {
    background-color: var(--sol-home-primary);
    color: #fff;
    border-color: var(--sol-home-primary);
}

.sol-home-consult-btn:hover i {
    background-color: #fff;
    color: var(--sol-home-primary);
}

/* Hero Section Styles */
.sol-home-hero-section {
    background-color: var(--sol-home-bg-light);
    /* padding: 60px 0 0 0; */
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* .sol-home-hero-content {
    margin-bottom: 50px;
} */

.sol-home-hero-title {
    font-family: var(--sol-home-font-roboto);
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--sol-home-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 767.98px) {
    .sol-home-hero-section {
        min-height: 100vh;
        height: auto;
        /* padding-top: 100px; */
        /* padding-bottom: 40px; */
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .sol-home-hero-title {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
        margin-top: 0px;
        text-align: center;
    }

    .sol-home-hero-highlight {
        font-size: 1.25rem;
        text-align: center;
    }

    .sol-home-platform-text {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .sol-home-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        text-align: center;
        max-width: 100%;
        line-height: 1.4;
    }

    .sol-home-hero-buttons {
        gap: 10px;
        margin-bottom: 1.5rem;
        flex-direction: row; /* Keep buttons side by side if possible, or stack if narrow */
        flex-wrap: wrap;
        justify-content: center;
    }

    .sol-home-btn-primary,
    .sol-home-btn-outline {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: auto;
        flex: 1;
        min-width: 140px;
    }

    .sol-home-hero-trust-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 1rem;
    }

    .sol-home-feature-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .sol-home-hero-image-wrapper {
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .sol-home-hero-image {
        max-height: 250px;
        width: auto;
    }
}

.sol-home-hero-title span {
    color: #2c316a;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.sol-home-hero-highlight {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
}

.sol-home-platform-text {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.sol-home-hero-subtitle {
    font-size: 1.5rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.4;
}

.sol-home-hero-buttons {
    display: flex;
    gap: 15px;
}

.sol-home-btn-primary {
    background-color: var(--sol-home-primary);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--sol-home-transition);
}

.sol-home-btn-outline {
    background-color: var(--sol-home-primary);
    color: #fff;
    padding: 15px 45px;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--sol-home-transition);
}

.sol-home-btn-primary:hover,
.sol-home-btn-outline:hover {
    background-color: var(--sol-home-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 30, 74, 0.2);
}

.sol-home-hero-image-wrapper {
    text-align: right;
    /* margin-top: -30px; */
}

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

/* Offcanvas Customization */
.offcanvas {
    background-color: var(--sol-home-primary);
    color: #fff;
    width: 280px !important;
}

.offcanvas .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.offcanvas-header .btn-close {
    filter: invert(1);
}

@media (max-width: 991.98px) {
    .sol-home-hero-section {
        /* padding: 80px 0 40px 0; */
    }

    .sol-home-hero-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 0px;
    }

    .sol-home-hero-highlight,
    .sol-home-platform-text {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .sol-home-hero-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
        font-size: 0.8rem;
    }

    .sol-home-hero-buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .sol-home-hero-image-wrapper {
        text-align: center;
        margin-top: 20px;
    }

    .sol-home-btn-primary,
    .sol-home-btn-outline {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .navbar-brand img {
        height: 60px;
    }
}

/* How It Works Section Styles */
.sol-home-how-it-works-section {
    background-color: var(--sol-home-bg-light);
    /* padding: 50px 0; */
}

.sol-home-section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--sol-home-primary);
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .sol-home-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

.sol-home-text-bold {
    font-weight: 700;
}

.sol-home-work-card {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--sol-home-transition);
}

.sol-home-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sol-home-work-card-icon {
    font-size: 2rem;
    color: var(--sol-home-primary);
    margin-right: 20px;
    line-height: 1;
    background-color: var(--sol-home-bg-light);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.sol-home-work-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sol-home-primary);
    margin-bottom: 5px;
}

.sol-home-work-card-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .sol-home-section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .sol-home-work-card {
        padding: 20px;
    }

    .sol-home-work-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
        margin-right: 15px;
    }

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

    .sol-home-work-card-text {
        font-size: 0.85rem;
    }
}

/* Services Section Styles */
.sol-home-services-section {
    background-color: var(--sol-home-bg-light);
    padding: 50px 0;
}

.sol-home-service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--sol-home-transition);
    cursor: pointer;
    border: none;
}

.sol-home-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sol-home-service-card-img {
    width: 80%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.sol-home-service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sol-home-primary);
    margin-bottom: 0;
}

.sol-home-more-options-icon {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .sol-home-service-card-img {
        max-height: 70px;
    }

    .sol-home-service-card-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .sol-home-services-section {
        padding: 40px 0;
    }

    .sol-home-service-card {
        padding: 15px;
    }
}

/* Experts Section Styles */
.sol-home-experts-section {
    background-color: var(--sol-home-bg-light);
    /* padding: 60px 0; */
}

.sol-home-expert-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 15px;
    transition: var(--sol-home-transition);
}

.sol-home-expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sol-home-expert-left {
    flex: 0 0 100px;
    text-align: center;
}

.sol-home-expert-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #f1f3f7;
}

.sol-home-expert-rating {
    color: #ffc107;
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.sol-home-expert-consults {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.sol-home-expert-right {
    flex: 1;
}

.sol-home-expert-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.sol-home-expert-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sol-home-primary);
    margin: 0;
}

.sol-home-expert-verified {
    color: #3b82f6;
    font-size: 0.9rem;
}

.sol-home-expert-specialization {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 3px;
    font-weight: 500;
}

.sol-home-expert-languages {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
}

.sol-home-expert-exp {
    font-size: 0.9rem;
    color: var(--sol-home-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.sol-home-expert-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.sol-home-expert-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sol-home-price-free {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1rem;
}

.sol-home-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}

.sol-home-consult-now-btn {
    background-color: var(--sol-home-primary);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--sol-home-transition);
}

.sol-home-consult-now-btn:hover {
    background-color: var(--sol-home-accent);
}

@media (max-width: 575.98px) {
    .sol-home-expert-card {
        padding: 15px;
        gap: 10px;
    }

    .sol-home-expert-left {
        flex: 0 0 70px;
    }

    .sol-home-expert-img {
        width: 60px;
        height: 60px;
    }

    .sol-home-expert-name {
        font-size: 0.9rem;
    }

    .sol-home-expert-specialization,
    .sol-home-expert-languages {
        font-size: 0.75rem;
    }

    .sol-home-consult-now-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Swiper Styling for Recommended Section */
.sol-home-recommended-swiper {
    padding-bottom: 20px !important;
    padding-top: 10px;
}

.sol-home-recommended-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--sol-home-primary);
    opacity: 0.2;
}

.sol-home-recommended-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Swiper Navigation Custom Styles (Shared or Specific) */
.sol-rec-swiper-button {
    color: var(--sol-home-primary) !important;
    background: #fff;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.sol-rec-swiper-button::after {
    font-size: 1.2rem !important;
    font-weight: 800;
}

.sol-rec-swiper-button:hover {
    background: var(--sol-home-primary);
    color: #fff !important;
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .sol-rec-swiper-button {
        display: none !important;
    }
}

.sol-home-recommended-section {
    background-color: #fff;
    padding: 40px 0;
}

.sol-home-rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sol-home-filter-icon {
    font-size: 1.8rem;
    color: var(--sol-home-primary);
    cursor: pointer;
}

.sol-home-section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--sol-home-primary);
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .sol-home-section-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }
}

.sol-home-rec-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
    transition: var(--sol-home-transition);
}

.sol-home-rec-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sol-home-rec-badge {
    position: absolute;
    top: 15px;
    left: -35px;
    background-color: var(--sol-home-primary);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(-45deg);
    z-index: 2;
}

.sol-home-rec-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 5px;
    background-color: #fff;
}

.sol-home-rec-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--sol-home-primary);
}

.sol-home-rec-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sol-home-primary);
    margin-bottom: 10px;
}

.sol-home-rec-specialization {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.sol-home-rec-languages {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 15px;
}

.sol-home-rec-old-price {
    text-decoration: line-through;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.sol-home-rec-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.sol-home-rec-new-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
}

@media (max-width: 767.98px) {
    .sol-home-rec-card {
        padding: 12px 10px;
    }

    .sol-home-rec-img-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 10px;
    }

    .sol-home-rec-name {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .sol-home-rec-specialization,
    .sol-home-rec-languages {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .sol-home-rec-old-price {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .sol-home-rec-new-price {
        font-size: 1.1rem;
    }

    .sol-home-rec-footer .sol-home-consult-now-btn {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .sol-home-rec-badge {
        font-size: 0.55rem;
        padding: 3px 25px;
        left: -25px;
    }
}

@media (max-width: 991.98px) {
    .sol-home-rec-name {
        font-size: 1.2rem;
    }

    .sol-home-rec-new-price {
        font-size: 1.4rem;
    }
}

/* Contact Section & Testimonials */
.sol-home-contact-section {
    background-color: var(--sol-home-bg-light);
    /* padding: 80px 0; */
}

.sol-home-contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sol-home-primary);
    margin-bottom: 50px;
}

.sol-home-testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: stretch;
    gap: 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Blog Section Styles */
.sol-home-blog-section {
    background-color: #fff;
}

.sol-home-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sol-home-blog-header-title {
    font-family: var(--sol-home-font-roboto);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sol-home-primary);
    margin: 0;
}

.sol-home-blog-view-all {
    color: var(--sol-home-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--sol-home-transition);
}

.sol-home-blog-view-all:hover {
    opacity: 0.8;
}

.sol-home-blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--sol-home-transition);
    border: 1px solid #f1f5f9;
}

.sol-home-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sol-home-blog-img-wrapper {
    padding: 12px;
}

.sol-home-blog-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
}

.sol-home-blog-meta {
    padding: 0 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sol-home-blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sol-home-blog-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.sol-home-blog-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    margin: 0;
}

.sol-home-blog-date {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-right: 15px;
}

.sol-home-blog-share-btn {
    width: 32px;
    height: 32px;
    background-color: var(--sol-home-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--sol-home-transition);
    border: none;
}

.sol-home-blog-share-btn:hover {
    background-color: var(--sol-home-accent);
}

.sol-home-blog-content-wrapper {
    padding: 0 20px 20px;
}

.sol-home-blog-body {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}

.sol-home-blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--sol-home-primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sol-home-blog-excerpt {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.sol-home-blog-tag-link {
    color: #1e293b;
    text-decoration: underline;
    font-weight: 500;
}

.sol-home-blog-see-more {
    color: var(--sol-home-primary);
    font-weight: 700;
    text-decoration: none;
    margin-left: 5px;
}

.sol-home-blog-swiper {
    padding: 20px 0 50px !important;
}

.sol-home-blog-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--sol-home-primary);
    opacity: 0.2;
}

.sol-home-blog-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    .sol-home-blog-header-title {
        font-size: 2.2rem;
    }
    
    .sol-home-blog-view-all {
        font-size: 1rem;
    }

    .sol-home-blog-card {
        margin: 5px;
    }

    .sol-home-blog-body {
        padding: 15px;
    }

    .sol-home-blog-title {
        font-size: 1rem;
    }

    .sol-home-blog-excerpt {
        font-size: 0.8rem;
    }
}

.sol-home-testimonial-card-centered {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.sol-home-testimonial-img-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.sol-home-testimonial-img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #EBF1FD;
}

.sol-home-testimonial-dots {
    bottom: -40px !important;
}

.sol-home-testimonial-dots [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--sol-home-primary);
    opacity: 0.2;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.sol-home-testimonial-dots .active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

.sol-home-testimonial-content {
    max-width: 600px;
    margin: 0 auto;
}

.sol-home-quote-icon {
    width: 40px;
    height: 40px;
    background: var(--sol-home-bg-light);
    color: var(--sol-home-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sol-home-testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
    font-family: var(--sol-home-font-dm);
    font-style: italic;
}

@media (max-width: 767.98px) {
    .sol-home-testimonial-card-centered {
        padding: 20px 15px;
    }

    .sol-home-testimonial-text {
        font-size: 0.95rem;
    }

    .sol-home-testimonial-author {
        font-size: 1.1rem;
    }
}

.sol-home-testimonial-author {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sol-home-primary);
    margin-bottom: 2px;
}

.sol-home-testimonial-role {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sol-home-whatsapp-btn-new {
    background: #ffffff;
    color: #000 !important;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--sol-home-transition);
}

.sol-home-whatsapp-btn-new i {
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.sol-home-whatsapp-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sol-home-inquiry-box {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

@media (max-width: 767.98px) {
    .sol-home-inquiry-box {
        padding: 25px 20px;
        margin-top: 20px;
    }
}

.sol-home-inquiry-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.sol-home-form-control {
    background-color: #f1f5f9;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
}

.sol-home-inquiry-btn {
    width: 100%;
    background-color: var(--sol-home-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--sol-home-transition);
}

.sol-home-inquiry-btn:hover {
    background-color: var(--sol-home-accent);
}

/* Hero Trust Badges */
.sol-home-hero-trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sol-home-feature-badge {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sol-home-feature-badge i {
    color: #10b981;
    font-size: 1.2rem;
}

.sol-home-floating-trust-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    max-width: 300px;
}

.sol-home-trust-icon-wrapper {
    background-color: #f1f5f9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.5rem;
}

.sol-home-trust-text-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.sol-home-trust-text-content p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.sol-home-trust-avatars {
    display: flex;
    margin-top: 5px;
}

.sol-home-trust-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.sol-home-trust-avatars img:first-child {
    margin-left: 0;
}

/* Stats Section Styles */
.sol-home-stats-section {
    background-color: var(--sol-home-bg-light);
    padding: 80px 0;
}

.sol-home-stat-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sol-home-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sol-home-primary), #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sol-home-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.sol-home-stat-card:hover::before {
    opacity: 1;
}

.sol-home-stat-icon-box {
    width: 65px;
    height: 65px;
    background-color: rgba(26, 30, 74, 0.05);
    color: var(--sol-home-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.sol-home-stat-card:hover .sol-home-stat-icon-box {
    background-color: var(--sol-home-primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.sol-home-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--sol-home-primary);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.sol-home-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 767.98px) {
    .sol-home-stats-section {
        padding: 40px 0;
    }

    .sol-home-stat-card {
        padding: 25px 15px;
        border-radius: 16px;
    }

    .sol-home-stat-number {
        font-size: 2rem;
    }

    .sol-home-stat-label {
        font-size: 0.9rem;
    }

    .sol-home-stat-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
}

/* Footer v2 Styles */
.sol-home-footer-new {
    background-color: var(--sol-home-primary);
    color: #fff;
    padding: 60px 0 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: 50px;
}

.sol-footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 20px 0;
}

.sol-footer-social-links {
    display: flex;
    gap: 15px;
}

.sol-footer-social-link {
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--sol-home-transition);
}

.sol-footer-social-link:hover {
    background-color: var(--sol-home-accent);
    color: #fff;
}

.sol-footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.sol-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sol-footer-list li {
    margin-bottom: 12px;
}

.sol-footer-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--sol-home-transition);
}

.sol-footer-list a:hover {
    color: #fff;
    padding-left: 5px;
}

.sol-footer-contact-info {
    font-size: 0.95rem;
    color: #94a3b8;
}

.sol-footer-contact-info p {
    margin-bottom: 10px;
}

.sol-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* Sticky Mobile Button */
@media (max-width: 991.98px) {
    .sol-home-mobile-sticky-btn {
        position: fixed;
        bottom: -100px; /* Hidden initially */
        left: 20px;
        right: 20px;
        z-index: 1050;
        transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .sol-home-mobile-sticky-btn.active {
        bottom: 20px;
    }

    .sol-home-mobile-sticky-btn .btn {
        width: 100%;
        padding: 8px;
        font-size: 0.9rem;
        border-radius: 50px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 991.98px) {
    .sol-home-hero-trust-badges {
        justify-content: center;
    }
    
    .sol-home-floating-trust-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 12px auto 0;
    }

    .sol-home-footer-new {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        text-align: center;
    }

    .sol-home-footer-logo {
        justify-content: center;
    }

    .sol-footer-social-links {
        justify-content: center;
    }

    .sol-home-whatsapp-btn-new {
        font-size: 1rem;
        padding: 10px 20px;
        gap: 12px;
        margin: 0 auto;
        width: fit-content;
    }

    .sol-home-whatsapp-btn-new i {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .sol-home-footer-new {
        padding: 30px 0 30px;
        margin-top: 0px;
    }
}