/**======================================================================
=========================================================================
Template Name: Dashboard Bootstrap 5 Admin Template
Author: WorkDo
Support: [support link]
File: style.css
=========================================================================
=================================================================================== */
body {
    margin: 0;
    overflow-x: hidden;
    background: white;
}

a {
    outline: none;
    text-decoration: none;
}

a:focus,
a:hover {
    outline: none;
    text-decoration: none;
}

section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.bg-dark {
    background: #1c232f !important;
    color: #fff;
}

.bg-dark p {
    color: #b5bdca;
}

.bg-dark .title h2 {
    color: rgba(255, 255, 255, 0.7);
}

.bg-dark .title h2 span {
    color: #fff;
}

.theme-alt-bg {
    background: #ededed;
}

.title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.title h2 {
    margin-bottom: 15px;
    z-index: 3;
    color: #293240;
    margin-top: 15px;
    text-transform: capitalize;
}

.title h2 span {
    font-weight: 600;
    color: #060606;
}

.title .material-icons-two-tone {
    font-size: 40px;
}

@media only screen and (max-width: 992px) {
    .title {
        margin-bottom: 30px;
    }

    .title h2 {
        margin-bottom: 10px;
    }
}

/* ===== Skhaa Announcement Bar ===== */
.skhaa-announcement-bar {
    background-color: #641D500D;
    text-align: center;
    padding: 10px 16px;
    width: 100%;
    z-index: 1001;
}

.skhaa-announcement-bar p {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.skhaa-announcement-bar p a {
    color: #641D50;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
}

.skhaa-announcement-bar p a:hover {
    color: #CA3BA2;
}

/* ===== Skhaa Navbar ===== */
.skhaa-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 0;
    transition: box-shadow 0.3s ease;
}

.skhaa-navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.skhaa-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo */
.skhaa-navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.skhaa-navbar-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.skhaa-nav-links-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.skhaa-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.skhaa-nav-links li a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
}

.skhaa-nav-links li a:hover,
.skhaa-nav-links li a.active {
    color: #641D50;
}

.skhaa-nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #641D50;
    border-radius: 2px;
}

/* Dropdown */
.skhaa-dropdown {
    position: relative;
}

.skhaa-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.skhaa-dropdown-toggle i {
    font-size: 14px;
    transition: transform 0.2s;
}

.skhaa-dropdown:hover .skhaa-dropdown-toggle i,
.skhaa-dropdown.skhaa-dropdown-open .skhaa-dropdown-toggle i {
    transform: rotate(180deg);
}

.skhaa-dropdown-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
    z-index: 1100;
}

.skhaa-dropdown:hover .skhaa-dropdown-menu,
.skhaa-dropdown.skhaa-dropdown-open .skhaa-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.skhaa-dropdown-menu li a {
    display: block;
    padding: 9px 20px !important;
    font-size: 14px !important;
    color: #333;
    transition: background 0.15s, color 0.15s;
}

.skhaa-dropdown-menu li a:hover {
    background: #f8f0f6;
    color: #641D50;
}

/* Contact Us Button */
.skhaa-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 24px;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #641D50 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.skhaa-contact-btn:hover {
    opacity: 0.92;
    box-shadow: 0 4px 20px rgba(100, 29, 80, 0.35);
    transform: translateY(-1px);
    color: #fff !important;
}

/* Desktop: show desktop btn, hide mobile btn */
.skhaa-contact-btn-mobile {
    display: none;
}

.skhaa-contact-btn-desktop {
    display: inline-flex;
}

/* Header Actions Desktop */
.skhaa-header-actions-desktop {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== Language Switcher ===== */
.skhaa-lang-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.lang-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    cursor: default;
    transition: color 0.3s ease;
    user-select: none;
}

.lang-label.active {
    color: #333;
}

