.w-webflow-badge {
    display: none !important;
}


/* ================================FOOTER STYLING================================ */

/* Footer Styles */
.cm-footer-section {
    background-image: url(../img/home/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 0;
    overflow: hidden;
    color: #000000;
}

/* .cm-footer-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    z-index: 0;
} */

.cm-container {
    width: 90%;
    max-width: 1630px;
    margin: 0 auto;
    z-index: 1;
}

.cm-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.cm-brand-section {
    display: flex;
    flex-direction: column;
}

.cm-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.cm-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b9d, #c44cf1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(0, 0, 0);
    flex-shrink: 0;
}

.cm-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}

.cm-tagline {
    color: #000000;
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cm-social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cm-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cm-social-link:hover {
    background: linear-gradient(135deg, #ff6b9d, #c44cf1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.cm-footer-column {
    display: flex;
    flex-direction: column;
}

.cm-column-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
}

.cm-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
}

.cm-footer-link {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cm-footer-link:hover {
    color: #ff6b9d;
    transform: translateX(4px);
}

.cm-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cm-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
}

.cm-contact-icon {
    color: #ff6b9d;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cm-policy-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: center;
}

.cm-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.cm-privacy-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.cm-privacy-link:hover {
    color: #ff6b9d;
}

.cm-privacy-link.active {
    color: #ff6b9d;
}

.cm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cm-copyright {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}

.cm-copyright p {
    color: #000000;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cm-container {
        width: 95%;
    }

    .cm-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .cm-footer-section {
        padding: 60px 0 0;
    }
}

@media (max-width: 768px) {
    .cm-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cm-footer-section {
        padding: 40px 0 0;
    }

    .cm-legal-links {
        gap: 16px;
    }

    .cm-logo-text {
        font-size: 24px;
    }

    .cm-social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .cm-container {
        width: 90%;
    }

    .cm-contact-item {
        font-size: 14px;
    }

    .cm-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}


/* ================================END OF FOOTER STYLING================================ */


/* ================================HEADER STYLING================================  */
.cm-navbar {
    background-image: linear-gradient(45deg, #e9a8f1, #9057bf);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Arial', sans-serif;
}

.cm-nav-container {
    max-width: 1630px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
    position: relative;
}

.cm-logo {
    flex-shrink: 0;
}

.cm-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    transition: all 0.3s ease;
}

.cm-logo-link:hover {
    color: #f0f8ff;
    transform: scale(1.05);
}

.cm-logo-text {
    margin-left: 10px;
}

.cm-nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cm-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    height: 70px;
    gap: 10px;
}

.cm-nav-item {
    position: relative;
}

.cm-nav-link {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 25px;
}

.cm-nav-link:hover {
    color: #ffffff;
}

.cm-dropdown-arrow {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* .cm-nav-item:hover .cm-dropdown-arrow {
    transform: rotate(180deg);
} */

.cm-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cm-nav-item:hover .cm-dropdown,
.cm-nav-item.cm-dropdown-active .cm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.cm-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.cm-dropdown-item {
    position: relative;
    list-style: none;
}

.cm-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 0.8);
}

.cm-dropdown-link:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
    color: #667eea;
    padding-left: 25px;
}

.cm-dropdown-item:last-child .cm-dropdown-link {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.cm-dropdown-item:first-child .cm-dropdown-link {
    border-radius: 12px 12px 0 0;
}

.cm-second-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;
    background: #ffffff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cm-dropdown-item:hover .cm-second-dropdown,
.cm-dropdown-item.cm-second-dropdown-active .cm-second-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.cm-second-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 0.8);
}

.cm-second-dropdown-link:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f0ff 100%);
    color: #667eea;
    padding-left: 25px;
}

.cm-second-dropdown .cm-dropdown-item:last-child .cm-second-dropdown-link {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.cm-second-dropdown .cm-dropdown-item:first-child .cm-second-dropdown-link {
    border-radius: 12px 12px 0 0;
}

.cm-nav-right {
    flex-shrink: 0;
}

.cm-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cm-contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cm-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    outline: none;
}

.cm-toggle-bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.cm-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    max-height: 80vh;
    overflow-y: auto;
}

.cm-mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.cm-mobile-nav-item:last-child {
    border-bottom: none;
}

