/* Custom LTR Styles for SparkUp Theme */

/* Header Navigation */
.header-left nav ul {
    flex-direction: row;
}

.header-left nav ul li {
    margin-left: 0;
    margin-right: 30px;
}

.header-left nav ul li:last-child {
    margin-right: 0;
}

/* Button Arrows */
.button-arrow-wrapper svg {
    transform: rotate(0deg);
}

/* Swiper Navigation */
.swiper-button-next {
    right: 0;
    left: auto;
}

.swiper-button-prev {
    left: 0;
    right: auto;
}

/* Hero Section */
.hero-text .bottom-style {
    text-align: left;
}

.hero-text .bottom-style .rating {
    flex-direction: row;
}

/* Branding Section Numbers */
.branding-style span {
    right: 20px;
    left: auto;
}

/* Workflow Section */
.workflow.center {
    text-align: center;
}

/* Team Social Links */
.team-style a {
    text-align: left;
}

/* FAQ Accordion */
.accordion-item .heading {
    text-align: left;
}

.accordion-item .icon::before {
    content: '+';
    float: right;
}

.accordion-item.active .icon::before {
    content: '-';
}

/* Footer */
.footer-contact {
    text-align: left;
}

.footer-link li a {
    justify-content: flex-start;
}

/* Form Elements */
.form-group input,
.form-group textarea {
    text-align: left;
}

/* Lists */
.theme-list li {
    text-align: left;
    padding-left: 20px;
    padding-right: 0;
}

.theme-list li::before {
    left: 0;
    right: auto;
}

/* Stars Rating */
.stars {
    justify-content: flex-start;
}

/* Pagination */
.swiper-pagination {
    text-align: center;
}

/* Scroll to Top */
.scroll-to-top {
    right: 30px;
    left: auto;
}

/* Marquee */
.marquee-content {
    animation-direction: normal;
}

/* Logo */
.logo {
    text-align: left;
}

/* Contact Info */
.footer-contact i {
    margin-right: 15px;
    margin-left: 0;
}

.header-btn .button-main
{
    color: #070616;
    letter-spacing: 1.44px;
    font-size: 14px;
    font-weight: 600;
    line-height: 55px;
}

/* Statistics Section - LTR */
.statistics-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.statistic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.statistic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.statistic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.statistic-item:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.statistic-item:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.statistic-item:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-number {
    flex-shrink: 0;
}