.skhaa-lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 52px;
    height: 28px;
    border-radius: 50px;
    border: 0.4px solid var(--Stroke-website, #E5E5E5);
    background: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.skhaa-lang-switch:hover {
    border-color: #ccc;
    text-decoration: none;
}

.skhaa-lang-switch.active-ar {
    background: #BA38951A;
    box-shadow: 0px 4px 5px 1px #00000014;
    border: 0.4px solid var(--Stroke-website, #E5E5E5);
}

.skhaa-lang-knob {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.skhaa-lang-switch.active-ar .skhaa-lang-knob {
    left: calc(100% - 25px);
}

.skhaa-lang-knob img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hide mobile lang switch on desktop */
.skhaa-lang-switch-mobile {
    display: none;
}

/* Mobile Toggler */
.skhaa-navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.skhaa-toggler-icon {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger to X animation */
.skhaa-navbar-toggler.active .skhaa-toggler-icon:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.skhaa-navbar-toggler.active .skhaa-toggler-icon:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.skhaa-navbar-toggler.active .skhaa-toggler-icon:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile Responsive ===== */
@media only screen and (max-width: 991px) {
    .skhaa-navbar {
        padding-inline: 10px;
    }

    .skhaa-navbar-toggler {
        display: flex;
    }

    .skhaa-navbar-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 16px;
        position: relative;
    }

    /* Hide desktop actions on mobile */
    .skhaa-header-actions-desktop {
        display: none !important;
    }

    .skhaa-nav-links-wrapper {
        width: 100%;
        order: 3;
        display: none;
        overflow: hidden;
    }

    .skhaa-nav-links-wrapper.skhaa-nav-open {
        display: block !important;
        animation: skhaa-slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes skhaa-slideDown {
        from {
            opacity: 0;
            max-height: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            max-height: 600px;
            transform: translateY(0);
        }
    }

    .skhaa-nav-links {
        flex-direction: column;
        gap: 0;
        padding: 16px 0 8px;
        border-top: 1px solid #f0f0f0;
        margin-top: 8px;
    }

    .skhaa-nav-links li {
        width: 100%;
        opacity: 0;
        animation: skhaa-fadeInItem 0.35s ease forwards;
    }

    .skhaa-nav-open .skhaa-nav-links li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .skhaa-nav-open .skhaa-nav-links li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .skhaa-nav-open .skhaa-nav-links li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .skhaa-nav-open .skhaa-nav-links li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .skhaa-nav-open .skhaa-nav-links li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .skhaa-nav-open .skhaa-nav-links li:nth-child(6) {
        animation-delay: 0.3s;
    }

    @keyframes skhaa-fadeInItem {
        from {
            opacity: 0;
            transform: translateX(-12px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .skhaa-nav-links li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #f8f4f7;
        transition: color 0.2s, padding-left 0.2s;
    }

    .skhaa-nav-links li a:hover {
        padding-left: 8px;
        color: #641D50;
    }

    /* Mobile: dropdown hidden by default, shown on click */
    .skhaa-dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        background: #f8f0f6;
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        padding: 0;
        transition: opacity 0.25s, visibility 0.25s, max-height 0.3s ease, padding 0.25s, margin 0.25s;
    }

    .skhaa-dropdown:hover .skhaa-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .skhaa-dropdown.skhaa-dropdown-open .skhaa-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 8px 0;
        margin-top: 4px;
    }

    .skhaa-dropdown-menu li a {
        border-bottom: none !important;
    }

    /* Mobile language switch */
    .skhaa-lang-switch-mobile {
        display: flex !important;
        justify-content: center;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #f0f0f0;
        opacity: 0;
        animation: skhaa-fadeInItem 0.35s ease 0.35s forwards;
    }

    /* Mobile: hide desktop btn, show mobile btn */
    .skhaa-contact-btn-desktop {
        display: none !important;
    }

    .skhaa-contact-btn-mobile {
        display: flex !important;
        margin-top: 16px;
        width: 100%;
        text-align: center;
        justify-content: center;
        opacity: 0;
        animation: skhaa-fadeInItem 0.35s ease 0.4s forwards;
    }
}

/* ===== Trusted By Section ===== */
.skhaa-trusted-by {
    background: #fff;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.skhaa-trusted-heading {
    font-size: 16px;
    color: #888;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.skhaa-trusted-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Create the infinite marquee effect */
.skhaa-trusted-logos-track {
    display: flex;
    width: calc(250px * 10);
    /* Adjust based on logo width * total logos */
    animation: skhaa-marquee 30s linear infinite;
    gap: 80px;
    align-items: center;
}

.skhaa-trusted-logos-track img {
    height: 60px;
    /* Increased size for desktop */
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s, filter 0.3s;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.skhaa-trusted-logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes skhaa-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
        /* Move by one full set of logos */
    }
}

@media only screen and (max-width: 768px) {
    .skhaa-trusted-by {
        padding: 40px 0;
    }

    .skhaa-trusted-logos-track {
        gap: 50px;
        animation: skhaa-marquee-mobile 20s linear infinite;
    }

    .skhaa-trusted-logos-track img {
        height: 45px;
        /* Increased size for mobile */
    }

    @keyframes skhaa-marquee-mobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 5));
            /* Adjusted for mobile width */
        }
    }
}