.cm-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cm-mobile-nav-link:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
    color: #667eea;
}

.cm-mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 160px;
}

.cm-mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cm-mobile-dropdown {
    background: #f8f9ff;
    display: none;
}

.cm-mobile-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 30px;
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #e8f0ff;
    transition: all 0.3s ease;
}

.cm-mobile-dropdown-link:hover {
    background: #f0f8ff;
    color: #667eea;
    padding-left: 35px;
}

.cm-mobile-second-dropdown {
    background: #f0f8ff;
    display: none;
}

.cm-mobile-second-dropdown-link {
    display: block;
    padding: 12px 50px;
    color: #666666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #e0f0ff;
    transition: all 0.3s ease;
}

.cm-mobile-second-dropdown-link:hover {
    background: #e8f0ff;
    color: #667eea;
    padding-left: 55px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .cm-nav-container {
        padding: 0 15px;
    }

    .cm-nav-list {
        gap: 5px;
    }

    .cm-nav-link {
        padding: 0 15px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .cm-nav-center {
        display: none;
    }

    .cm-nav-right {
        display: none;
    }

    .cm-mobile-toggle {
        display: flex;
    }

    .cm-mobile-menu.cm-active {
        display: block;
    }

    .cm-mobile-toggle.cm-active .cm-toggle-bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .cm-mobile-toggle.cm-active .cm-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .cm-mobile-toggle.cm-active .cm-toggle-bar:nth-child(3) {
        /* transform: rotate(45deg) translate(-5px, -6px); */
        transform: rotate(45deg) translate(-6px, -8px);
    }

    .cm-logo-link {
        font-size: 20px;
    }

    .cm-nav-container {
        height: 60px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .cm-logo-link {
        font-size: 18px;
    }

    .cm-logo-text {
        margin-left: 8px;
    }

    .cm-nav-container {
        padding: 0 10px;
    }
}

@media (min-width: 769px) {
    .cm-mobile-menu {
        display: none !important;
    }
}

/* Logo Icon Styles */
.cm-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cm-logo-link:hover .cm-logo-icon {
    transform: rotate(360deg);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cm-logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ================================END OF HEADER STYLING================================  */


/* ================================PRIVACY POLICY PAGE STYLING================================   */

.custom-privacy-container {
    margin: 0 auto;
    padding: 0;
    background-color: #ffffff;
}

.custom-privacy-breadcrumbs {
    /* background-image: url(../img/); */
    /* background-color: #9057bf; */
        background-image: linear-gradient(45deg, #e9a8f1, #9057bf);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 350px;
    width: 100%;
}

.custom-privacy-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0;
    text-transform: capitalize;
}

.custom-privacy-breadcrumbs-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-left: 0;
}

.custom-privacy-breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
}

.custom-privacy-breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.custom-privacy-breadcrumb-link:hover {
    color: #0066cc;
    text-decoration: underline;
}

.custom-privacy-breadcrumb-separator {
    margin: 0 10px;
    color: #ffffff;
}

.custom-privacy-breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

.custom-privacy-content {
    /* background: #fff; */
    padding: 50px;
    border-radius: 0;
    box-shadow: none;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #0066cc;
}

.custom-privacy-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.custom-privacy-section {
    margin-bottom: 45px;
}

.custom-privacy-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    letter-spacing: 0;
}

.custom-privacy-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.custom-privacy-text:last-child {
    margin-bottom: 0;
}



.custom-privacy-intro .custom-privacy-text {
    margin-bottom: 15px;
}

.custom-privacy-intro .custom-privacy-text:last-child {
    margin-bottom: 0;
}




@media (max-width: 1024px) {
    .custom-privacy-breadcrumbs {
        padding: 100px 20px;
        min-height: 350px;
    }

    .custom-privacy-page-title {
        font-size: 40px;
    }

    .custom-privacy-breadcrumb-item {
        font-size: 15px;
    }

    .custom-privacy-content {
        padding: 40px;
    }

    .custom-privacy-title {
        font-size: 36px;
    }

    .custom-privacy-section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .custom-privacy-breadcrumbs {
        padding: 80px 20px;
        min-height: 300px;
    }

    .custom-privacy-page-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .custom-privacy-breadcrumb-item {
        font-size: 14px;
    }

    .custom-privacy-breadcrumb-separator {
        margin: 0 8px;
    }

    .custom-privacy-content {
        padding: 30px 25px;
    }

    .custom-privacy-title {
        font-size: 32px;
    }

    .custom-privacy-section-title {
        font-size: 22px;
    }

    .custom-privacy-text {
        font-size: 15px;
    }


}