.stat-number h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-number span {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.statistic-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.stat-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Branding Statistics - LTR */

.branding-stat-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.branding-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, transparent, rgba(255, 255, 255, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.branding-stat-item:hover::before {
    opacity: 1;
}

.branding-stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Unique gradient overlays for each card */
.branding-stat-item:nth-child(1) {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
}

.branding-stat-item:nth-child(1):hover {
    box-shadow:
        0 20px 40px rgba(102, 126, 234, 0.25),
        0 0 0 1px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.branding-stat-item:nth-child(2) {
    background: linear-gradient(145deg, rgba(240, 147, 251, 0.08), rgba(245, 87, 108, 0.04));
}

.branding-stat-item:nth-child(2):hover {
    box-shadow:
        0 20px 40px rgba(240, 147, 251, 0.25),
        0 0 0 1px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.branding-stat-item:nth-child(3) {
    background: linear-gradient(145deg, rgba(79, 172, 254, 0.08), rgba(0, 242, 254, 0.04));
}

.branding-stat-item:nth-child(3):hover {
    box-shadow:
        0 20px 40px rgba(79, 172, 254, 0.25),
        0 0 0 1px rgba(79, 172, 254, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.branding-stat-item .stat-number {
    flex-shrink: 0;
    position: relative;
}

.branding-stat-item .stat-number h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.branding-stat-item:hover .stat-number h3 {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.branding-stat-item .stat-number span {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.branding-stat-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
    text-align: left;
    line-height: 1.5;
    transition: all 0.4s ease;
}

.branding-stat-item:hover p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

.branding-stat-item .stat-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.branding-stat-item .stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.branding-stat-item:hover .stat-icon::before {
    opacity: 1;
}

.branding-stat-item:hover .stat-icon {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.branding-stat-item .stat-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.branding-stat-item:hover .stat-icon i {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .branding-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .branding-stat-item p {
        text-align: center;
    }

    .branding-stat-item .stat-number h3 {
        font-size: 2.6rem;
        justify-content: center;
    }

    .branding-stat-item:hover p {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .branding-stat-item .stat-number h3 {
        font-size: 2.2rem;
    }

    .branding-stat-item {
        padding: 25px 18px;
        margin-bottom: 20px;
    }

    .branding-stat-item .stat-icon {
        width: 55px;
        height: 55px;
    }

    .branding-stat-item .stat-icon i {
        font-size: 1.5rem;
    }

    .branding-stat-item .stat-icon
    {
        margin: 0px;
    }

}

/* Branding Statistics Section */
.branding-statistics {
    margin-top: 40px;
    padding: 30px 0;
}

.branding-stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.05);
}

.branding-stat-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
}

.branding-stat-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
}

.branding-stat-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
}

.branding-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.branding-stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 16px 50px rgba(0, 0, 0, 0.1);
}

.branding-stat-item:nth-child(1):hover {
    box-shadow:
        0 8px 25px rgba(59, 130, 246, 0.3),
        0 16px 50px rgba(147, 51, 234, 0.2);
}

.branding-stat-item:nth-child(2):hover {
    box-shadow:
        0 8px 25px rgba(236, 72, 153, 0.3),
        0 16px 50px rgba(239, 68, 68, 0.2);
}

.branding-stat-item:nth-child(3):hover {
    box-shadow:
        0 8px 25px rgba(59, 130, 246, 0.3),
        0 16px 50px rgba(34, 197, 94, 0.2);
}

.branding-stat-item .stat-number {
    text-align: center;
    margin-bottom: 15px;
}

.branding-stat-item .stat-number h3 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.branding-stat-item .stat-number span {
    font-size: 36px;
}

.branding-stat-item p {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0;
    opacity: 0.9;
}

.branding-stat-item .stat-icon {
    text-align: center;
    margin-top: 20px;
}

.branding-stat-item .stat-icon i {
    font-size: 28px;
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.branding-stat-item:hover .stat-icon i {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive design for statistics */
@media (max-width: 768px) {
    .branding-statistics {
        margin-top: 20px;
        padding: 20px 0;
    }

    .branding-stat-item {
        padding: 30px 20px;
        margin: 10px 0;
    }

    .branding-stat-item .stat-number h3 {
        font-size: 36px;
    }

    .branding-stat-item .stat-number span {
        font-size: 28px;
    }

    .branding-stat-item .stat-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .branding-stat-item {
        padding: 25px 15px;
    }

    .branding-stat-item .stat-number h3 {
        font-size: 32px;
    }

    .branding-stat-item .stat-number span {
        font-size: 24px;
    }

    .branding-stat-item p {
        font-size: 14px;
    }
}

/* Modern Services Styling */
.services-style.modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.02);
}

.services-style.modern:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.1),
        0 20px 64px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.services-style.modern .service-icon {
    text-align: center;
    margin-bottom: 25px;
    font-size: 48px;
    color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: block;
}

.services-style.modern:hover .service-icon {
    transform: scale(1.1);
}

.services-style.modern h3 {
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.3;
}

.services-style.modern h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-style.modern:hover h3 a {
    color: #3b82f6;
}

.services-style.modern p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-style.modern .service-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

.services-style.modern .service-benefits {
    margin: 20px 0;
}

.services-style.modern .service-benefits p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
}

.services-style.modern .service-benefits ul.theme-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-style.modern .service-benefits ul.theme-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.services-style.modern .service-benefits ul.theme-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.services-style.modern .service-cta {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    margin-top: 25px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.services-style.modern:hover .service-cta {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* Responsive design for services */
@media (max-width: 768px) {
    .services-style.modern {
        padding: 30px 20px;
        margin: 15px 0;
    }

    .services-style.modern .service-icon i {
        font-size: 40px;
    }

    .services-style.modern h3 {
        font-size: 20px;
    }

    .services-style.modern .service-highlight {
        padding: 12px 16px;
        font-size: 14px;
    }

    .services-style.modern .service-cta {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-style.modern {
        padding: 25px 15px;
    }

    .services-style.modern .service-icon i {
        font-size: 36px;
    }

    .services-style.modern h3 {
        font-size: 18px;
    }

    .services-style.modern p {
        font-size: 14px;
    }

    .services-style.modern .service-benefits ul.theme-list li {
        font-size: 13px;
    }
}

/* Service CTA Button */
.service-cta-button {
    background-color: var(--theme-color);
    color: black;
    padding: 14px 28px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-decoration: none;
}

.service-cta-button:hover {
    background-color: var(--theme-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: black;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.cta-primary .button-main {
    background-color: var(--theme-color);
    color: black;
    font-weight: 600;
}

.cta-secondary .button-main {
    background: transparent;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    font-weight: 600;
}

.cta-secondary:hover .button-main {
    background-color: var(--theme-color);
    color: black;
}

@media (max-width: 768px) {
    .cta-buttons {
        gap: 12px;
    }
}



.pricing-top h3 {
    font-size: 50px !important;
    font-weight: 500;
}

/* Consultant Profile Section */
.consultant-profile {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.consultant-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.image-wrapper:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 25px 25px;
}

.consultant-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--theme-color), #3a7bc8);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
}

.consultant-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.consultant-badge i {
    color: #FFD700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Social Contact Section */
.social-contact {
    margin: 15px 0 25px 0;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.2);
    border: 2px solid rgba(0, 119, 181, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.linkedin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.linkedin-link:hover::before {
    left: 100%;
}

.linkedin-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 119, 181, 0.4);
    background: linear-gradient(135deg, #0088cc, #006699);
    border-color: rgba(0, 119, 181, 0.5);
    color: white;
    text-decoration: none;
}

.linkedin-link i {
    font-size: 18px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.linkedin-link:hover i {
    transform: scale(1.1);
}

.linkedin-link span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Profile Information */
.consultant-info {
    padding-left: 50px;
}

.consultant-header {
    margin-bottom: 40px;
}

.consultant-name {
    font-size: 3rem;
    font-weight: 800;
    /*background: linear-gradient(135deg, var(--theme-color), #2c5aa0);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.1;
    /*text-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.consultant-title {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.consultant-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--theme-color), #3a7bc8);
    border-radius: 2px;
}

.consultant-description {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

/* Experience Stats */
.experience-stats {
    display: flex;
    gap: 50px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(58, 123, 200, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--theme-color), #2c5aa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.stat-text {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Achievements */
.achievements {
    margin-bottom: 50px;
}

.achievements h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.achievements h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, var(--theme-color), #3a7bc8);
    border-radius: 2px;
}

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

.achievements-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 15px 20px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--theme-color);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    transition: all 0.3s ease;
}

.achievements-list li:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.15);
}

.achievements-list li i {
    color: var(--theme-color);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
    background: rgba(74, 144, 226, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Button */
.consultant-cta {
    margin-top: 40px;
}

.consultant-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--theme-color), #3a7bc8);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.consultant-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.consultant-button:hover::before {
    left: 100%;
}

.consultant-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(74, 144, 226, 0.5);
    color: white;
}

.consultant-button .button-main {
    color: white;
    margin-left: 12px;
    font-weight: 700;
}

.consultant-button .button-arrow-wrapper {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.consultant-button:hover .button-arrow-wrapper {
    background: rgba(255,255,255,0.3);
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .consultant-info {
        padding-left: 30px;
    }

    .consultant-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .consultant-info {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }

    .experience-stats {
        justify-content: center;
        gap: 60px;
    }

    .consultant-name {
        font-size: 2.2rem;
    }

    .achievements h4 {
        text-align: center;
    }

    .achievements-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .consultant-profile {
        padding: 60px 0;
    }

    .experience-stats {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }

    .stat-item::after {
        display: none;
    }

    .consultant-name {
        font-size: 2rem;
    }

    .image-wrapper img {
        height: 450px;
    }

    .consultant-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .linkedin-link {
        padding: 12px 18px;
        font-size: 14px;
    }

    .linkedin-link i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .consultant-name {
        font-size: 1.8rem;
    }

    .image-wrapper img {
        height: 400px;
    }

    .achievements-list li {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .experience-stats {
        padding: 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .linkedin-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .linkedin-link i {
        font-size: 15px;
    }
}


.theme-list li::before
{
    display: none;
}

/* ==========================================
   WhatsApp Float Button
========================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /*border: 3px solid rgba(255, 255, 255, 0.1);*/
    backdrop-filter: blur(10px);
    line-height: 1;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2EE068, #1A9D96);
    color: white;
    text-decoration: none;
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.whatsapp-button i {
    font-size: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    height: 100%;
}

.whatsapp-button:hover i {
    transform: scale(1.2) rotate(10deg);
}

.whatsapp-text {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    margin-left: 10px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.whatsapp-button:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Glow effect on hover */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #25D366, #128C7E, #25D366);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.whatsapp-button:hover::before {
    opacity: 0.7;
    border-radius: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
    }

    .whatsapp-button {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }

    .whatsapp-button:hover {
        padding: 0 18px;
        border-radius: 32px;
    }

    .whatsapp-text {
        font-size: 13px;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .whatsapp-button:hover {
        padding: 0 15px;
        border-radius: 30px;
    }
}