/* ===== Features Section ===== */
.skhaa-features-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.skhaa-features-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skhaa-features-title {
    font-size: 36px;
    font-weight: 700;
    color: #310d29;
    margin-bottom: 16px;
}

.skhaa-features-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.skhaa-feature-card {
    background: #fff;
    border: 1.5px solid #f1f1f1;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skhaa-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.skhaa-feature-card-body {
    margin-bottom: 25px;
}

.skhaa-feature-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #310d29;
    margin-bottom: 10px;
}

.skhaa-feature-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.skhaa-feature-card-image {
    margin-top: auto;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.skhaa-feature-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Specific adjustments for card types */
.skhaa-feature-card-vertical {
    padding: 0 !important;
}

.skhaa-feature-card-vertical .skhaa-feature-card-image {
    margin-top: 0;
    border-radius: 20px 20px 0 0;
}

.skhaa-feature-card-vertical .skhaa-feature-card-image img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.skhaa-feature-card-vertical .skhaa-feature-card-body {
    padding: 30px;
    margin-bottom: 0;
}

.skhaa-feature-card-horizontal {
    flex-direction: column;
}

@media (max-width: 768px) {
    .skhaa-features-section {
        padding: 60px 0;
    }

    .skhaa-features-title {
        font-size: 28px;
    }

    .skhaa-feature-card {
        padding: 20px;
    }
}

/* ===== Automation Section ===== */
.skhaa-automation-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    color: #333;
    margin-top: -50px;
    /* Overlap with features for smooth transition */
    z-index: 10;
}

.skhaa-video-box {
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: #1a1a2e;
}

.skhaa-video-main {
    position: relative;
    cursor: pointer;
}

.skhaa-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.skhaa-play-icon {
    width: 80px;
    height: 80px;
    background: #4648FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 0 0 10px rgba(70, 72, 255, 0.2);
    transition: transform 0.3s ease;
}

.skhaa-video-box:hover .skhaa-play-icon {
    transform: scale(1.1);
}

.skhaa-automation-header {
    margin-bottom: 50px;
}

.skhaa-automation-title {
    font-size: 36px;
    font-weight: 700;
    color: #310d29;
    margin: 0;
    line-height: 1.2;
}

.skhaa-automation-desc {
    max-width: 450px;
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.skhaa-automation-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1.5px solid #f1f1f1;
}

.skhaa-automation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.skhaa-icon-ribbon {
    width: 48px;
    height: 48px;
    background: #CA3BA2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.skhaa-icon-ribbon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.skhaa-auto-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #310d29;
    margin-bottom: 12px;
}

.skhaa-auto-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .skhaa-automation-header {
        text-align: center;
        justify-content: center !important;
        gap: 20px;
    }

    .skhaa-automation-desc {
        max-width: 100%;
        text-align: center;
    }

    .skhaa-automation-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .skhaa-automation-section {
        padding: 60px 0;
    }
}

/* ===== FAQ Section ===== */
.skhaa-faq-section-new {
    padding: 100px 0;
    background-color: #fff;
}

.skhaa-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #310D29;
    margin-bottom: 20px;
}

.skhaa-faq-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.skhaa-faq-accordion-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.skhaa-faq-item {
    border: none;
    border-bottom: 1px solid #F1F1F1 !important;
    background: transparent;
    transition: all 0.3s ease;
}

.skhaa-faq-item:first-child {
    border-top: none;
}

.skhaa-accordion-btn {
    background: transparent !important;
    color: #310D29 !important;
    font-size: 18px;
    font-weight: 700;
    padding: 24px 0;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    border: none;
}