@media (max-width: 480px) {
    .custom-privacy-breadcrumbs {
        padding: 60px 15px;
        min-height: 195px;
    }

    .custom-privacy-page-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .custom-privacy-breadcrumb-item {
        font-size: 13px;
    }

    .custom-privacy-breadcrumb-separator {
        margin: 0 6px;
    }

    .custom-privacy-content {
        padding: 25px 20px;
        border-radius: 0;
    }

    .custom-privacy-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .custom-privacy-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .custom-privacy-section {
        margin-bottom: 35px;
    }

    .custom-privacy-section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .custom-privacy-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

.custom-privacy-section-subtitle {
    font-size: 18px;
    /* Slightly smaller than main section titles */
    font-weight: 600;
    /* Semi-bold for emphasis */
    color: #333333;
    /* Dark gray text for readability */
    margin-top: 1.2em;
    /* Space above the subtitle */
    margin-bottom: 0.6em;
    /* Space below the subtitle */
    line-height: 1.4;
    /* Comfortable line height */
    display: block;
    /* Ensure it starts on a new line */
}

/* ================================END OF PRIVACY POLICY PAGE STYLING================================   */


/* Active Navigation Styles for Header */
.cm-nav-link.active {
    color: #ffffff;
    /* Change to your primary color */
    font-weight: 600;
    position: relative;
}


/* Active state for mobile navigation */
.cm-mobile-nav-link.active {
    color: #ffffff;
    /* Change to your primary color */
    font-weight: 600;
    background-color: rgba(0, 123, 255, 0.1);
    /* Light background */
    border-left: 3px solid #007bff;
    /* Left border indicator */
    padding-left: 17px;
    /* Adjust padding to account for border */
}

/* Active state for footer links */
.cm-footer-link.active {
    color: #9057bf;
    /* Change to your primary color */
    font-weight: 600;
}




/* Hover states should work well with active states */
.cm-nav-link:hover:not(.active) {
    opacity: 0.8;
}

.cm-footer-link:hover:not(.active) {
    opacity: 0.8;
}

.text-black {
    color: #000000 !important;
}

.text-white {
    color: #ffffff !important;
}

.custom-tp-scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #3d4347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.custom-tp-scroll-btn:hover {
    background-color: #2a2e31;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.custom-tp-scroll-btn.custom-tp-visible {
    opacity: 1;
    visibility: visible;
}

.custom-tp-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid white;
    margin-bottom: 2px;
}

.home-three-article-card-block {
    border: none !important;
}

.home-three-article-card-wrap {
    margin-top: 0px !important;
}

.home-three-article {
    padding-top: 0px !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonials-exar {
        font-size: 16px;
    }
}

@media(min-width: 991px) {
    .flex-column-flip {
        flex-direction: row-reverse !important;
    }
}



/* ======================================Home page testimonial section =================================================== */
/* Testimonials Section Styles with pkd17 prefix */
/* Testimonials Section Styles with pkd17 prefix */
.pkd17-testimonials-section {
    position: relative;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
}

.pkd17-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.pkd17-testimonials-box {
    position: relative;
}

.pkd17-testimonials-wrap {
    position: relative;
}

/* Section Title */
.pkd17-section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.pkd17-section-title {
    margin-bottom: 0px;
}

.pkd17-section-title-text {
    display: inline-block;
    padding: 8px 24px;
    background-color: #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin: 0;
}

.pkd17-section-title-box {
    margin-top: 0px;
}

.pkd17-subtitle {
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    margin: auto;
    max-width: 700px;
}

/* Decorative Shapes */
.pkd17-help-shape-1,
.pkd17-help-shape-2,
.pkd17-testimonial-shap {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.pkd17-help-shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
}

.pkd17-help-shape-2 {
    top: 20%;
    right: 5%;
    width: 80px;
    height: 80px;
}