/* Custom Icons */
.skhaa-accordion-btn::after {
    content: '\ea14';
    /* Tabler Icon chevron-down */
    font-family: 'tabler-icons' !important;
    background-image: none;
    transform: none;
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.skhaa-accordion-btn:not(.collapsed)::after {
    content: '\eb55';
    /* Tabler Icon x */
    transform: none;
    color: #310D29;
}

.skhaa-accordion-btn:not(.collapsed) {
    color: #641D50 !important;
    padding-bottom: 10px;
}

.skhaa-accordion-body {
    padding: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
}

/* Open state styles */
.skhaa-faq-item:has(.show) {
    background-color: #F9F9F9;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 12px;
    border-bottom: none !important;
    margin-bottom: 15px;
}

.skhaa-faq-item:has(.show) .skhaa-accordion-btn {
    padding-top: 24px;
}

@media (max-width: 768px) {
    .skhaa-faq-section-new {
        padding: 60px 0;
    }

    .skhaa-faq-title {
        font-size: 28px;
    }

    .skhaa-accordion-btn {
        font-size: 16px;
    }

    .skhaa-faq-item:has(.show) {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ===== Skhaa Hero Section ===== */
.skhaa-hero {
    position: relative;
    background-color: #1a1a2e;
    background-image: url('/storage/uploads/landing_page_image/Hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 80px 0 0 0;
    text-align: center;
    overflow: hidden;
    min-height: auto;
}

.skhaa-hero .container {
    position: relative;
    z-index: 2;
}

.skhaa-hero-content {
    max-width: 750px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.skhaa-hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.skhaa-hero-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 36px auto;
}

.skhaa-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.skhaa-btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 24px;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #98327C 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
}

.skhaa-btn-primary-gradient:hover {
    opacity: 0.92;
    box-shadow: 0 6px 24px rgba(152, 50, 124, 0.45);
    transform: translateY(-2px);
    color: #fff !important;
}

.skhaa-btn-watch-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 24px;
    background: #fff;
    color: #1a1a2e !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
}

.skhaa-btn-watch-demo:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    color: #1a1a2e !important;
}

.skhaa-hero-image {
    margin-top: 50px;
    position: relative;
    display: flex;
    justify-content: center;
}

.skhaa-hero-image img {
    max-width: 90%;
    border-radius: 16px 16px 0 0;
}

/* ===== About Hero Section ===== */
.skhaa-about-hero {
    position: relative;
    padding: 160px 0 80px 0;
}

.skhaa-about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80vh;
    background-image: url('/storage/uploads/landing_page_image/Hero.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: -1;
}

.skhaa-about-hero .skhaa-automation-title {
    color: #fff !important;
}

.skhaa-about-hero .skhaa-automation-desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

@media only screen and (max-width: 768px) {
    .skhaa-about-hero {
        background-image: url('/storage/uploads/landing_page_image/Hero-mobile.png');
        padding: 100px 0 40px 0;
    }
}


/* ===== New Features Hero Section ===== */
.skhaa-features-new-hero {
    position: relative;
    padding: 120px 0 280px;
    background-image: url('/storage/uploads/landing_page_image/Hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 850px;
    display: flex;
    align-items: flex-start;
}

.skhaa-features-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.skhaa-features-hero-heading {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -1px;
}

.skhaa-trusted-clients {
    display: flex;
    align-items: center;
    gap: 40px;
    background: transparent;
    padding: 10px 0;
    border-radius: 0;
    backdrop-filter: none;
}

.skhaa-client-avatars {
    display: flex;
    align-items: center;
}

.skhaa-client-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -18px;
    object-fit: cover;
}

.skhaa-client-avatars img:first-child {
    margin-left: 0;
}

.skhaa-trusted-info {
    text-align: left;
}

.skhaa-trusted-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}

.skhaa-trusted-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.skhaa-features-hero-text {
    max-width: 580px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 35px 0;
}

.skhaa-btn-watch-video {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.skhaa-btn-watch-video:hover {
    transform: translateX(5px);
    color: #fff;
    opacity: 0.9;
}

.skhaa-features-hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 35px;
}

.skhaa-video-icon {
    width: 54px;
    height: 54px;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #641D50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(100, 29, 80, 0.2);
    z-index: 2;
}

.skhaa-video-icon i {
    display: none;
    /* Hide Font Icon if it's failing */
}

/* Custom CSS Triangle for Video Icon */
.skhaa-video-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    margin-left: 4px;
    display: block;
}

.skhaa-features-hero-bg-image {
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 992px) {
    .skhaa-features-hero-bg-image {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0px;
        width: 100vw;
        height: 55vh;
        z-index: 1;
        pointer-events: none;
        background: transparent !important;
        box-shadow: none !important;
    }

    .skhaa-features-hero-bg-image img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 30px 0 0 0;
        box-shadow: none !important;
        object-position: right bottom;
    }

    [dir="rtl"] .skhaa-features-hero-bg-image {
        right: auto;
        left: 0;
    }

    [dir="rtl"] .skhaa-features-hero-bg-image img {
        object-position: left bottom;
        border-radius: 0 30px 0 0;
    }
}

/* RTL Adjustments for Trusted Clients */
[dir="rtl"] .skhaa-client-avatars img {
    margin-left: 0;
    margin-right: -18px;
}

[dir="rtl"] .skhaa-client-avatars img:first-child {
    margin-right: 0;
}

[dir="rtl"] .skhaa-trusted-info {
    text-align: right;
}


@media (max-width: 1200px) {
    .skhaa-features-hero-heading {
        font-size: 42px;
    }

    .skhaa-features-hero-bg-image {
        width: 60%;
    }
}

@media (max-width: 991px) {
    .skhaa-features-new-hero {
        padding-bottom: 120px;
        min-height: auto;
    }

    .skhaa-features-hero-top {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .skhaa-features-hero-heading {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .skhaa-features-new-hero {
        padding: 80px 0 350px;
    }

    .skhaa-features-hero-heading {
        font-size: 30px;
    }

    .skhaa-features-hero-bg-image {
        width: 100%;
    }
}

/* Hero Mobile Responsive */
@media only screen and (max-width: 768px) {
    .skhaa-hero {
        background-image: url('/storage/uploads/landing_page_image/Hero-mobile.png');
        padding: 50px 0 0 0;
    }

    .skhaa-hero-heading {
        font-size: 30px;
    }

    .skhaa-hero-text {
        font-size: 14px;
        padding: 0 10px;
    }

    .skhaa-hero-buttons {
        gap: 12px;
    }

    .skhaa-btn-primary-gradient,
    .skhaa-btn-watch-demo {
        padding: 12px 28px;
        font-size: 14px;
    }

    .skhaa-hero-image img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .skhaa-hero-heading {
        font-size: 26px;
    }

    .skhaa-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .skhaa-btn-primary-gradient,
    .skhaa-btn-watch-demo {
        width: 100%;
    }
}

header:not(.price-header)>* {
    position: relative;
    z-index: 5;
}

header:not(.price-header):after,
header:not(.price-header):before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
}

header:not(.price-header):before {
    background-attachment: fixed;
    z-index: 1;
}

header.price-header {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
}

.dashboard-block {
    position: relative;
    overflow: hidden;
}

.dashboard-block .img-dashboard {
    margin-bottom: -15%;
}

.feature {
    text-align: center;
}

.feature .card-body {
    padding-top: 40px;
    padding-bottom: 40px;
}

.feature .theme-avtar {
    width: 130px;
    height: 130px;
    font-size: 45px;
    margin: 0 auto;
    border-radius: 50px;
}

.price-section {
    position: relative;
}

.price-section>* {
    position: relative;
    z-index: 5;
}

.price-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    z-index: 1;
    background: linear-gradient(180deg, #cecece 0%, #ffffff 100%);
}

.faq .accordion .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    margin-bottom: 10px;
}

.faq .accordion .accordion-item .accordion-button {
    font-weight: 700;
    padding: 1.3rem 1.25rem;
}

.faq .accordion .accordion-item .accordion-button span>i {
    font-size: 20px;
    margin-right: 8px;
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 10px;
    background: transparent;
    box-shadow: 0 6px 30px rgba(182, 186, 203, 0.3);
}

.faq .accordion .accordion-item .accordion-body {
    padding: 2.3rem 2.3rem 2.3rem 3rem;
}

/* ===== Redesigned Pricing Section ===== */
.skhaa-price-section {
    padding: 100px 0;
    background-color: #fff;
}

.skhaa-price-title {
    font-size: 36px;
    font-weight: 700;
    color: #310d29;
    margin-bottom: 20px;
}

.skhaa-price-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.skhaa-price-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skhaa-price-card-popular {
    border: 1px solid #641D50;
    box-shadow: 0 10px 30px rgba(100, 29, 80, 0.08);
}

.skhaa-popular-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(100, 29, 80, 0.1);
    /* #641D501A approx */
    color: #641D50;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.skhaa-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #310d29;
    margin-bottom: 12px;
}