.pkd17-testimonial-shap {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
}

/* Swiper Container */
.pkd17-testimonials-slider {
    position: relative;
    z-index: 1;
    padding: 20px 0 60px;
    padding-bottom: 40px !important;
}

/* Testimonial Card */
.pkd17-testimonials-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.pkd17-testimonials-item:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Testimonial Image */
.pkd17-testimonials-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
}

/* Testimonial Text Content */
.pkd17-testimonials-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Star Rating */
.pkd17-star-wrap {
    display: flex;
    gap: 4px;
}

.pkd17-star {
    width: 20px;
    height: 20px;
}

/* Testimonial Text */
.pkd17-testimonials-exar {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex: 1;
}

/* Testimonial Name */
.pkd17-testimonial-name-wrap {
    margin-top: auto;
}

.pkd17-testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Swiper Pagination */
.pkd17-testimonials-slider .swiper-pagination {
    bottom: 0;
}

.pkd17-testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.pkd17-testimonials-slider .swiper-pagination-bullet-active {
    background: #9057bf;
    width: 30px;
    border-radius: 6px;
}

/* Swiper Navigation Buttons */
.pkd17-testimonials-slider .swiper-button-next,
.pkd17-testimonials-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pkd17-testimonials-slider .swiper-button-next:after,
.pkd17-testimonials-slider .swiper-button-prev:after {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.pkd17-testimonials-slider .swiper-button-next:hover,
.pkd17-testimonials-slider .swiper-button-prev:hover {
    background: #6366f1;
    transform: scale(1.1);
}

.pkd17-testimonials-slider .swiper-button-next:hover:after,
.pkd17-testimonials-slider .swiper-button-prev:hover:after {
    color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .pkd17-subtitle {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .pkd17-testimonials-section {
        padding: 60px 20px;
    }

    .pkd17-section-title-wrap {
        margin-bottom: 40px;
    }

    .pkd17-subtitle {
        font-size: 32px;
    }

    .pkd17-help-shape-1,
    .pkd17-help-shape-2 {
        width: 60px;
        height: 60px;
    }

    .pkd17-testimonial-shap {
        width: 100px;
        height: 100px;
    }

    .pkd17-testimonials-slider .swiper-button-next,
    .pkd17-testimonials-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .pkd17-testimonials-slider .swiper-button-next:after,
    .pkd17-testimonials-slider .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .pkd17-testimonials-section {
        padding: 40px 15px;
    }

    .pkd17-subtitle {
        font-size: 28px;
    }

    .pkd17-section-title-text {
        font-size: 12px;
        padding: 6px 20px;
    }

    .pkd17-testimonials-item {
        padding: 25px;
    }

    .pkd17-testimonials-img {
        width: 70px;
        height: 70px;
    }

    .pkd17-testimonials-exar {
        font-size: 15px;
    }

    .pkd17-testimonial-name {
        font-size: 16px;
    }

    .pkd17-testimonials-slider .swiper-button-next,
    .pkd17-testimonials-slider .swiper-button-prev {
        display: none;
    }
}

/* ================================END OF TESTIMONIAL SECTION STYLING================================ */
.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pt-5 {
    padding-top: 5rem !important;
}

.pb-5 {
    padding-bottom: 5rem !important;
}

.text-center {
    text-align: center !important;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure content sits above the video */
.hero>.w-layout-blockcontainer {
    position: relative;
    z-index: 1;
}

.hero-heading-wrap h2,
.hero-heading-wrap h1 {
    color: #000000;
}

.cut-text-white.v1 {
    color: #000000;
}

.tagline {
    color: #9057bf;
}

.p-teaser-img-wrap img {
    background: #ffffff;
    border: none;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* =============about page ======================= */
.service-three-hero-text-wrap {
    position: relative;
    flex: 0 56%;
    padding-top: 14px;
    z-index: 1;
}

.service-three-hero {
    background-image: url(../img/about/banner.png) !important;
    background-color: unset !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    padding-bottom: 200px !important;
}

.service-three-hero-image-three {
    z-index: 1;
}

.service-three-hero {
    position: relative;
}

/* ================================================= */
.text-purple {
    color: #9057bf;
}

.letter-animation.text-wrapper p {
    font-size: 22px;
    font-weight: 700;
}

.cut-home-three-mission-card-box img {
    /* background: #ffd6f0;
    border-radius: 50%;
    padding: 10px; */
    width: 60px;
    height: 60px;
}

.cut-home-three-mission-card-box-paragraph {
    max-width: 888px !important;
    margin: auto !important;
    padding-top: 6px !important;
}

.home-three-application-heading {
    max-width: 100% !important;
}

h2.home-three-application-heading {
    margin-top: 5px !important;
}

.home-three-application-image-block-one {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
}

.home-three-application-icon-wrap img {
    /* background: #ffd6f0;
    border-radius: 50%;
    padding: 10px; */
    width: 60px;
    height: 60px;
}

.home-three-application-image-block-one p {
    grid-column: 2;
    margin-top: 0 !important;
}

.section-title-text._02,
.pkd17-section-title-text,
.section-title-text,
.heading-six {
    background-color: unset;
    font-style: normal;
    font-size: 18px;
    color: var(--pkd-acco-text-orange);
    font-weight: 700 !important;
    letter-spacing: 2px;
    text-transform: uppercase !important;
    padding-left: 0;
    color: #9057bf !important;
}

.tagline {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
}

.pkd-acco-label {
    font-size: 18px !important;
}

.text-purple {
    color: #9057bf !important;
}

.icon-box {
    background-color: #9057bf !important;
}

.about-two-who-we-are-middle-image-one img {
    width: 100%;
    height: auto;
}

.about-two-who-we-are {
    background-color: #ffffff !important;
}

.home-two-investment-card-number-wrap {
    background-color: #9057bf !important;
}

.home-two-investment-heading {
    max-width: 700px !important;
}

.home-two-investment {
    background-color: #ffffff !important;
}

.home-two-investment-image-block {
    background-image: unset !important;
}

.home-two-investment-image-two-wrap1 img {
    object-fit: contain;
    width: 400px !important;
    height: 100%;
}

.service-one-hero {
    position: relative;
}

.service-one-hero-text-block {
    position: relative;
    z-index: 1;
}

/* ===============hero overlay========================= */
/* .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.432);
    z-index: 0;
} */


img.client-img {
    max-width: 180px;
}

.service-one-hero {
    background-color: unset !important;
    background-image: url(../img/Services/service_banner.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.text-white {
    color: #ffffff !important;
}

.home-one-service-icon-wrap {
    background-color: unset !important;
    box-shadow: none;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 120px !important;
    height: 120px !important;
}

.home-one-service-icon-wrap img {
    width: 90px;
    height: 90px;
}

.home-two-solution-card-box-image-block.overflow-none.home-two-solution-card-box-image-block-two {

    background-color: unset !important;
    padding: 0 !important;
}

.home-two-solution-card-box-image-block.overflow-none.home-two-solution-card-box-image-block-two img {
    object-fit: contain !important;
    height: 100%;
    width: 100%;
}

.home-three-article-card-image-wrap img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.home-three-article,
.home-three-article-card-block {
    background-color: unset !important;
}

.about-two-hero {
    background-color: unset !important;
    background-image: url(../img/FAQ/faq_banner.png) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding-top: 170px;
}

.about-two-hero-text-block div h1,
.about-two-hero-text-block div div {
    color: #000000 !important;
}

.accordion-contain-two {
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.features-faq {
    background-color: #f8f5fe;
}

.about-two-hero {
    background-position: center !important;
    padding-top: 80px !important;
}
.cut-home-three-mission{
    background-image: url(../img/home/bg2.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.pkd-acco-section, .about-two-who-we-are{
    background-image: url(../img/home/blured1.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.portfolio, .home-two-solution, .home-three-article{
    background-image: url(../img/home/bg1.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.home-three-application {
    background-image: url(../img/home/blured2.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
h2.home-three-application-heading{
    font-weight: 600 !important;
}
.service-three-hero-text-wrap div p{
    font-weight: 400 !important;
    font-size: 18px;
}
.contact-two-hero {
    background-color: unset !important;
    background-image: url(../img/contact/contact_banner.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.body-button.body-button-one {
    background-color: #9057bf !important;
}
.body-button {
    text-align: center;
    border: 1px solid #9057bf !important;
}