.skhaa-plan-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 42px;
}

.skhaa-plan-price-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.skhaa-currency-icon {
    height: 32px;
    width: auto;
}

.skhaa-price-val {
    font-size: 40px;
    font-weight: 700;
    color: #310d29;
}

.skhaa-price-period {
    font-size: 14px;
    color: #888;
    align-self: flex-end;
    margin-bottom: 10px;
}

.skhaa-btn-price-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #98327C 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 35px;
    transition: opacity 0.2s;
}

.skhaa-btn-price-gradient:hover {
    opacity: 0.9;
}

.skhaa-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skhaa-plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 400;
}

.skhaa-check-icon {
    width: 22px;
    height: 22px;
    background: #641D50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .skhaa-price-section {
        padding: 60px 0;
    }

    .skhaa-price-title {
        font-size: 28px;
    }
}

/* ===== Integrations Section ===== */
.skhaa-integrations-section {
    padding: 100px 0;
    background-color: #fff;
}

.skhaa-integrations-content {
    flex: 1;
    max-width: 500px;
}

.skhaa-integrations-title {
    font-size: 36px;
    font-weight: 700;
    color: #310d29;
    margin-bottom: 20px;
}

.skhaa-integrations-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.skhaa-btn-integrations {
    display: inline-block;
    padding: 14px 35px;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #98327C 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.skhaa-btn-integrations:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(152, 50, 124, 0.3);
}

.skhaa-integrations-tools {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.skhaa-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 450px;
}

.skhaa-tool-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.skhaa-tool-item:hover {
    transform: scale(1.1);
}

.skhaa-tool-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .skhaa-integrations-section .container {
        flex-direction: column;
        text-align: center;
    }

    .skhaa-integrations-content {
        max-width: 100%;
    }

    .skhaa-integrations-tools {
        justify-content: center;
    }

    .skhaa-tools-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .skhaa-integrations-title {
        font-size: 28px;
    }

    .skhaa-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .skhaa-tool-item img {
        width: 50px;
        height: 50px;
    }
}

/* ===== Testimonials Section ===== */
.skhaa-testimonial-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #4A143E 0%, #3B0730 100%);
    color: #fff;
}

.skhaa-testimonial-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.skhaa-testimonial-overlay-wrapper {
    position: relative;
    padding-top: 20px;
    margin: 0 -15px;
}

.skhaa-testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #3B0730 30.68%, rgba(74, 13, 57, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.skhaa-testimonial-grid {
    position: relative;
    z-index: 1;
    /* Under the overlay to get the fade effect */
}

.skhaa-testimonial-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
}

.skhaa-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skhaa-testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.skhaa-stars {
    color: #FFB800;
}

.skhaa-testimonial-comment {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    min-height: 80px;
}

.skhaa-user-avatar {
    width: 44px;
    height: 44px;
    background: #CA3BA2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.skhaa-user-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.skhaa-user-job {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* CTA Area */
.skhaa-cta-area {
    margin-top: 100px;
    position: relative;
    z-index: 3;
    /* Move above the overlay */
}

.skhaa-cta-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.skhaa-btn-cta {
    display: inline-block;
    padding: 14px 45px;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #98327C 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.skhaa-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 59, 162, 0.4);
}

@media (max-width: 991px) {
    .skhaa-cta-heading {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .skhaa-testimonial-section {
        padding: 60px 0;
    }

    .skhaa-testimonial-title {
        font-size: 28px;
    }

    .skhaa-testimonial-subtitle {
        font-size: 14px;
    }
}

/* ===== Blog Section ===== */
.skhaa-blog-section {
    padding: 100px 0;
    background-color: #fff;
}

.skhaa-blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #310D29;
    line-height: 1.3;
    margin-bottom: 15px;
}

.skhaa-blog-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 550px;
}

.skhaa-btn-view-all {
    display: inline-block;
    padding: 12px 32px;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #98327C 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s, transform 0.2s;
}

.skhaa-btn-view-all:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.skhaa-blog-card {
    background: #fff;
    border: 1px solid #F1F1F1;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skhaa-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.skhaa-blog-image-wrapper {
    position: relative;
    padding: 15px;
}

.skhaa-blog-image-wrapper img {
    border-radius: 12px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.skhaa-blog-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    color: #310D29;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.skhaa-blog-body {
    padding: 0 20px 25px 20px;
}

.skhaa-blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #310D29;
    margin-bottom: 12px;
    line-height: 1.4;
}

.skhaa-blog-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.skhaa-read-more {
    font-size: 14px;
    font-weight: 700;
    color: #641D50;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.skhaa-read-more:hover {
    gap: 12px;
    color: #CA3BA2;
}

@media (max-width: 991px) {
    .skhaa-blog-header-left {
        text-align: center;
        width: 100%;
    }

    .skhaa-blog-header-right {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }

    .skhaa-blog-subtitle {
        margin: 0 auto;
    }

    .skhaa-blog-section {
        padding: 60px 0;
    }
}

/* ===== Footer Section ===== */
.skhaa-footer-main {
    background: radial-gradient(31.81% 92.11% at 50% 100%, #672659 0%, #500A41 100%);
    padding: 80px 0 40px;
    color: #fff;
    border-radius: 40px 40px 0 0;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.skhaa-footer-cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.skhaa-footer-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 0;
}

.skhaa-footer-form {
    display: flex;
    background: #E3E3E3;
    padding: 8px;
    border-radius: 35px;
    margin-left: 20px;
}

.skhaa-footer-input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #333 !important;
    padding: 10px 20px !important;
    height: auto !important;
}

.skhaa-footer-input::placeholder {
    color: #888;
}

.skhaa-btn-try-free {
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #98327C 100%);
    color: #fff !important;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.2s, opacity 0.2s;
}

.skhaa-btn-try-free:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.skhaa-footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.skhaa-footer-links {
    list-style: none;
    padding: 0;
}

.skhaa-footer-links li {
    margin-bottom: 12px;
}

.skhaa-footer-links li a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.skhaa-footer-links li a:hover {
    opacity: 0.8;
    color: #ffffff !important;
}

.skhaa-footer-contact {
    list-style: none;
    padding: 0;
}

.skhaa-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.skhaa-footer-contact li i {
    color: #fff;
    font-size: 18px;
    margin-top: 3px;
}

.skhaa-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.skhaa-footer-social a {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #641D50 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s, background 0.2s;
}

.skhaa-footer-social a:hover {
    transform: translateY(-3px);
    background: #f1f1f1;
}

.skhaa-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.skhaa-footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .skhaa-footer-form {
        margin-left: 0;
        margin-top: 30px;
    }

    .skhaa-footer-main {
        padding: 60px 0 30px;
        border-radius: 20px 20px 0 0;
    }

    .skhaa-footer-cta-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .skhaa-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Blog Detail Page Custom Styles */
.skhaa-hero-meta {
    font-size: 16px;
    font-weight: 500;
}

.skhaa-blog-detail-content h3,
.skhaa-blog-detail-content h4 {
    color: #310D29;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.skhaa-blog-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.skhaa-blog-detail-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.skhaa-blog-detail-list li {
    margin-bottom: 0.5rem;
}

.skhaa-share-post-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.skhaa-share-label {
    font-weight: 700;
    color: #310D29;
}

.skhaa-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #641D50;
    color: #fff !important;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.skhaa-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Leave a Reply Form */
.skhaa-reply-form-section {
    margin-top: 4rem;
}

.skhaa-reply-title {
    color: #310D29;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 0.5rem;
}

.skhaa-reply-subtitle {
    color: #888;
    margin-bottom: 2rem;
}

.skhaa-form-group {
    margin-bottom: 1.5rem;
}

.skhaa-form-label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.skhaa-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #FAFAFA;
    transition: border-color 0.2s;
}

.skhaa-form-control:focus {
    outline: none;
    border-color: #CA3BA2;
    background: #fff;
}

.skhaa-form-control.no-resize {
    resize: none;
}

.skhaa-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.skhaa-form-check input {
    margin-top: 4px;
}

.skhaa-form-check label {
    font-size: 14px;
    color: #666;
}

.skhaa-btn-post-comment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    background: radial-gradient(32.46% 32.46% at 44.78% 0%, #CA3BA2 0%, #98327C 100%);
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.skhaa-btn-post-comment:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.skhaa-btn-post-comment:active {
    transform: scale(0.98);
}

.text-color-custom {
    color: #641D50;
}

.bg-automation {
    background: linear-gradient(180deg, #4A143E 0%, #641D50 100%);
}