:root {
    --sd-black: #1E1D30;
    --sd-text: #1E1D30;
    --sd-border: #e9e9e9;
    --sd-lime: #E0F500;
    --sd-bg: #ffffff;
    --sd-purple: #DE54FE;
    --sd-primary-blue: #6455E2;
    --sd-prpl-gradient: linear-gradient(101.7deg, #DE54FE 0%, #9329F2 100%);
    --sd-transition: all 0.35s ease;
    --sd-dark-bg: #0C0121;
    --sd-new-green: #2BDEB0;
    --sd-text-color: rgba(255, 255, 255, 0.72);
}

body.menu-open{
    overflow: hidden;
    touch-action: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", sans-serif;
    margin: 0;
}

section{
    min-height: 40vh;
}

span,
p,
a,
li,
strong {
    font-family: "Urbanist", sans-serif;
}

body {
    font-family: "Urbanist", sans-serif !important;
}

html {
    overflow-x: hidden;
}

.slick-track {
    padding-top: 30px !important;
}

p {
    font-size: 1.25rem !important;
}


.sd-top-badge,
.sd-testimonial-tag,
.sd-video-tag {
    display: none !important;
}

/* =========================================================
            NAVBAR
        ========================================================= */

.sd-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--sd-bg);
    border-bottom: 1px solid var(--sd-border);
    transition: var(--sd-transition);
}

.sd-navbar.sticky {
    position: fixed;
    top: 0;
    animation: slideDown 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.sd-navbar-inner {
    height: 78px;
}

.sd-logo {
    font-size: 42px;
    font-weight: 700;
    color: var(--sd-black);
    text-decoration: none;
    line-height: 1;
}

.sd-logo img {
    height: 70px;
    width: auto;
}

.sd-nav-links {
    gap: 42px;
}

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

.sd-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--sd-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--sd-transition);
    padding: 30px 0;
}

.sd-nav-link:hover {
    color: var(--sd-purple);
}

.sd-chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Desktop Dropdown */

.sd-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--sd-transition);
}

.sd-dropdown-menu a {
    display: block;
    padding: 12px 22px;
    text-decoration: none;
    color: var(--sd-black);
    font-weight: 500;
    transition: var(--sd-transition);
}

.sd-dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--sd-purple);
}

.sd-nav-item:hover .sd-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sd-nav-item:hover .sd-chevron {
    transform: rotate(180deg);
}

/* Hamburger */

.sd-menu-btn {
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    color: var(--sd-black);
    font-size: 24px;
    transition: var(--sd-transition);
}

.sd-menu-btn:hover {
    color: var(--sd-purple);
}

/* =========================================================
            SIDEBAR
        ========================================================= */

.sd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--sd-transition);
}

.sd-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sd-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: var(--sd-transition);
    overflow-y: auto;
    padding: 30px;
}
aside#sdSidebar
 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sd-sidebar.active {
    right: 0;
}

aside.sd-sidebar.active body{
    overflow: none;
}

.sd-sidebar-top {
    margin-bottom: 40px;
}

.sd-sidebar-logo {
    font-size: 36px;
    font-weight: 700;
    text-decoration: none;
    color: var(--sd-black);
}

.sd-close-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--sd-transition);
}

.sd-close-btn:hover {
    background: var(--sd-black);
    color: #fff;
}

/* Sidebar Menu */

.sd-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sd-sidebar-menu li {
    border-bottom: 1px solid #ececec;
}

.sd-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    text-decoration: none;
    background: transparent;
    border: none;
    color: var(--sd-black);
    font-size: 18px;
    font-weight: 600;
}

.sd-sidebar-link i {
    transition: transform 0.3s ease;
}

.sd-sidebar-dropdown {
    display: none;
    padding-bottom: 16px;
}

.sd-sidebar-dropdown a {
    display: block;
    text-decoration: none;
    color: var(--sd-text);
    padding: 8px 0 8px 18px;
    font-size: 1rem;
}

.sd-sidebar-dropdown a:hover {
    color: var(--sd-purple);
    text-decoration: underline;
}

.sd-sidebar-item.active .sd-sidebar-dropdown {
    display: block;
}

.sd-sidebar-item.active .sd-sidebar-link i {
    transform: rotate(180deg);
}

/* Prevent Scroll */

body.menu-open {
    overflow: hidden;
}

.sd-hero-section {
    position: relative;
    overflow: hidden;
    background: var(--sd-dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    z-index: 1;
}



/* ======================================================
        GRID OVERLAY
    ====================================================== */

.sd-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: -1;
}

.sd-grid-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(222, 84, 254, 0.18) 0%,
            rgba(12, 1, 33, 0.96) 75%);
}

/* ======================================================
        HERO CONTENT
    ====================================================== */

.sd-hero-content {
    position: relative;
    z-index: 2;
}

.sd-top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgb(222 84 254 / 8%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sd-top-badge.dark {
    color: var(--sd-black) !important;
}

.sd-top-badge span {
    color: var(--sd-purple);
    margin-left: 4px;
}

.sd-hero-title {
    color: #fff;
    font-size: 74px;
    line-height: 1.06;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.sd-globe-icon,
.sd-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    vertical-align: middle;
    transition: var(--sd-transition);
}

.sd-globe-icon {
    background: var(--sd-prpl-gradient);
    color: #fff;
    margin-left: 6px;
}

.sd-arrow-icon {
    background: #fff;
    color: var(--sd-purple);
    margin-left: -10px;
}

.sd-hero-title:hover .sd-globe-icon {
    transform: rotate(15deg) scale(1.08);
}

.sd-hero-title:hover .sd-arrow-icon {
    transform: translateX(4px);
}

.sd-hero-desc {
    max-width: 620px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 1.9;
}

/* ======================================================
        STORE BUTTONS
    ====================================================== */

.sd-store-wrap {
    gap: 16px;
}

.sd-store-btn {
    display: inline-block;
    transition: var(--sd-transition);
}

.sd-store-btn img {
    height: 52px;
    object-fit: contain;
}

.sd-store-btn:hover {
    transform: translateY(-6px) scale(1.04);
}

/* ======================================================
        STICKY QR
    ====================================================== */

.sd-qr-sticky {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.sd-qr-box {
    width: 130px;
    background: rgb(1 25 81 / 40%);
    border: 1px solid rgba(222, 84, 254, 0.6);
    border-radius: 18px;
    padding: 14px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: var(--sd-transition);
    cursor: pointer;
}

.sd-qr-box:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(222, 84, 254, 0.18);
}

.sd-qr-box h6 {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 14px;
}

.sd-qr-image {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    height: fit-content !important;
    display: flex;
}

.sd-app-showcase-sec {
    position: relative;
    overflow: hidden;
    background: var(--sd-dark-bg);
    padding: 50px 0;
    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-showcase-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    z-index: -2;
}

.sd-showcase-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(222, 84, 254, 0.20) 0%,
            rgba(12, 1, 33, 0.95) 72%);
}

/* ======================================================
        FEATURE CARDS
    ====================================================== */

.sd-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sd-feature-card {
    position: relative;
    overflow: hidden;
    padding: 26px 24px 28px;
    min-height: 350px;
    border-radius: 28px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: var(--sd-transition);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 60px rgba(0, 0, 0, 0.35);
}

.sd-feature-card::before {
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle,
            #6455e247 0%,
            #6355e200 72%);
    transition: var(--sd-transition);
}

.sd-feature-card:hover {
    transform: translateY(-10px);
    border-color: #6355e263;
}

.sd-feature-card:hover::before {
    transform: scale(1.15);
}

.sd-feature-tag {
    display: inline-flex;
    align-items: center;
    /* gap: 8px; */
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sd-black);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 28px;
}
.sd-event-card .sd-feature-tag {
    font-size: 15px !important;
    background: #f1fbff;
}

.sd-feature-tag i {
    color: var(--sd-purple);
    font-size: 12px;
}

.sd-feature-subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin-bottom: 18px;
}

.sd-feature-title {
    color: #fff;
    font-size: 42px;
    line-height: 1.14;
    font-weight: 600;
    margin-bottom: 36px;
    letter-spacing: -1px;
}

.sd-feature-title{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sd-feature-text{
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 
}

.sd-feature-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin-bottom: 30px;
}

.sd-feature-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--sd-primary-blue);
    color: #fff;
    transition: var(--sd-transition);
    border: none !important;
}

.sd-feature-arrow:hover {
    transform: scale(1.08) rotate(-10deg);
    color: #fff;
}

/* ======================================================
        MOBILE FRAME
    ====================================================== */

.sd-mobile-frame {
    position: relative;
    text-align: center;
    z-index: 5;
}

.sd-mobile-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.40) 0%,
            rgba(222, 84, 254, 0) 72%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: sdGlow 4s ease-in-out infinite alternate;
}

@keyframes sdGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.sd-mobile-frame img {
    max-height: 920px;
    object-fit: contain;
    filter:
        drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    transition: var(--sd-transition);
}

.sd-mobile-frame:hover img {
    transform: translateY(-10px);
}



.sd-logo-marquee-sec {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: var(--sd-dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-logo-top {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 45px;
    letter-spacing: -0.3px;
}

.sd-logo-top span {
    color: var(--sd-purple);
    font-weight: 700;
}



/* ======================================================
        MARQUEE
    ====================================================== */

.sd-logo-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sd-logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: sdMarqueeMove 24s linear infinite;
}

/* HOVER STOP */
.sd-logo-marquee:hover .sd-logo-track {
    animation-play-state: paused;
}

@keyframes sdMarqueeMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ======================================================
        LOGO ITEM
    ====================================================== */

.sd-logo-item {
    flex: 0 0 auto;
    margin: 0 55px;
    opacity: 0.45;
    transition: var(--sd-transition);
}

.sd-logo-item img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter:
        brightness(0) saturate(100%) invert(21%) sepia(30%) saturate(1472%) hue-rotate(245deg) brightness(96%) contrast(94%);
    transition: var(--sd-transition);
}

.sd-logo-item:hover {
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
}

.sd-logo-item:hover img {
    filter: none;
}

.sd-about-sec {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #f6f6f6;
    z-index: 1;
}

/* ======================================================
        BG ICON
    ====================================================== */

.sd-about-bg-icon {
    position: absolute;
    top: -20px;
    right: 60px;
    font-size: 260px;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    pointer-events: none;
    animation: sdFloatIcon 6s ease-in-out infinite alternate;
    display: none;
}

@keyframes sdFloatIcon {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(15px) rotate(4deg);
    }
}

/* ======================================================
        IMAGE
    ====================================================== */

.sd-about-image-wrap {
    position: relative;
}

.sd-about-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.22) 0%,
            rgba(222, 84, 254, 0) 72%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: var(--sd-transition);
}

.sd-about-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #e9cfee;
    /* padding: 20px; */
    transition: var(--sd-transition);
}

.sd-transform-sec .sd-about-image-box {
    margin: auto;
    width: 80%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #e9cfee;
    /* padding: 20px; */
    transition: var(--sd-transition);
    margin-top: 20px;
}

.sd-about-main-img {
    width: 100%;
    height: auto;
    object-fit: fill;
    transition: var(--sd-transition);
}



/* HOVER */

/* .sd-about-image-wrap:hover .sd-about-main-img {
        transform: scale(1.04) translateY(-6px);
    }

    .sd-about-image-wrap:hover .sd-about-image-box {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.10);
    }

    .sd-about-image-wrap:hover .sd-about-glow {
        transform: translate(-50%, -50%) scale(1.15);
    } */

/* ======================================================
        CONTENT
    ====================================================== */

.sd-about-content {
    padding-left: 24px;
}

.sd-about-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--sd-black);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 28px;
}

.sd-about-tag span {
    color: var(--sd-purple);
    margin-left: 4px;
    font-weight: 600;
}

.sd-about-title {
    color: var(--sd-black);
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 28px;
}
.sd-hero-section h2
 {
    color: #fff !important;
    font-size: 60px !important;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 70px;
}
.sd-hero-section p {
    color: rgba(255, 255, 255, 0.72) !important;

}

.sd-about-desc {
    color: var(--sd-black);
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 18px;
}

.sd-segment-sec {
    padding: 50px 0;
    background: #f6f6f6;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-segment-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(222, 84, 254, 0.10);
    color: var(--sd-black);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 26px;
}

.sd-segment-tag span {
    color: var(--sd-purple);
    margin-left: 4px;
}

.sd-segment-title {
    color: var(--sd-black);
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 50px;
}

.sd-segment-desc {
    color: var(--sd-gray);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 70px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-segment-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 34px 24px 20px;
    border-radius: 26px;
    background: #fff;
    transition: var(--sd-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* HOVER EFFECT */

.sd-segment-card:hover,
.sd-segment-card.active {
    background:
        linear-gradient(180deg,
            #210035 0%,
            #7000b3 45%,
            #f19df0 100%);
    transform: translateY(-10px) rotate(-1.5deg);
    box-shadow: 0 25px 60px rgba(222, 84, 254, 0.22);
}

/* ======================================================
        ICON
    ====================================================== */

.sd-segment-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #6558e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: var(--sd-transition);
}

.sd-segment-icon i {
    color: #fff;
    font-size: 24px;
}

.sd-segment-card:hover .sd-segment-icon,
.sd-segment-card.active .sd-segment-icon {
    background: #fff;
}

.sd-segment-card:hover .sd-segment-icon i,
.sd-segment-card.active .sd-segment-icon i {
    color: var(--sd-purple);
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-segment-card-title {
    color: var(--sd-black);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: -0.8px;
    transition: var(--sd-transition);
}

.sd-segment-card:hover .sd-segment-card-title,
.sd-segment-card.active .sd-segment-card-title {
    color: #fff;
}

/* ======================================================
        BOTTOM BOX
    ====================================================== */

.sd-segment-bottom {
    background: #f2edf4;
    border-radius: 18px;
    padding: 22px 18px;
    transition: var(--sd-transition);
}

.sd-segment-bottom p {
    color: #4b4b4b;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    transition: var(--sd-transition);
}

.sd-segment-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #6558e7;
    font-size: 15px;
    font-weight: 600;
    transition: var(--sd-transition);
}

.sd-segment-bottom a i {
    font-size: 12px;
}

/* HOVER */

.sd-segment-card:hover .sd-segment-bottom,
.sd-segment-card.active .sd-segment-bottom {
    background: #fff;
}

.sd-segment-card:hover .sd-segment-bottom p,
.sd-segment-card.active .sd-segment-bottom p {
    color: #555;
}

.sd-segment-card:hover .sd-segment-bottom a,
.sd-segment-card.active .sd-segment-bottom a {
    color: var(--sd-purple);
}

.sd-segment-bottom a:hover {
    gap: 14px;
}


/* REMOVE overflow hidden FROM PARENT SECTION */
.sd-how-work-sec {
    padding: 50px 0;
    background: #f7f7f7;
    overflow: visible;
}



/* ======================================================
        LEFT STICKY
    ====================================================== */

/* STICKY FIX */
.sd-how-left-sticky {
    position: sticky;
    top: 120px;
}

.sd-how-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    background: #e9d3f0;
    transition: var(--sd-transition);
}

.sd-how-image-box img {
    width: 100%;
    transition: var(--sd-transition);
}

.sd-how-image-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(222, 84, 254, 0.15);
}

.sd-how-image-box:hover img {
    transform: scale(1.03);
}

/* ======================================================
        STORE
    ====================================================== */

.sd-how-store-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.sd-how-store-btn {
    display: inline-block;
    transition: var(--sd-transition);
}

.sd-how-store-btn img {
    height: 52px;
    object-fit: contain;
}

.sd-how-store-btn:hover {
    transform: translateY(-6px) scale(1.04);
}

/* ======================================================
        TOP
    ====================================================== */

.sd-how-top {
    margin-bottom: 50px;
}

.sd-how-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(222, 84, 254, 0.08);
    border: 1px solid rgba(222, 84, 254, 0.10);
    color: var(--sd-black);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
}

.sd-how-title {
    color: var(--sd-black);
    font-size: 3rem ;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0;
}

/* ======================================================
        ITEMS
    ====================================================== */

.sd-how-items {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-how-card {
    position: relative;
    padding: 22px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(222, 84, 254, 0.12);
    transition: var(--sd-transition);
}

.sd-how-card:hover {
    transform: translateY(-8px);
    border-color: rgba(222, 84, 254, 0.30);
    box-shadow: 0 25px 60px rgba(222, 84, 254, 0.10);
}

/* ======================================================
        ICON
    ====================================================== */

.sd-how-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--sd-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--sd-transition);
}

.sd-how-icon i {
    color: #fff;
    font-size: 24px;
}

.sd-how-card:hover .sd-how-icon {
    background: var(--sd-prpl-gradient);
    transform: rotate(-8deg) scale(1.05);
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-how-card-title {
    color: var(--sd-black);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* ======================================================
        CONTENT BOX
    ====================================================== */

.sd-how-card-content {
    background: #f3edf7;
    border-radius: 20px;
    padding: 24px;
}

.sd-how-card-content p {
    color: #5a5a5a;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sd-how-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--sd-primary-blue);
    font-size: 16px;
    font-weight: 700;
    transition: var(--sd-transition);
}

.sd-how-card-content a i {
    font-size: 12px;
}

.sd-how-card-content a:hover {
    color: var(--sd-purple);
    gap: 14px;
}

/* ======================================================
    SECTION
====================================================== */

.sd-resource-sec {
    position: relative;
    overflow: visible;
    padding: 140px 0;
    background:
        radial-gradient(circle at bottom left,
            rgba(100, 85, 226, 0.35) 0%,
            rgba(12, 1, 33, 0) 30%),
        radial-gradient(circle at bottom right,
            rgba(222, 84, 254, 0.30) 0%,
            rgba(12, 1, 33, 0) 30%),
        var(--sd-dark-bg);
}

/* ======================================================
    LEFT STICKY
====================================================== */

.sd-resource-left {
    position: sticky;
    top: 120px;
}

.sd-resource-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    background: #e9d4f1;
    transition: var(--sd-transition);
}

.sd-resource-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.08),
            transparent);
    opacity: 0;
    transition: var(--sd-transition);
}

.sd-resource-image-box img {
    width: 100%;
    transition: var(--sd-transition);
}

.sd-resource-image-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(222, 84, 254, 0.20);
}

.sd-resource-image-box:hover img {
    transform: scale(1.04);
}

.sd-resource-image-box:hover::after {
    opacity: 1;
}

/* ======================================================
    STORE BUTTONS
====================================================== */

.sd-resource-store-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.sd-resource-store-btn {
    display: inline-block;
    transition: var(--sd-transition);
}

.sd-resource-store-btn img {
    height: 52px;
}

.sd-resource-store-btn:hover {
    transform: translateY(-6px) scale(1.04);
}

/* ======================================================
    TOP
====================================================== */

.sd-resource-top {
    margin-bottom: 50px;
}

.sd-resource-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
    backdrop-filter: blur(12px);
}

.sd-resource-title {
    color: #fff;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0;
}

/* ======================================================
    RIGHT LIST
====================================================== */

.sd-resource-scroll {
    display: flex;
    flex-direction: column;
    gap: 22px;

    max-height: unset;
    overflow: visible;
    padding-right: 0;
}

/* ======================================================
    ITEM
====================================================== */

.sd-resource-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;

    padding: 20px;
    border-radius: 26px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.10);

    transition: var(--sd-transition);
}

.sd-resource-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01));
    opacity: 0;
    transition: var(--sd-transition);
}

.sd-resource-item:hover,
.sd-resource-item.active {
    background: rgba(255, 255, 255, 0.96);
    border-color: transparent;

    transform:
        translateX(10px) rotate(-1deg);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.sd-resource-item:hover::before,
.sd-resource-item.active::before {
    opacity: 1;
}

/* ======================================================
    THUMB
====================================================== */

.sd-resource-thumb {
    width: 90px;
    min-width: 90px;
    height: 90px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #efd3f8 0%,
            #dcc4ff 100%);

    transition: var(--sd-transition);
}

.sd-resource-item:hover .sd-resource-thumb,
.sd-resource-item.active .sd-resource-thumb {
    transform:
        rotate(-6deg) scale(1.06);

    background:
        linear-gradient(135deg,
            var(--sd-purple) 0%,
            var(--sd-primary-blue) 100%);
}

/* ======================================================
    CONTENT
====================================================== */

.sd-resource-content {
    flex: 1;
}

.sd-resource-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 12px;

    border-radius: 100px;

    background: #fff;

    color: var(--sd-black);

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 14px;
}

.sd-resource-content h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;

    margin-bottom: 10px;

    transition: var(--sd-transition);
}

.sd-resource-content p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 0;

    transition: var(--sd-transition);
}

.sd-resource-item:hover .sd-resource-content h3,
.sd-resource-item.active .sd-resource-content h3 {
    color: var(--sd-black);
}

.sd-resource-item:hover .sd-resource-content p,
.sd-resource-item.active .sd-resource-content p {
    color: #666;
}

/* ======================================================
    ARROW
====================================================== */
section.sd-resource-links
 {
    min-height: 40vh;
}

.sd-resource-arrow {
    width: 48px;
    /* min-width: 48px; */
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: rgba(255, 255, 255, 0.10);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-resource-item:hover .sd-resource-arrow,
.sd-resource-item.active .sd-resource-arrow {
    background: var(--sd-prpl-gradient);
    color: #fff;

    transform:
        rotate(-25deg) scale(1.08);
}


.sd-counter-sec {
    padding: 50px 0;
    background: #fff;
}

.sd-counter-text{
    font-size: .9rem;
    color: #ffffffce;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-counter-title {
    color: var(--sd-black);
    font-size: 62px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 0;
}

/* ======================================================
        WRAP
    ====================================================== */

.sd-counter-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-counter-card {
    /* max-width: 290px; */
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 20px;
    background: #fff;
    transition: var(--sd-transition);
    width: 40%;
}

.sd-counter-card:hover,
.sd-counter-card.active {
    background: var(--sd-prpl-gradient);
    box-shadow: 0 18px 45px rgba(222, 84, 254, 0.28);

    transform:
        translateY(-8px) scale(1.03);
}

/* ======================================================
        ICON
    ====================================================== */

.sd-counter-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(100, 85, 226, 0.12);

    transition: var(--sd-transition);
}

.sd-counter-icon i {
    color: var(--sd-primary-blue);
    font-size: 16px;
    transition: var(--sd-transition);
}

.sd-counter-card:hover .sd-counter-icon,
.sd-counter-card.active .sd-counter-icon {
    background: rgba(255, 255, 255, 0.16);
}

.sd-counter-card:hover .sd-counter-icon i,
.sd-counter-card.active .sd-counter-icon i {
    color: #fff;
}

.sd-counter-form-sec form {
    display: flex;
    flex-direction: column;
}

.sd-counter-form-sec form .sd-faq-btn {

    width: fit-content;
    margin: auto;
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-counter-content h3 {
    color: var(--sd-black);
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
    transition: var(--sd-transition);
}

.sd-counter-content p {
    color: #444;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    transition: var(--sd-transition);
}

.sd-counter-card:hover .sd-counter-content h3,
.sd-counter-card:hover .sd-counter-content p,
.sd-counter-card.active .sd-counter-content h3,
.sd-counter-card.active .sd-counter-content p {
    color: #fff;
}

.sd-faq-sec {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: var(--sd-dark-bg);
    border-radius: 36px;
    z-index: 1;
    margin-left: 30px;
    margin-right: 30px;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-faq-blur {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: -1;
}

.sd-faq-blur-left {
    left: -100px;
    bottom: -100px;
    background: var(--sd-primary-blue);
}

.sd-faq-blur-right {
    right: -100px;
    bottom: -100px;
    background: var(--sd-purple);
}

/* ======================================================
        TOP
    ====================================================== */

.sd-faq-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.10);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 28px;

    backdrop-filter: blur(12px);
}

.sd-faq-tag span {
    color: var(--sd-purple);
    margin-left: 4px;
}

.sd-faq-title {
    color: #fff;

    font-size: 3rem;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 24px;
}

.sd-faq-desc {
    color: rgba(255, 255, 255, 0.70);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 60px;
}

/* ======================================================
        FAQ ITEM
    ====================================================== */

.sd-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sd-faq-item {
    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: var(--sd-transition);
}

.sd-faq-item.active {
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 100%);

    border-color: rgba(255, 255, 255, 0.12);
}

/* ======================================================
        QUESTION
    ====================================================== */

.sd-faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 26px;

    border: 0;
    background: transparent;

    color: #fff;

    font-size: 22px;
    font-weight: 500;

    text-align: left;

    cursor: pointer;

    transition: var(--sd-transition);
}

.sd-faq-question:hover {
    color: var(--sd-lime);
}

/* ======================================================
        ICON
    ====================================================== */

.sd-faq-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.06);

    transition: var(--sd-transition);
}

.sd-faq-icon i {
    color: #fff;
    font-size: 12px;
    transition: var(--sd-transition);
}

.sd-faq-item.active .sd-faq-icon {
    background: #2BDEB0;
    color: var(--sd-dark-bg) !important;
}

.sd-faq-item.active .sd-faq-icon i {
    color: #fff;
}

/* ======================================================
        ANSWER
    ====================================================== */

.sd-faq-answer {
    display: none;

    padding:
        0 26px 26px 26px;
}

.sd-faq-answer p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 0;
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 10px 12px 10px 24px;

    border-radius: 100px;

    text-decoration: none;

    background: var(--sd-lime);

    color: var(--sd-black);

    font-size: 15px;
    font-weight: 700;

    transition: var(--sd-transition);
}

.sd-faq-btn-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-black);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-faq-btn:hover {
    transform: translateY(-6px);
    color: var(--sd-black);
}

.sd-faq-btn:hover .sd-faq-btn-icon {
    transform: rotate(-20deg);
}

.sd-faq-answer {
    display: block !important;

    max-height: 0;
    overflow: hidden;

    opacity: 0;

    padding:
        0 26px 0 26px;

    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        padding 0.35s ease;
}

/* ACTIVE */

.sd-faq-item.active .sd-faq-answer {
    max-height: 400px !important;
    color: var(--sd-text-color) !important;

    opacity: 1 !important;

    padding:
        0 26px 26px 26px !important;
}


/* ICON ROTATE */

.sd-faq-icon i {
    transition:
        transform 0.35s ease,
        opacity 0.35s ease !important;
}

.sd-faq-item.active .sd-faq-icon i {
    transform: rotate(180deg) !important;
}

.sd-testimonial-sec {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #f8f8f8;
    z-index: 1;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-testimonial-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: -1;
}

.sd-testimonial-blur-left {
    left: -120px;
    bottom: -100px;
    background: var(--sd-primary-blue);
}

.sd-testimonial-blur-right {
    right: -120px;
    top: -100px;
    background: var(--sd-purple);
    display: none;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-testimonial-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(222, 84, 254, 0.10);

    color: var(--sd-black);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 28px;
}

.sd-testimonial-tag span {
    color: var(--sd-purple);
    margin-left: 4px;
}

.sd-testimonial-title {
    color: var(--sd-black);

    font-size: 3rem;
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 24px;
}

.sd-testimonial-desc {
    color: #666;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 70px;
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-testimonial-slider {
    margin: 0 -14px;
}

.sd-testimonial-slide {
    padding: 0 14px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-testimonial-card {
    position: relative;

    height: 100%;

    padding: 34px 30px;

    border-radius: 26px;

    background: #f5edf8;

    transition: var(--sd-transition);
}

.sd-testimonial-card:hover {
    transform:
        translateY(-10px) rotate(-1deg);

    background: #fff;

    box-shadow: 0 25px 60px rgba(222, 84, 254, 0.12);
}

.sd-testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3f3f3f;
    font-size: 17px;
    line-height: 2;
    margin-bottom: 34px;
}

.sd-testimonial-card p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ======================================================
        BOTTOM
    ====================================================== */

.sd-testimonial-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
}

.sd-testimonial-bottom h4 {
    color: var(--sd-black);

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 4px;

display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sd-testimonial-bottom span {
    color: #777;

    font-size: 13px;
}

/* ======================================================
        STARS
    ====================================================== */

.sd-testimonial-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sd-testimonial-stars i {
    color: #ffb547;
    font-size: 14px;
}

/* ======================================================
        NAVIGATION
    ====================================================== */

.sd-testimonial-nav-wrap {
    margin-top: 50px;
    margin-bottom: 40px;
}

.sd-testimonial-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: absolute;
    top: 46%;
    width: 100%;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.sd-testimonial-prev,
.sd-testimonial-next {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: var(--sd-black);

    transition: var(--sd-transition);
}

/* .sd-testimonial-prev i {
    transform: rotate(180deg);
} */

.sd-testimonial-prev:hover,
.sd-testimonial-next:hover {
    background: var(--sd-prpl-gradient);
    color: #fff;

    transform: translateY(-4px);
}

/* ======================================================
        DOTS
    ====================================================== */

.sd-testimonial-slider .slick-dots {
    position: relative;
    bottom: 0;

    margin-top: 36px;
}

.sd-testimonial-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 4px;
}

.sd-testimonial-slider .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 100px;

    background: #cfcfcf;

    padding: 0;

    transition: var(--sd-transition);
}

.sd-testimonial-slider .slick-dots li button:before {
    display: none;
}

.sd-testimonial-slider .slick-dots li.slick-active button {
    width: 42px;

    background: var(--sd-primary-blue);
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-testimonial-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    background: transparent;
    color: var(--sd-black);
    font-size: 15px;
    font-weight: 700;
    transition: var(--sd-transition);
    border: 1px solid var(--sd-primary-blue);
}

.sd-testimonial-btn-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.16);

    transition: var(--sd-transition);
}

.sd-testimonial-btn:hover {
    transform: translateY(-6px);
    color: #fff;
    background-color: var(--sd-primary-blue);
}

.sd-testimonial-btn:hover .sd-testimonial-btn-icon {
    transform: rotate(-20deg);
}


.sd-app-screen-sec {
    position: relative;
    overflow: hidden;

    padding: 120px 0 100px;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        CURVE MASK
    ====================================================== */

.sd-app-top-curve,
.sd-app-bottom-curve {
    position: absolute;
    left: 0;

    width: 100%;
    height: 180px;

    z-index: 2;
    pointer-events: none;
}

.sd-app-top-curve {
    top: -1px;

    background:
        radial-gradient(circle at center top,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            transparent 72%);
}

.sd-app-bottom-curve {
    bottom: -1px;

    background:
        radial-gradient(circle at center bottom,
            rgba(222, 84, 254, 0.22) 0%,
            rgba(222, 84, 254, 0.06) 42%,
            transparent 72%);
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-app-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.35) 0%,
            rgba(222, 84, 254, 0) 70%);

    bottom: -250px;
    left: 50%;

    transform: translateX(-50%);

    filter: blur(80px);

    z-index: -1;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-app-title {
    color: #fff;

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.sd-app-desc {
    color: rgba(255, 255, 255, 0.70);

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 70px;
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-app-slider-wrap {
    position: relative;
}
.sd-app-slider-wrap .slick-track {
    padding-top: 0px !important;
}

.sd-app-slider {
    margin: 0 -10px;
}

.sd-app-slide {
    padding: 0 10px;

    transition: var(--sd-transition);
}

.sd-app-slide-inner {
    position: relative;

    transition: var(--sd-transition);
}

.sd-app-slide img {
    width: 100%;

    transition: var(--sd-transition);

    filter:
        drop-shadow(0 25px 40px rgba(0, 0, 0, 0.45));
}

/* ======================================================
        ACTIVE CENTER EFFECT
    ====================================================== */

.sd-app-slide {
    transform: scale(0.82);
    opacity: 0.55;
}

.sd-app-slide.slick-center {
    transform: scale(1);
    opacity: 1;
    z-index: 5;
}

.sd-app-slide.slick-center .sd-app-slide-inner {
    transform: translateY(-12px);
}

.sd-app-slide:not(.slick-center) {
    transform: perspective(1200px) rotateY(18deg) scale(0.84);
}

.sd-app-slide.slick-active:first-child {
    transform: perspective(1200px) rotateY(-18deg) scale(0.84);
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-app-arrow-wrap
 {
    position: absolute;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 34px;
    padding: 20px;
    /* margin: auto 0; */
    top: 50%;
    left: 0;
}

.sd-app-prev,
.sd-app-next {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: var(--sd-dark-bg);

    transition: var(--sd-transition);
}

.sd-app-prev i {
    transform: rotate(180deg);
}

.sd-app-prev:hover,
.sd-app-next:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 40px rgba(84, 254, 169, 0.3);
    background: var(--sd-new-green);
    color: white;
}

/* ======================================================
        STORE
    ====================================================== */

.sd-app-store-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 25px;
}

.sd-app-store-btn {
    display: inline-block;

    transition: var(--sd-transition);
}

.sd-app-store-btn img {
    height: 52px;
}

.sd-app-store-btn:hover {
    transform: translateY(-6px) scale(1.04);
}


.sd-module-sec {
    position: relative;
    overflow: visible;

    padding: 50px 0;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-module-glow {
    display: none;
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.25;

    z-index: -1;
}

.sd-module-glow-left {
    left: -150px;
    bottom: 0;

    background: var(--sd-primary-blue);
}

.sd-module-glow-right {
    right: -150px;
    top: 0;

    background: var(--sd-purple);
}

/* ======================================================
        TOP
    ====================================================== */

.sd-module-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    color: var(--sd-purple);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 26px;
}

.sd-module-title {
    color: #fff;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 80px;
}

.sd-module-desc {
    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 80px;
}

/* ======================================================
        COLUMN
    ====================================================== */

.sd-module-column {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-module-card {
    position: relative;

    overflow: hidden;

    padding: 40px 34px;

    border-radius: 28px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);

    border: 1px solid rgba(255, 255, 255, 0.06);

    transition: var(--sd-transition);
}

/* ACTIVE / HOVER */

.sd-module-card:hover,
.sd-module-card.active {
    background: #fff;

    transform:
        translateY(-10px) rotate(-1deg);

    box-shadow: 0 30px 70px rgba(222, 84, 254, 0.14);
}

/* ======================================================
        ICON
    ====================================================== */

.sd-module-icon {
    display: flex;
    align-items: center;
    gap: 3px;

    margin-bottom: 28px;
}

.sd-module-icon span {
    width: 10px;
    height: 10px;

    border-radius: 2px;

    background: #2BDEB0;

    transition: var(--sd-transition);
}

.sd-module-card:hover .sd-module-icon span,
.sd-module-card.active .sd-module-icon span {
    background: var(--sd-purple);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-module-card h3 {
    color: #fff;

    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;

    margin-bottom: 18px;

    transition: var(--sd-transition);
}

.sd-module-card p {
    color: rgba(255, 255, 255, 0.70);

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 0;

    transition: var(--sd-transition);
}

.sd-module-card:hover h3,
.sd-module-card.active h3 {
    color: var(--sd-black);
}

.sd-module-card:hover p,
.sd-module-card.active p {
    color: #666;
}

/* ======================================================
        CENTER STICKY PHONE
    ====================================================== */

.sd-module-phone-sticky {
    position: sticky;
    top: 120px;

    text-align: center;
}

.sd-module-phone-wrap {
    transition: var(--sd-transition);
}

.sd-module-phone-wrap img {
    max-width: 100%;

    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));

    transition: var(--sd-transition);
}

.sd-module-phone-wrap:hover {
    transform: translateY(-12px);
}

.sd-module-phone-wrap:hover img {
    transform: scale(1.03);
}

/* ======================================================
        STORE
    ====================================================== */

.sd-module-store-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 24px;
}

.sd-module-store-btn {
    display: inline-block;

    transition: var(--sd-transition);
}

.sd-module-store-btn img {
    height: 50px;
}

.sd-module-store-btn:hover {
    transform: translateY(-6px) scale(1.04);
}


.sd-event-sec {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #f8f8f8;

    z-index: 1;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-event-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.18;

    z-index: -1;
}

.sd-event-glow-left {
    left: -120px;
    bottom: -100px;

    background: var(--sd-primary-blue);
}

.sd-event-glow-right {
    right: -120px;
    top: -100px;

    background: var(--sd-purple);
}

/* ======================================================
        TOP
    ====================================================== */

.sd-event-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(222, 84, 254, 0.10);

    color: var(--sd-black);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 24px;
}

.sd-event-tag span {
    color: var(--sd-purple);
    margin-left: 4px;
}

.sd-event-title {
    color: var(--sd-black);

    font-size: 3rem;
    line-height: 1.05;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 0;
}

.sd-event-desc {
    color: #666;

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 0;
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-event-slider {
    margin: 70px -14px 0;
    margin-top:20px !important;
}

.sd-event-slide {
    padding: 0 14px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-event-card {
    position: relative;

    overflow: hidden;

    border-radius: 26px;

    background: var(--sd-dark-bg);

    transition: var(--sd-transition);
}

.sd-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(222, 84, 254, 0.16);
}

/* ======================================================
        IMAGE
    ====================================================== */

.sd-event-image-wrap {
    position: relative;

    overflow: hidden;
}

.sd-event-image-wrap img {
    width: 100%;
    height: 420px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

/* IMAGE ZOOM */

.sd-event-card:hover .sd-event-image-wrap img {
    transform: scale(1.08);
}

/* OVERLAY */

.sd-event-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(12, 1, 33, 0.98) 5%,
            rgba(12, 1, 33, 0.45) 40%,
            transparent 80%);
}

/* ======================================================
        ARROW
    ====================================================== */

.sd-event-arrow {
    position: absolute;

    top: 22px;
    right: 22px;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: var(--sd-prpl-gradient);

    color: #fff;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-10px) rotate(-20deg);

    transition: var(--sd-transition);

    z-index: 5;
}

.sd-event-card:hover .sd-event-arrow {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0) rotate(0deg);
}

.sd-event-arrow:hover {
    transform: scale(1.08);
    color: #fff;
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-event-content {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 30px;

    z-index: 3;
}

.sd-event-card .sd-event-content .sd-event-badge{
    display: none;
} 
.sd-event-card .sd-event-content .sd-event-meta{
    display: none;
} 


.sd-event-card .sd-event-content p{
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sd-event-card  .sd-event-content h3{
        display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sd-event-top-left {
    text-align: center;
    margin-bottom: 0px !important;
}


/* BADGE */

.sd-event-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 14px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.10);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 18px;

    backdrop-filter: blur(12px);
}

/* TITLE */

.sd-event-content h3 {
    color: #fff;

    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;

    margin-bottom: 18px;
}

/* META */

.sd-event-meta {
    display: flex;
    align-items: center;
    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 20px;
}

.sd-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
}

.sd-event-meta span i.fa-circle {
    font-size: 5px;
}

/* DESC */

.sd-event-content p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 0;
}

/* ======================================================
        NAVIGATION
    ====================================================== */

.sd-event-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    /* margin-top: 50px; */
    position: absolute;
    top: 56%;
    width: 100%;
    left: 0px;
    padding-left: 15px;
    padding-right: 15px;
}

.sd-event-prev,
.sd-event-next {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: var(--sd-black);

    transition: var(--sd-transition);
}

.sd-event-prev i {
    transform: rotate(180deg);
}

.sd-event-prev:hover,
.sd-event-next:hover {
    background: var(--sd-prpl-gradient);

    color: #fff;

    transform: translateY(-6px);
}


.sd-webinar-sec {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #f7f7f7;

    z-index: 1;
}

/* ======================================================
        BOX
    ====================================================== */

.sd-webinar-box {
    position: relative;

    overflow: hidden;

    border-radius: 42px;

    padding: 70px 50px;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-webinar-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 44px 44px;

    z-index: -2;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-webinar-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.28) 0%,
            rgba(222, 84, 254, 0) 70%);

    left: 50%;
    bottom: -260px;

    transform: translateX(-50%);

    filter: blur(90px);

    z-index: -1;
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-webinar-slider-wrap {
    position: relative;

    max-width: 70vw;

    margin: 0 auto 60px;
}

.sd-webinar-slider {
    margin-bottom: 24px;
}

.sd-webinar-slide {
    padding: 0 10px;
}

.sd-webinar-image-box {
    overflow: hidden;

    border-radius: 24px;

    background: #ead4f2;
}

.sd-webinar-image-box img {
    width: 100%;
    height: 40vh;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.sd-webinar-image-box:hover img {
    transform: scale(1.05);
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-webinar-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
    display: none;
}

.sd-webinar-prev,
.sd-webinar-next {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-webinar-prev i {
    transform: rotate(180deg);
}

.sd-webinar-prev:hover,
.sd-webinar-next:hover {
    background: var(--sd-prpl-gradient);

    transform: translateY(-5px);
}

/* ======================================================
        DOTS
    ====================================================== */

.sd-webinar-slider .slick-dots {
    position: relative;
    bottom: 0;
    display: none;
    margin-top: 24px;
}

.sd-webinar-slider .slick-dots li {
    width: auto;
    height: auto;

    margin: 0 4px;
}

.sd-webinar-slider .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.24);

    padding: 0;

    transition: var(--sd-transition);
}

.sd-webinar-slider .slick-dots li button:before {
    display: none;
}

.sd-webinar-slider .slick-dots li.slick-active button {
    width: 40px;

    background: var(--sd-purple);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-webinar-title {
    color: #fff;

    font-size: 64px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1.5px;

    margin-bottom: 28px;
}

.sd-webinar-title span {
    display: block;

    color: #c77cff;
}

.sd-webinar-subtitle {
    color: rgba(255, 255, 255, 0.72);

    font-size: 18px;

    margin-bottom: 34px;
}

/* ======================================================
        BUTTONS
    ====================================================== */

.sd-webinar-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;
}

.sd-webinar-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 10px 12px 10px 24px;

    border-radius: 100px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: var(--sd-transition);
}

/* WHITE */

.white-btn {
    background: #fff;
    color: var(--sd-black);
}

/* LIME */

.lime-btn {
    background: var(--sd-lime);
    color: var(--sd-black);
}

/* ICON */

.sd-webinar-btn-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    transition: var(--sd-transition);
}

.dark-icon {
    background: var(--sd-black);
}

.sd-webinar-btn:hover {
    transform: translateY(-6px);
}

.sd-webinar-btn:hover .sd-webinar-btn-icon {
    transform: rotate(-20deg);
}

.webiner-sec-two {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: var(--sd-dark-bg);
    z-index: 1;
}
.page-template-events .webiner-sec-two {
    background: #fff !important;
}
.page-template-events .webiner-sec-two-card .tag {
    background: #6cbaff2e;
    color: var(--sd-black);
    width: fit-content;
    padding: 5px 15px;
    border-radius: 99px;
    margin-bottom: 20px !important;
    font-weight: 600;
}
.page-template-events .webiner-sec-two-content h3
 {
    color: var(--sd-black);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}
.page-template-events .webiner-sec-two-content p {
    color: var(--sd-text);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}
.page-template-events .webiner-sec-two-link:hover {
    color: var(--sd-primary-blue) !important;
    text-decoration: underline;
}
.page-template-events .webiner-sec-two-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--sd-text);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--sd-transition);
}

.page-template-events .webiner-sec-two-card:hover .webiner-sec-two-content h3 {
    color: var(--sd-primary-blue) !important;

}


/* ======================================================
        GLOW
    ====================================================== */

.webiner-sec-two-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    left: 50%;
    bottom: -380px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            #6355e26b 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(90px);

    z-index: -1;
}

/* ======================================================
        TOP
    ====================================================== */

.webiner-sec-two-title {
    color: #fff;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.webiner-sec-two-desc {
    color: rgba(255, 255, 255, 0.70);

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 30px;
}

/* ======================================================
        SLIDER MAIN
    ====================================================== */

.webiner-sec-two-slider-main {
    position: relative;
}

/* ======================================================
        SLIDER
    ====================================================== */

.webiner-sec-two-slider {
    margin: 0 -20px;
}

.webiner-sec-two-slide {
    position: relative;

    padding: 0 20px;
}

/* MIDDLE SEPARATOR */

.webiner-sec-two-slide::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 180px;

    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-50%);
}

/* ======================================================
        CARD
    ====================================================== */

.webiner-sec-two-card {
    transition: var(--sd-transition);
}

.webiner-sec-two-card:hover {
    transform: translateY(-10px);
}



/* ======================================================
        IMAGE
    ====================================================== */

.webiner-sec-two-image {
    overflow: hidden;

    border-radius: 18px;

    margin-bottom: 24px;
}

.webiner-sec-two-image img {
    width: 100%;
    height: 170px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.webiner-sec-two-card:hover .webiner-sec-two-image img {
    transform: scale(1.08);
}

/* ======================================================
        CONTENT
    ====================================================== */

.webiner-sec-two-content h3 {
    color: #fff;

    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;

    margin-bottom: 16px;
}

.webiner-sec-two-content p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 20px;
}

/* ======================================================
        LINK
    ====================================================== */

.webiner-sec-two-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #fff;

    font-size: 1rem;
    font-weight: 600;

    transition: var(--sd-transition);
}

.webiner-sec-two-link i {
    font-size: 12px;

    transition: var(--sd-transition);
}

.webiner-sec-two-link:hover {
    color: var(--sd-lime);
}

.webiner-sec-two-link:hover i {
    transform: translateX(5px);
}

/* ======================================================
        ARROWS
    ====================================================== */

.webiner-sec-two-prev,
.webiner-sec-two-next {
    position: absolute;

    top: 42%;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    z-index: 10;

    transition: var(--sd-transition);
}

.webiner-sec-two-prev {
    left: -60px;
}

.webiner-sec-two-next {
    right: -60px;
}

.webiner-sec-two-prev i {
    transform: rotate(180deg);
}

.webiner-sec-two-prev:hover,
.webiner-sec-two-next:hover {
    background: var(--sd-prpl-gradient);

    /* transform: translateY(-5px); */
}

/* ======================================================
        DOTS
    ====================================================== */

.webiner-sec-two-dots {
    margin-top: 50px;
    margin-bottom: 50px;
    display: none !important;
}

.webiner-sec-two-dots .slick-dots {
    position: relative;
    bottom: 0;

    display: flex !important;
    align-items: center;
    justify-content: center;
}

.webiner-sec-two-dots .slick-dots li {
    width: auto;
    height: auto;

    margin: 0 4px;
}

.webiner-sec-two-dots .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.22);

    padding: 0;

    transition: var(--sd-transition);
}

.webiner-sec-two-dots .slick-dots li button:before {
    display: none;
}

.webiner-sec-two-dots .slick-dots li.slick-active button {
    width: 42px;

    background: var(--sd-purple);
}

/* ======================================================
        BUTTON
    ====================================================== */

.webiner-sec-two-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    background: var(--sd-lime);
    color: var(--sd-black);
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--sd-transition);
}

.webiner-sec-two-btn-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-black);

    color: #fff;

    transition: var(--sd-transition);
}

.webiner-sec-two-btn:hover {
    transform: translateY(-6px);

    color: var(--sd-black);
}

.webiner-sec-two-btn:hover .webiner-sec-two-btn-icon {
    transform: rotate(-20deg);
}

.sd-contact-sec {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-contact-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.18;

    z-index: -1;
}

.sd-contact-glow-left {
    left: -180px;
    top: 0;

    background: var(--sd-primary-blue);
}

.sd-contact-glow-right {
    right: -180px;
    bottom: 0;

    background: var(--sd-purple);
}

/* ======================================================
        LEFT
    ====================================================== */

.sd-contact-left {
    padding-right: 40px;
}

.sd-contact-title {
    color: #fff;

    font-size: 62px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -1px;

    margin-bottom: 20px;
}

.sd-contact-line {
    width: 90px;
    height: 3px;

    background: var(--sd-purple);

    border-radius: 20px;

    margin-bottom: 40px;
}

/* ======================================================
        INFO
    ====================================================== */

.sd-contact-info-wrap {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

.sd-contact-info-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;
}

/* ICON */

.sd-contact-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 100%);

    transition: var(--sd-transition);
}

.sd-contact-icon i {
    color: #fff;

    font-size: 18px;

    transition: var(--sd-transition);
}

.sd-contact-info-item:hover .sd-contact-icon {
    background: var(--sd-prpl-gradient);

    transform:
        translateY(-4px) rotate(-8deg);
}

/* TEXT */

.sd-contact-info-text {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.9;
}

/* ======================================================
        SOCIAL
    ====================================================== */

.sd-contact-social-wrap {
    margin-top: 50px;
}

.sd-contact-social-wrap h4 {
    color: #fff;

    font-size: 28px;
    font-weight: 600;

    margin-bottom: 22px;
}

.sd-contact-social {
    display: flex;
    align-items: center;

    gap: 12px;
}

.sd-contact-social a {
    width: 44px;
    height: 44px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: var(--sd-prpl-gradient);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-contact-social a:hover {
    transform:
        translateY(-6px) rotate(-6deg);

    box-shadow: 0 18px 40px rgba(222, 84, 254, 0.28);
}

/* ======================================================
        FORM BOX
    ====================================================== */

.sd-contact-form-box {
    position: relative;

    overflow: hidden;

    padding: 50px;

    border-radius: 34px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);
}

.sd-contact-form-title {
    color: #fff;

    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;

    margin-bottom: 40px;
}

/* ======================================================
        INPUT
    ====================================================== */

.sd-contact-input-box label {
    display: block;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    font-weight: 500;

    margin-bottom: 12px;
}

.sd-contact-input-box input,
.sd-contact-input-box textarea {
    width: 100%;

    border: 0;
    outline: none;

    background: transparent;

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);

    padding: 0 0 14px;

    color: #fff;

    font-size: 15px;

    transition: var(--sd-transition);
}

.sd-contact-input-box textarea {
    resize: none;
}

.sd-contact-input-box input:focus,
.sd-contact-input-box textarea:focus {
    border-color: var(--sd-purple);
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-contact-btn {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    border: 0;

    padding: 10px 12px 10px 24px;

    border-radius: 100px;

    background: var(--sd-lime);

    color: var(--sd-black);

    font-size: 15px;
    font-weight: 700;

    transition: var(--sd-transition);
}

.sd-contact-btn-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-black);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-contact-btn:hover {
    transform: translateY(-6px);
}

.sd-contact-btn:hover .sd-contact-btn-icon {
    transform: rotate(-20deg);
}

.sd-privacy-sec {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-privacy-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    bottom: -420px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.40) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(90px);

    z-index: -1;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-privacy-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 24px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 26px;
}

.sd-privacy-tag span {
    color: var(--sd-purple);

    margin-left: 4px;
}

.sd-privacy-title {
    color: #fff;

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 24px;
}

.sd-privacy-title span {
    display: block;
}

.sd-privacy-desc {
    color: rgba(255, 255, 255, 0.70);

    font-size: 16px;
    line-height: 1.9;

    max-width: 760px;

    margin: 0 auto 80px;
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-privacy-slider-main {
    position: relative;
}

.sd-privacy-slider {
    margin: 0 -16px;
}

.sd-privacy-slide {
    padding: 0 16px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-privacy-card {
    overflow: hidden;

    border-radius: 22px;

    background: #ffffff0a;

    transition: var(--sd-transition);
}

.sd-privacy-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 30px 70px rgba(222, 84, 254, 0.18);
}

/* ======================================================
        IMAGE
    ====================================================== */

.sd-privacy-image {
    overflow: hidden;
}

.sd-privacy-image img {
    width: 100%;
    height: 240px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.sd-privacy-card:hover .sd-privacy-image img {
    transform: scale(1.08);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-privacy-content {
    padding: 18px;
}

/* META */

.sd-privacy-meta {
    color: #fff;

    font-size: 13px;

    margin-bottom: 16px;
}

/* CATEGORY */

.sd-privacy-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 16px;

    border-radius: 100px;

    background: var(--sd-prpl-gradient);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.5px;

    margin-bottom: 10px;
}

/* TITLE */

.sd-privacy-content h3 {
    margin-bottom: 15px;
    color: #fff;
}

.sd-privacy-content h3 a {
    color: #fff;

    text-decoration: none;

    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;

    transition: var(--sd-transition);
}

/* TITLE HOVER */

.sd-privacy-content h3 a:hover {
    color: var(--sd-purple);
}

/* LINE */

.sd-privacy-line {
    width: 100%;
    height: 1px;

    background: rgb(255 255 255 / 34%);

    margin-bottom: 15px;
}

/* ======================================================
        READ MORE
    ====================================================== */

.sd-privacy-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    transition: var(--sd-transition);
}

.sd-privacy-link i {
    font-size: 12px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-privacy-link:hover {
    color: var(--sd-purple);
}

.sd-privacy-link:hover i {
    transform: translateX(6px);
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-privacy-prev,
.sd-privacy-next {
    position: absolute;

    top: 42%;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    z-index: 10;

    transition: var(--sd-transition);
}

.sd-privacy-prev {
    left: -65px;
}

.sd-privacy-next {
    right: -65px;
}

.sd-privacy-prev i {
    transform: rotate(180deg);
}

.sd-privacy-prev:hover,
.sd-privacy-next:hover {
    background: var(--sd-prpl-gradient);

    transform: translateY(-5px);
}

/* ======================================================
        DOTS
    ====================================================== */

.sd-privacy-dots {
    margin-top: 50px;
    margin-bottom: 50px;
}

.sd-privacy-dots .slick-dots {
    position: relative;
    bottom: 0;

    display: flex !important;
    align-items: center;
    justify-content: center;
}

.sd-privacy-dots .slick-dots li {
    width: auto;
    height: auto;

    margin: 0 4px;
}

.sd-privacy-dots .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.20);

    padding: 0;

    transition: var(--sd-transition);
}

.sd-privacy-dots .slick-dots li button:before {
    display: none;
}

.sd-privacy-dots .slick-dots li.slick-active button {
    width: 42px;

    background: var(--sd-purple);
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-privacy-btn {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    padding: 10px 12px 10px 24px;

    border-radius: 100px;

    text-decoration: none;

    background: var(--sd-lime);

    color: var(--sd-black);

    font-size: 15px;
    font-weight: 700;

    transition: var(--sd-transition);
}

.sd-privacy-btn-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-black);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-privacy-btn:hover {
    transform: translateY(-6px);

    color: var(--sd-black);
}

.sd-privacy-btn:hover .sd-privacy-btn-icon {
    transform: rotate(-20deg);
}



.sd-pricing-sec {
    padding: 50px 0;
    background: #f7f7f7;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-pricing-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(222, 84, 254, 0.08);

    color: var(--sd-black);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 26px;
}

.sd-pricing-tag span {
    color: var(--sd-purple);
    margin-left: 4px;
}

.sd-pricing-title {
    color: var(--sd-black);

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 40px;
}

/* ======================================================
        SWITCH
    ====================================================== */

.sd-pricing-switch {
    display: inline-flex;
    align-items: center;

    padding: 8px;

    border-radius: 100px;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    margin-bottom: 70px;
}

.sd-pricing-switch-btn {
    border: 0;

    padding: 12px 28px;

    border-radius: 100px;

    background: transparent;

    color: var(--sd-black);

    font-size: 14px;
    font-weight: 600;

    transition: var(--sd-transition);
}

.sd-pricing-switch-btn.active {
    background: var(--sd-prpl-gradient);
    color: #fff;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-price-card {
    height: 100%;

    padding: 40px 34px;

    border-radius: 26px;

    background: #fff;

    transition: var(--sd-transition);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.sd-price-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(222, 84, 254, 0.12);
}

/* ACTIVE */

.active-card {
    background:
        linear-gradient(180deg,
            #1d012f 0%,
            #2d0148 45%,
            #d14ff8 100%);

    color: #fff;

    box-shadow: 0 30px 70px rgba(222, 84, 254, 0.28);
}

/* ======================================================
        PRICE
    ====================================================== */

.sd-price-amount {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin-bottom: 18px;
}

.sd-price-number {
    color: var(--sd-primary-blue);

    font-size: 62px;
    line-height: 1;
    font-weight: 700;

    transition: var(--sd-transition);
}

.active-card .sd-price-number {
    color: #fff;
}

.sd-price-amount small {
    color: #666;

    font-size: 14px;
    font-weight: 500;

    margin-top: 12px;
}

.active-card .sd-price-amount small {
    color: rgba(255, 255, 255, 0.80);
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-price-top h3 {
    color: var(--sd-black);

    font-size: 30px;
    font-weight: 700;

    margin-bottom: 16px;
}

.active-card .sd-price-top h3 {
    color: #fff;
}

.sd-price-top p {
    color: #666;

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 30px;
}

.active-card .sd-price-top p {
    color: rgba(255, 255, 255, 0.76);
}

/* ======================================================
        LINE
    ====================================================== */

.sd-price-line {
    width: 100%;
    height: 1px;

    background: rgba(0, 0, 0, 0.08);

    margin-bottom: 28px;
}

.active-card .sd-price-line {
    background: rgba(255, 255, 255, 0.12);
}

/* ======================================================
        FEATURE
    ====================================================== */

.sd-price-feature-wrap h5 {
    color: var(--sd-black);

    font-size: 15px;
    font-weight: 700;

    margin-bottom: 22px;
}

.active-card .sd-price-feature-wrap h5 {
    color: #fff;
}

.sd-price-feature-wrap ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.sd-price-feature-wrap ul li {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #666;

    font-size: 15px;

    margin-bottom: 16px;
}

.active-card .sd-price-feature-wrap ul li {
    color: rgba(255, 255, 255, 0.82);
}

.sd-price-feature-wrap ul li i {
    color: var(--sd-primary-blue);

    font-size: 14px;
}

.active-card .sd-price-feature-wrap ul li i {
    color: #fff;
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-price-btn {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    padding: 10px 12px 10px 24px;

    border-radius: 100px;

    text-decoration: none;

    background: var(--sd-prpl-gradient);

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    margin-top: 30px;

    transition: var(--sd-transition);
}

.lime-btn {
    background: var(--sd-lime);
    color: var(--sd-black);
}

.sd-price-btn-icon {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.16);

    color: #fff;

    transition: var(--sd-transition);
}

.dark-icon {
    background: var(--sd-black);
}

.sd-price-btn:hover {
    transform: translateY(-6px);

    color: #fff;
}

.lime-btn:hover {
    color: var(--sd-black);
}

.sd-price-btn:hover .sd-price-btn-icon {
    transform: rotate(-20deg);
}

/* ======================================================
        NOTE
    ====================================================== */

.sd-price-note {
    color: #888;

    font-size: 12px;

    margin-top: 24px;
}

.active-card .sd-price-note {
    color: rgba(255, 255, 255, 0.65);
}


.sd-story-sec {
    padding: 50px 0;

    background: #f7f7f7;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-story-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(222, 84, 254, 0.08);

    color: var(--sd-black);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

.sd-story-tag span {
    color: var(--sd-purple);

    margin-left: 4px;
}

.sd-story-title {
    color: var(--sd-black);

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-story-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;
}

.sd-story-prev,
.sd-story-next {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-story-prev i {
    transform: rotate(180deg);
}

.sd-story-prev:hover,
.sd-story-next:hover {
    transform: translateY(-6px);
}

/* ======================================================
        VIDEO
    ====================================================== */

.sd-story-video-wrap {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.sd-story-video-box {
    position: relative;

    overflow: hidden;

    border-radius: 34px;

    display: block;
}

.sd-story-video-box img {
    width: 100%;
    height: 290px;

    object-fit: cover;

    transition: transform 0.8s ease;
}

/* HOVER */

.sd-story-video-box:hover img {
    transform: scale(1.08);
}

/* PLAY */

.sd-story-play {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 82px;
    height: 82px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(12px);

    transform: translate(-50%, -50%);

    transition: var(--sd-transition);
}

.sd-story-play i {
    color: var(--sd-primary-blue);

    font-size: 24px;

    margin-left: 4px;
}

.sd-story-video-box:hover .sd-story-play {
    transform:
        translate(-50%, -50%) scale(1.12);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-story-content {
    padding-left: 20px;
}

.sd-story-content h3 {
    margin-bottom: 34px;
}

.sd-story-content h3 a {
    color: var(--sd-black);

    text-decoration: none;

    font-size: 64px;
    line-height: 1.08;
    font-weight: 600;

    letter-spacing: -2px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-story-content:hover h3 a {
    color: var(--sd-purple);
}

.sd-story-content p {
    color: #666;

    font-size: 16px;
    line-height: 2;

    margin-bottom: 60px;
}

/* ======================================================
        AUTHOR
    ====================================================== */

.sd-story-author h4 {
    color: var(--sd-black);

    font-size: 36px;
    font-weight: 600;

    margin-bottom: 12px;
}

.sd-story-author span {
    display: block;

    color: #666;

    font-size: 16px;

    margin-bottom: 12px;
}

.sd-story-author a {
    color: var(--sd-black);

    text-decoration: none;

    font-size: 16px;

    transition: var(--sd-transition);
}

.sd-story-author a:hover {
    color: var(--sd-purple);
}

/* ======================================================
        DOTS
    ====================================================== */

.sd-story-dots {
    margin-top: 50px;
}

.sd-story-dots .slick-dots {
    position: relative;
    bottom: 0;

    display: flex !important;
    align-items: center;
    justify-content: center;
}

.sd-story-dots .slick-dots li {
    width: auto;
    height: auto;

    margin: 0 4px;
}

.sd-story-dots .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 100px;

    background: rgba(0, 0, 0, 0.12);

    padding: 0;

    transition: var(--sd-transition);
}

.sd-story-dots .slick-dots li button:before {
    display: none;
}

.sd-story-dots .slick-dots li.slick-active button {
    width: 42px;

    background: var(--sd-purple);
}


.cta-one {
    position: relative;
    overflow: hidden;
    display: none;
    padding: 50px 0;

    background: #f7f7f7;

    z-index: 1;
}

/* ======================================================
        BOX
    ====================================================== */

.cta-one-box {
    position: relative;
    overflow: hidden;

    padding: 100px 20px;

    border-radius: 34px;

    background: var(--sd-dark-bg);

    text-align: center;

    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.cta-one-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 42px 42px;

    z-index: -2;
}

/* ======================================================
        TAG
    ====================================================== */

.cta-one-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 24px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 30px;
}

.cta-one-tag span {
    color: var(--sd-purple);

    margin-left: 4px;
}

/* ======================================================
        TITLE
    ====================================================== */

.cta-one-title {
    color: #fff;

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    max-width: 920px;

    margin: 0 auto 30px;
}

.cta-one-title span {
    display: block;
}

/* ======================================================
        DESC
    ====================================================== */

.cta-one-desc {
    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.9;

    max-width: 720px;

    margin: 0 auto 45px;
}

/* ======================================================
        PLATFORM
    ====================================================== */

.cta-one-platform-wrap {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-one-platform {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 100%);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #fff;

    transition: var(--sd-transition);
}

.cta-one-platform i {
    font-size: 22px;

    transition: var(--sd-transition);
}

/* HOVER */

.cta-one-platform:hover {
    transform:
        translateY(-8px) rotate(-8deg);

    background: var(--sd-prpl-gradient);

    box-shadow: 0 18px 40px rgba(222, 84, 254, 0.28);
}

.cta-one-platform:hover i {
    transform: scale(1.1);
}

/* ======================================================
        STORE
    ====================================================== */

.cta-one-store-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

.cta-one-store-btn {
    display: inline-block;

    transition: var(--sd-transition);
}

.cta-one-store-btn img {
    height: 54px;

    object-fit: contain;
}

.cta-one-store-btn:hover {
    transform: translateY(-6px) scale(1.04);
}


.cta-two {
    position: relative;

    padding: 50px 0;

    background: #f7f7f7;

    overflow: hidden;

    z-index: 1;
}

/* ======================================================
        BOX
    ====================================================== */

.cta-two-box {
    position: relative;

    overflow: hidden;

    padding: 120px 20px;

    border-radius: 40px;

    background:
        linear-gradient(180deg,
            #14001d 0%,
            #22002d 100%);

    z-index: 1;
}

/* ======================================================
        GLOW
    ====================================================== */

.cta-two-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(100px);

    z-index: -1;
}

/* LEFT */

.cta-two-glow-left {
    left: -140px;
    bottom: -180px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0) 70%);
}

/* RIGHT */

.cta-two-glow-right {
    right: -140px;
    bottom: -180px;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.55) 0%,
            rgba(222, 84, 254, 0) 70%);
}

/* ======================================================
        TITLE
    ====================================================== */

.cta-two-title {
    color: #fff;

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 34px;
}

.cta-two-title span {
    display: block;

    color: var(--sd-new-green);
}

/* ======================================================
        DESC
    ====================================================== */

.cta-two-desc {
    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.9;

    max-width: 760px;

    margin: 0 auto 40px;
}

/* ======================================================
        STORE
    ====================================================== */

.cta-two-store-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

.cta-two-store-btn {
    display: inline-block;

    transition: var(--sd-transition);
}

.cta-two-store-btn img {
    height: 56px;

    object-fit: contain;
}

/* HOVER */

.cta-two-store-btn:hover {
    transform:
        translateY(-6px) scale(1.04);
}

.sd-bank-cta {
    position: relative;

    padding: 50px 0;

    background: #f7f7f7;

    overflow: hidden;

    z-index: 1;
}

/* ======================================================
        BOX
    ====================================================== */

.sd-bank-cta-box {
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    border-radius: 28px;
    background: var(--sd-dark-bg);
    z-index: 1;
}

.sd-bank-cta-title {
        font-size: 2.5rem !important;
    }

/* ======================================================
        GLOW
    ====================================================== */

.sd-bank-cta-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.28) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(90px);

    z-index: -1;
}

/* ======================================================
        SVG SHAPE
    ====================================================== */

.sd-bank-cta-shape {
    position: absolute;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 160px;
    height: 240px;

    opacity: 0.9;

    z-index: 2;

    pointer-events: none;
}

.sd-bank-cta-shape svg {
    width: 100%;
    height: 100%;
}

/* ======================================================
        LEFT
    ====================================================== */

.sd-bank-cta-left {
    padding-left: 40px;
}

.feat-image-sec .feat-image{
    max-width: 80%;
    margin: auto;
    display: flex;
}

.sd-bank-cta-title
 {
    color: #fff;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -2px;
    max-width: 620px;
    margin-bottom: 0;
}

/* ======================================================
        RIGHT
    ====================================================== */

.sd-bank-cta-right {
    max-width: 420px;

    margin-left: auto;
}

.sd-bank-cta-desc {
    color: rgba(255, 255, 255, 0.74);

    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 26px;
}

/* ======================================================
        STORE
    ====================================================== */

.sd-bank-cta-store-wrap {
    display: flex;
    align-items: center;

    gap: 16px;

    flex-wrap: wrap;
}

.sd-bank-cta-store-btn {
    display: inline-block;

    transition: var(--sd-transition);
}

.sd-bank-cta-store-btn img {
    height: 52px;

    object-fit: contain;
}

/* HOVER */

.sd-bank-cta-store-btn:hover {
    transform:
        translateY(-6px) scale(1.04);
}



/* Footer */

.sd-footer {
    position: relative;
    overflow: hidden;

    padding: 100px 0 40px;

    background: var(--sd-dark-bg);

    z-index: 10;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-footer-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    z-index: -2;
    display: none;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-footer-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    left: -160px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.45) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(100px);

    z-index: -1;
}

/* ======================================================
        LEFT
    ====================================================== */

.sd-footer-left {
    max-width: 80%;
}

/* LOGO */

.sd-footer-logo {
    width: 210px;
    height: auto;
    border-radius: 12px;
    display: block;
    background: #fff;
    margin-bottom: 34px;
    transition: var(--sd-transition);
    /* display: flex; */
    padding: 7px 7px;
}

.sd-footer-logo:hover {
    transform: translateY(-4px);
}

/* TITLE */

.sd-footer-title {
    color: #fff;

    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1px;

    margin-bottom: 22px;
}

h2.sd-footer-title {
    display: none !important;
}

.ftr-qc-links {
    display: flex;
    align-items: center;
    gap: 55px;
    /* margin-bottom: 20px; */
}
/* DESC */

.sd-footer-desc
 {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 30px;
}

/* ======================================================
        SOCIAL
    ====================================================== */

.sd-footer-social {
    display: flex;
    align-items: center;

    gap: 12px;
}

.sd-footer-social a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.05) 100%);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-footer-social a:hover {
    background: var(--sd-prpl-gradient);

    transform:
        translateY(-6px) rotate(-8deg);
}

/* ======================================================
        WIDGET
    ====================================================== */

.sd-footer-widget h4 {
    color: #fff;

    font-size: 1.5rem;
    font-weight: 600;

    margin-bottom: 26px;
}

.sd-footer-widget ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.sd-footer-widget ul li {
    margin-bottom: 14px;
}

.sd-footer-widget ul li a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--sd-transition);
    font-weight: 500;
}

.sd-footer-widget ul li a:hover {
    color: var(--sd-purple);

    padding-left: 6px;
}

/* ======================================================
        CONTACT
    ====================================================== */

.sd-footer-contact-row {
    margin-top: 0px !important;
}

.sd-footer-contact-box {
    display: flex;
    align-items: flex-start;

    gap: 16px;
}

/* ICON */

.sd-footer-contact-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-footer-contact-icon i {
    font-size: 18px;
}

.sd-footer-contact-box:hover .sd-footer-contact-icon {
    transform:
        translateY(-6px) rotate(-10deg);
}

/* CONTENT */

.sd-footer-contact-content h5 {
    color: #fff;

    font-size: 18px;
    font-weight: 600;

    margin-bottom: 10px;
}

.sd-footer-contact-content p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 0;
}

/* ======================================================
        FOOTER BOTTOM
    ====================================================== */

.sd-footer-bottom {
    position: relative;

    padding-top: 20px;
    margin-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ======================================================
        LEFT / RIGHT TEXT
    ====================================================== */

.sd-footer-copy-left,


.sd-footer-copy-right {
    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}




.sd-footer-copy-right p {font-size: 1rem !important;}

.sd-footer-copy-right a{
    color: #fff !important;
    transition: var(--sd-transition);
}
.sd-footer-copy-right a:hover{
    color: var(--sd-purple) !important;
}
/* LEFT */

.sd-footer-copy-left {
    text-align: left;
}

/* RIGHT */

/* .sd-footer-copy-right {
    text-align: right;
} */

/* ======================================================
        LINKS
    ====================================================== */

.sd-footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* LINK */

.sd-footer-bottom-links li a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    transition: var(--sd-transition);
}

/* UNDERLINE */

.sd-footer-bottom-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--sd-purple);
    transition: var(--sd-transition);
}

/* HOVER */

.sd-footer-bottom-links li a:hover {
    color: var(--sd-purple);
}

.sd-footer-bottom-links li a:hover::after {
    width: 100%;
}


footer .right-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0px !important;
}

footer .left-content {
    margin-top: 0px !important;
}

.sd-transform-sec {
    position: relative;

    overflow: hidden;

    padding: 120px 0 0;

    background: var(--sd-dark-bg);

    z-index: 1;
    padding-bottom: 60px;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-transform-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 42px 42px;

    z-index: -2;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-transform-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    left: -180px;
    bottom: -320px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.55) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(100px);

    z-index: -1;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-transform-title {
    color: #fff;

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 26px;
}

.sd-transform-desc {
    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.9;

    max-width: 760px;

    margin: 0 auto 36px;
}

/* ======================================================
        STORE
    ====================================================== */

.sd-transform-store-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;
}

.sd-transform-store-btn {
    display: inline-block;

    transition: var(--sd-transition);
}

.sd-transform-store-btn img {
    height: 52px;

    object-fit: contain;
}

.sd-transform-store-btn:hover {
    transform:
        translateY(-6px) scale(1.04);
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-transform-slider-wrap {
    position: relative;

    padding-top: 80px;
    padding-bottom: 40px;
}

.sd-transform-slider {
    overflow: visible;
}

.sd-transform-slider .swiper-slide {
    width: 320px !important;

    transition: all 0.6s ease;

    display: flex;
    justify-content: center;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-transform-card {
    transition: all 0.7s ease;

    transform-origin: bottom center;
}

.sd-transform-card img {
    width: 100%;

    object-fit: contain;

    transition: var(--sd-transition);
}

/* LEFT */

.sd-transform-left {
    transform:
        rotate(-18deg) translateY(70px);
}

/* DARK */

.sd-transform-dark {
    transform:
        rotate(-10deg) translateY(20px);
}

/* CENTER */

.sd-transform-center {
    transform:
        scale(1.12) translateY(-10px);

    z-index: 5;
}

/* BLUE */

.sd-transform-blue {
    transform:
        rotate(10deg) translateY(20px);
}

/* RIGHT */

.sd-transform-right {
    transform:
        rotate(18deg) translateY(70px);
}

/* HOVER */

.swiper-slide:hover .sd-transform-card {
    transform:
        translateY(-12px) scale(1.03);
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-transform-prev,
.sd-transform-next {
    position: absolute;

    top: 50%;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    z-index: 20;

    transition: var(--sd-transition);
}

.sd-transform-prev {
    left: 40px;
}

.sd-transform-next {
    right: 40px;
}

.sd-transform-prev:hover,
.sd-transform-next:hover {
    transform:
        translateY(-50%) scale(1.08);
}

/* ======================================================
        RESPONSIVE
    ====================================================== */

@media (max-width: 1399px) {

    .sd-transform-title {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {

    .sd-transform-sec {
        padding-top: 100px;
    }

    .sd-transform-title {
        font-size: 52px;
    }

    .sd-transform-slider .swiper-slide {
        width: 280px !important;
    }
}

@media (max-width: 991px) {

    .sd-transform-title {
        font-size: 44px;
    }

    .sd-transform-slider-wrap {
        padding-top: 60px;
    }

    .sd-transform-prev,
    .sd-transform-next {
        width: 52px;
        height: 52px;
    }

    .sd-transform-prev {
        left: 12px;
    }

    .sd-transform-next {
        right: 12px;
    }
}

@media (max-width: 767px) {

    .sd-transform-sec {
        padding-top: 80px;
    }

    .sd-transform-title {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .sd-transform-desc {
        font-size: 15px;
    }

    .sd-transform-slider .swiper-slide {
        width: 220px !important;
    }

    .sd-transform-prev,
    .sd-transform-next {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 575px) {

    .sd-transform-title {
        font-size: 30px;
    }

    .sd-transform-slider .swiper-slide {
        width: 180px !important;
    }

    .sd-transform-store-btn img {
        height: 46px;
    }

    .sd-transform-prev,
    .sd-transform-next {
        display: none;
    }
}

.sd-journey-sec {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-journey-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 42px 42px;

    z-index: -2;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-journey-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    bottom: -450px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.50) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(120px);

    z-index: -1;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-journey-title {
    color: #fff;

    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.sd-journey-desc {
    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 0;
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-journey-slider-wrap {
    position: relative;

    margin-top: 90px;
    margin-bottom: 70px;
}

.sd-journey-slide {
    padding: 0 14px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-journey-card {
    position: relative;

    padding: 0 18px 90px;

    border-left: 1px solid rgba(255, 255, 255, 0.06);

    min-height: 320px;

    transition: var(--sd-transition);
}

.sd-journey-card:hover {
    transform: translateY(-8px);
}

/* NUMBER */

.sd-journey-number {
    color: rgba(255, 255, 255, 0.85);

    font-size: 28px;
    font-weight: 500;

    margin-bottom: 90px;
}

/* CONTENT */

.sd-journey-content h3 {
    color: #fff;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;

    margin-bottom: 22px;

    transition: var(--sd-transition);
}

.sd-journey-card:hover h3 {
    color: var(--sd-purple);
}

.sd-journey-content p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.9;

    max-width: 260px;

    margin-bottom: 0;
}

/* ======================================================
        LINE
    ====================================================== */

.sd-journey-line {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(222, 84, 254, 1) 100%);

    box-shadow:
        0 0 18px rgba(222, 84, 254, 0.6);
}

/* DOT */

.sd-journey-dot {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #9d7bff;

    border: 2px solid #fff;

    box-shadow:
        0 0 18px rgba(157, 123, 255, 0.9);
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-journey-prev,
.sd-journey-next {
    position: absolute;

    top: 50%;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    z-index: 10;

    transition: var(--sd-transition);
}

.sd-journey-prev {
    left: -25px;
}

.sd-journey-next {
    right: -25px;
}

.sd-journey-prev:hover,
.sd-journey-next:hover {
    transform:
        translateY(-50%) scale(1.08);
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-journey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 16px 30px;

    border-radius: 100px;

    background: #dfff00;

    color: var(--sd-black);

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: var(--sd-transition);
}

.sd-journey-btn span {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-dark-bg);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-journey-btn:hover {
    transform:
        translateY(-6px) scale(1.03);
}

.sd-journey-btn:hover span {
    transform: rotate(-45deg);
}

.sd-counter-form-sec {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #f7f7f7;
    z-index: 1;
}

/* ======================================================
        MAIN BOX
    ====================================================== */

.sd-counter-form-box {
    position: relative;
    overflow: hidden;

    padding: 70px 60px;

    border-radius: 32px;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        WAVE
    ====================================================== */

.sd-counter-wave {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at bottom left,
            rgba(222, 84, 254, 0.7) 0%,
            transparent 28%),

        radial-gradient(circle at center,
            rgba(0, 170, 255, 0.45) 0%,
            transparent 30%),

        radial-gradient(circle at bottom center,
            rgba(255, 0, 170, 0.45) 0%,
            transparent 26%);

    filter: blur(50px);

    opacity: 0.9;

    z-index: -2;
}

/* MAIN DARK BOX */
.sd-counter-form-box {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 70px 60px;
    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            #080018 0%,
            #100022 48%,
            #160326 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 24px 60px rgba(11, 0, 35, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* LEFT BLUE / PURPLE GLOW */
.sd-counter-form-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 750px;
    height: 420px;
    left: -220px;
    bottom: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 64, 255, 0.72) 0%, rgba(67, 39, 181, 0.48) 30%, rgba(31, 13, 91, 0.20) 58%, transparent 76%);
    filter: blur(145px);
    pointer-events: none;
}

/* RIGHT PURPLE GLOW */
.sd-counter-form-box::after {
    content: "";
    position: absolute;
    z-index: -1;

    width: 560px;
    height: 450px;

    right: -240px;
    bottom: -270px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(165, 55, 207, 0.70) 0%,
        rgba(111, 30, 149, 0.46) 32%,
        rgba(70, 20, 102, 0.20) 58%,
        transparent 76%
    );

    filter: blur(40px);
    pointer-events: none;
}

/* KEEP ALL CONTENT ABOVE THE GLOW */
.sd-counter-form-box > .row {
    position: relative;
    z-index: 2;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-counter-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: -200px;
    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.45) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(120px);

    z-index: -1;
}

/* ======================================================
        COUNTER GRID
    ====================================================== */

.sd-counter-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

/* CARD */

.sd-counter-item {
    position: relative;

    min-height: 200px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.06) 100%);

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(18px);

    transition: var(--sd-transition);
}

/* ACTIVE CARD */

.sd-counter-item-active {
    background:
        linear-gradient(135deg,
            rgba(222, 84, 254, 0.45) 0%,
            rgba(255, 255, 255, 0.08) 100%);

    box-shadow:
        0 18px 40px rgba(222, 84, 254, 0.28);
}

/* HOVER */

.sd-counter-item:hover {
    transform:
        translateY(-10px) rotate(-2deg);
}

/* NUMBER */

.sd-counter-item h3 {
    color: #fff;

    font-size: 64px;
    line-height: 1;
    font-weight: 700;

    margin-bottom: 14px;
}

.sd-counter-item h3::after {
    content: "+";
}

/* TEXT */

.sd-counter-item span {
    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    font-weight: 500;
}

/* ======================================================
        FORM CARD
    ====================================================== */

.sd-counter-form-card {
    position: relative;

    padding: 50px 42px;

    border-radius: 32px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.07) 100%);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(20px);
}

/* TITLE */

.sd-counter-form-card h2 {
    color: #fff;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;

    text-align: center;

    margin-bottom: 14px;
}

/* SUB */

.sd-counter-form-card p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.8;

    text-align: center;

    margin-bottom: 34px;
}

/* ======================================================
        INPUT
    ====================================================== */

.sd-counter-input input {
    width: 100%;
    height: 60px;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.32);

    background:
        rgba(255, 255, 255, 0.06);

    padding: 0 18px;

    color: #fff;

    font-size: 15px;

    outline: none;

    transition: var(--sd-transition);
}

/* PLACEHOLDER */

.sd-counter-input input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

/* FOCUS */

.sd-counter-input input:focus {
    border-color: var(--sd-purple);

    box-shadow:
        0 0 0 4px rgba(222, 84, 254, 0.12);
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-counter-submit-btn {
    margin: 28px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 16px 30px;

    border-radius: 100px;

    border: 0;

    background:
        linear-gradient(90deg,
            #ffcf66 0%,
            #ffb347 100%);

    color: #111;

    font-size: 15px;
    font-weight: 700;

    transition: var(--sd-transition);
}

/* ICON */

.sd-counter-submit-btn span {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;

    color: #fff;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-counter-submit-btn:hover {
    transform:
        translateY(-6px) scale(1.03);
}

.sd-counter-submit-btn:hover span {
    transform: rotate(-45deg);
}

.sd-blog-highlight-sec {
    position: relative;
    display: none;
    padding: 50px 0;

    background: #f7f7f7;
}

/* ======================================================
        TAG
    ====================================================== */

.sd-blog-highlight-tag {
    display: none;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    border: 1px solid rgba(222, 84, 254, 0.18);

    background: #fff;

    color: var(--sd-purple);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 26px;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-blog-highlight-title {
    color: var(--sd-black);

    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 0;
}

/* ======================================================
        DESC
    ====================================================== */

.sd-blog-highlight-desc {
    color: rgba(30, 29, 48, 0.72);

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 0;
}

/* ======================================================
        ROW
    ====================================================== */

.sd-blog-highlight-row {
    margin-top: 60px;
}

/* ======================================================
        FEATURED CARD
    ====================================================== */

.sd-blog-featured-card {
    position: relative;
    overflow: hidden;

    border-radius: 24px;

    min-height: 700px;

    transition: var(--sd-transition);
}

.sd-blog-featured-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.sd-blog-featured-image {
    position: absolute;
    inset: 0;
}

.sd-blog-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: all 0.7s ease;
}

/* HOVER */

.sd-blog-featured-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.sd-blog-featured-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.08) 60%);
}

/* CONTENT */

.sd-blog-featured-content {
    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 40px;

    z-index: 2;
}

/* CATEGORY */

.sd-blog-featured-category {
    display: inline-block;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 18px;
}

/* TITLE */

.sd-blog-featured-content h3 {
    margin-bottom: 18px;
}

.sd-blog-featured-content h3 a {
    color: #fff;

    text-decoration: none;

    font-size: 38px;
    line-height: 1.18;
    font-weight: 600;

    transition: var(--sd-transition);
}

.sd-blog-featured-content h3 a:hover {
    color: var(--sd-purple);
}

/* META */

.sd-blog-featured-meta {
    display: flex;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 22px;
}

.sd-blog-featured-meta span {
    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    display: flex;
    align-items: center;

    gap: 8px;
}

/* DESC */

.sd-blog-featured-content p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 0;
}

/* ======================================================
        SIDE WRAP
    ====================================================== */

.sd-blog-side-wrap {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

/* ======================================================
        SIDE ITEM
    ====================================================== */

.sd-blog-side-item {
    display: flex;
    align-items: center;

    gap: 24px;

    transition: var(--sd-transition);
}

.sd-blog-side-item:hover {
    transform: translateX(8px);
}

/* THUMB */

.sd-blog-side-thumb {
    width: 280px;
    min-width: 280px;
    height: 180px;

    overflow: hidden;

    border-radius: 18px;
}

.sd-blog-side-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: all 0.7s ease;
}

/* HOVER */

.sd-blog-side-item:hover img {
    transform: scale(1.08);
}

/* CONTENT */

.sd-blog-side-content h3 {
    margin-bottom: 14px;
}

.sd-blog-side-content h3 a {
    color: var(--sd-black);

    text-decoration: none;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;

    transition: var(--sd-transition);
}

.sd-blog-side-content h3 a:hover {
    color: var(--sd-purple);
}

/* DESC */

.sd-blog-side-content p {
    color: rgba(30, 29, 48, 0.72);

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 22px;
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-blog-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 18px;
    border-radius: 100px;
    background: #fff;
    color: var(--sd-text);
    border: 1px solid var(--sd-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--sd-transition);
    height: fit-content;
}

/* ICON */

.sd-blog-side-btn span {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.18);

    transition: var(--sd-transition);
}

/* HOVER */

.sd-blog-side-btn:hover {
    transform:
        translateY(-5px) scale(1.03);
    color: #fff;
    background-color: var(--sd-primary-blue);
    border: 1px solid var(--sd-primary-blue);
}

.sd-blog-side-btn:hover span {
    transform: rotate(-45deg);
}

.sd-breadcrumb-sec
 {
    position: relative;
    padding: 70px 0;
    background: #f7f7f7;
    padding-bottom: 0px !important;
    /* margin-bottom: 30px; */
}

/* ======================================================
        BOX
    ====================================================== */

.sd-breadcrumb-box {
    position: relative;
    overflow: hidden;

    min-height: 240px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    text-align: center;

    /* background: var(--sd-dark-bg); */

    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-breadcrumb-box::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 40px 40px;

    z-index: -2;
}

/* ======================================================
        LEFT GLOW
    ====================================================== */

.sd-breadcrumb-glow-left {
    position: absolute;

    width: 340px;
    height: 340px;

    left: -80px;
    top: -150px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.45) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(90px);

    z-index: 0;
}

/* ======================================================
        RIGHT GLOW
    ====================================================== */

.sd-breadcrumb-glow-right {
    position: absolute;

    width: 300px;
    height: 300px;

    right: 0px;
    top: -60px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.40) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(90px);

    z-index: 0;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-breadcrumb-box h1 {
    color: var(--sd-text);

    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

/* ======================================================
        LIST
    ====================================================== */

.sd-breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    padding: 0;
    margin: 0;

    list-style: none;
}

/* ITEM */

.sd-breadcrumb-list li {
    color: var(--sd-text);

    font-size: 15px;
    font-weight: 500;
}

/* LINK */

.sd-breadcrumb-list li a {
    color: var(--sd-text);

    text-decoration: none;

    transition: var(--sd-transition);
}

.sd-breadcrumb-list li a:hover {
    color: var(--sd-purple);
}

/* SEPARATOR */

.sd-breadcrumb-list li span {
    color: var(--sd-text);
}

.sd-contact-light-sec {
    position: relative;

    padding: 50px 0;

    background: #f7f7f4;
}

/* ======================================================
        LEFT
    ====================================================== */

.sd-contact-light-left {
    max-width: 360px;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-contact-light-title {
    color: var(--sd-black);

    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;

    margin-bottom: 18px;
}

/* ======================================================
        LINE
    ====================================================== */

.sd-contact-light-line {
    width: 90px;
    height: 2px;

    border-radius: 100px;

    background: var(--sd-prpl-gradient);

    margin-bottom: 40px;
}

/* ======================================================
        INFO WRAP
    ====================================================== */

.sd-contact-light-info-wrap {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

/* ======================================================
        ITEM
    ====================================================== */

.sd-contact-light-info-item {
    display: flex;
    align-items: flex-start;

    gap: 16px;
}

/* ICON */

.sd-contact-light-icon {
    color: var(--sd-black);

    font-size: 22px;

    margin-top: 2px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-contact-light-info-item:hover .sd-contact-light-icon {
    color: var(--sd-purple);

    transform:
        translateY(-3px) rotate(-8deg);
}

/* TEXT */

.sd-contact-light-text {
    /* color: rgba(30, 29, 48, 0.78); */
    color: var(--sd-black);

    font-size: 1rem;
    line-height: 1.8;
}

/* LINKS */

.sd-contact-light-text a {
    display: block;

    color: var(--sd-black);

    text-decoration: none;

    transition: var(--sd-transition);
}

.sd-contact-light-text a:hover {
    color: var(--sd-purple);
}

/* ======================================================
        FOLLOW
    ====================================================== */

.sd-contact-light-follow {
    margin-top: 50px;
}

.sd-contact-light-follow h5 {
    color: var(--sd-black);

    font-size: 24px;
    font-weight: 600;

    margin-bottom: 22px;
}

/* ======================================================
        SOCIAL
    ====================================================== */

.sd-contact-light-social {
    display: flex;
    align-items: center;

    gap: 12px;
}

.sd-contact-light-social a {
    width: 42px;
    height: 42px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: var(--sd-primary-blue);

    color: #fff;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-contact-light-social a:hover {
    transform:
        translateY(-6px) rotate(-8deg);
}

/* ======================================================
        FORM BOX
    ====================================================== */

.sd-contact-light-form-box {
    padding: 60px 54px;
    border-radius: 28px;
    background: #ffffff;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-contact-light-form-box h3 {
    color: var(--sd-black);

    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;

    margin-bottom: 42px;
}

/* ======================================================
        INPUT
    ====================================================== */

.sd-contact-light-input input,
.sd-contact-light-input textarea {
    width: 100%;

    border: 0;
    border-bottom: 1px solid rgba(30, 29, 48, 0.32);

    background: transparent;

    padding: 0 0 14px;

    color: var(--sd-black);

    font-size: 15px;

    outline: none;

    transition: var(--sd-transition);
}

/* TEXTAREA */

.sd-contact-light-input textarea {
    height: 140px;

    resize: none;
}

/* PLACEHOLDER */

.sd-contact-light-input input::placeholder,
.sd-contact-light-input textarea::placeholder {
    color: rgba(30, 29, 48, 0.62);
}

/* FOCUS */

.sd-contact-light-input input:focus,
.sd-contact-light-input textarea:focus {
    border-color: var(--sd-purple);
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-contact-light-btn {
    margin-top: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 14px 26px;

    border-radius: 100px;

    border: 0;

    background: var(--sd-primary-blue);

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    transition: var(--sd-transition);
}

/* ICON */

.sd-contact-light-btn span {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.16);

    transition: var(--sd-transition);
}

/* HOVER */

.sd-contact-light-btn:hover {
    transform:
        translateY(-5px) scale(1.03);

    color: #fff;
}

.sd-contact-light-btn:hover span {
    transform: rotate(-45deg);
}

.sd-story-dark-sec {
    position: relative;
    overflow: hidden;
    display: none !important;

    padding: 50px 0;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-story-dark-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 42px 42px;

    z-index: -2;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-story-dark-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    left: -180px;
    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.45) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(120px);

    z-index: -1;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-story-dark-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 60px;
}

/* ======================================================
        TAG
    ====================================================== */

.sd-story-dark-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: var(--sd-purple);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 24px;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-story-dark-title {
    color: #fff;

    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 0;
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-story-dark-arrow-wrap {
    display: flex;
    align-items: center;

    gap: 12px;
}

.sd-story-dark-prev,
.sd-story-dark-next {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    transition: var(--sd-transition);
}

.sd-story-dark-prev:hover,
.sd-story-dark-next:hover {
    transform:
        translateY(-5px) scale(1.05);
}

/* ======================================================
        VIDEO BOX
    ====================================================== */

.sd-story-dark-video-box {
    position: relative;
    overflow: hidden;

    display: block;

    border-radius: 32px;

    height: 520px;
}

/* IMAGE */

.sd-story-dark-video-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: all 0.7s ease;
}

/* HOVER */

.sd-story-dark-video-box:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.sd-story-dark-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.08) 60%);
}

/* ======================================================
        PLAY
    ====================================================== */

.sd-story-dark-play {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 82px;
    height: 82px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.22);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 24px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-story-dark-video-box:hover .sd-story-dark-play {
    transform:
        translate(-50%, -50%) scale(1.08);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-story-dark-content {
    padding: 50px 46px;

    border-radius: 30px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 100%);

    border: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(20px);
}

/* TITLE */

.sd-story-dark-content h3 {
    margin-bottom: 28px;
}

.sd-story-dark-content h3 a {
    color: #fff;

    text-decoration: none;

    font-size: 56px;
    line-height: 1.08;
    font-weight: 600;

    letter-spacing: -1.5px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-story-dark-content h3 a:hover {
    color: var(--sd-purple);
}

/* DESC */

.sd-story-dark-content p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 50px;
}

/* ======================================================
        AUTHOR
    ====================================================== */

.sd-story-dark-author h4 {
    color: #fff;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;

    margin-bottom: 12px;
}

.sd-story-dark-author span {
    display: block;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    margin-bottom: 12px;
}

.sd-story-dark-author a {
    color: #fff;

    text-decoration: none;

    font-size: 15px;

    transition: var(--sd-transition);
}

.sd-story-dark-author a:hover {
    color: var(--sd-purple);
}


.sd-video-sec {
    position: relative;

    padding: 50px 0;

    background: #f7f7f7;
}

/* ======================================================
        TAG
    ====================================================== */

.sd-video-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(222, 84, 254, 0.10);

    color: var(--sd-purple);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 24px;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-video-title {
    color: var(--sd-black);

    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

/* ======================================================
        DESC
    ====================================================== */

.sd-video-desc {
    color: rgba(30, 29, 48, 0.72);

    font-size: 16px;
    line-height: 1.9;

    max-width: 600px;

    margin: 0 auto;
}

/* ======================================================
        SLIDER WRAP
    ====================================================== */

.sd-video-slider-wrap {
    position: relative;

    margin-top: 60px;
}

.sd-video-slide {
    padding: 0 14px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-video-card {
    overflow: hidden;

    border-radius: 18px;

    background: #efefef;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-video-card:hover {
    transform: translateY(-10px);
}

/* ======================================================
        THUMB
    ====================================================== */

.sd-video-thumb {
    position: relative;
    overflow: hidden;

    display: block;

    border-radius: 18px 18px 0 0;

    height: 300px;
}

/* IMAGE */

.sd-video-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: all 0.7s ease;
}

/* HOVER */

.sd-video-card:hover img {
    transform: scale(1.08);
}

/* ======================================================
        OVERLAY
    ====================================================== */

.sd-video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.04) 60%);
}

/* ======================================================
        PLAY
    ====================================================== */

.sd-video-play {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 20px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-video-card:hover .sd-video-play {
    transform:
        translate(-50%, -50%) scale(1.08);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-video-content {
    padding: 18px 18px 20px;
}

/* ======================================================
        STARS
    ====================================================== */

.sd-video-stars {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-bottom: 10px;
}

.sd-video-stars i {
    color: #ffb800;

    font-size: 14px;
}

/* ======================================================
        NAME
    ====================================================== */

.sd-video-content h3 {
    margin-bottom: 0;
}

.sd-video-content h3 a {
    color: var(--sd-black);

    text-decoration: none;

    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-video-content h3 a:hover {
    color: var(--sd-purple);
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-video-prev,
.sd-video-next {
    position: absolute;

    top: 50%;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    color: var(--sd-black);

    z-index: 10;

    transition: var(--sd-transition);
}

.sd-video-prev {
    left: -24px;
}

.sd-video-next {
    right: -24px;
}

/* HOVER */

.sd-video-prev:hover,
.sd-video-next:hover {
    transform:
        translateY(-5px) scale(1.05);
    color: var(--sd-dark-bg);
    background: var(--sd-new-green);
}

/* ======================================================
        DOTS
    ====================================================== */

.sd-video-dots {
    margin-top: 50px;
}

.slick-dots{
    display:none !important;
}

.sd-video-dots .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.sd-video-dots .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    border: 0;

    font-size: 0;

    background: rgba(30, 29, 48, 0.18);

    transition: var(--sd-transition);
}

.sd-video-dots .slick-dots li.slick-active button {
    width: 34px;

    border-radius: 100px;

    background: var(--sd-prpl-gradient);
}

.sd-vlog-sec {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-vlog-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 42px 42px;

    z-index: -2;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-vlog-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    left: -180px;
    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.42) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(120px);

    z-index: -1;
}

/* ======================================================
        TOP
    ====================================================== */

.sd-vlog-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 60px;
}

/* ======================================================
        TAG
    ====================================================== */

.sd-vlog-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: var(--sd-purple);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 24px;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-vlog-title {
    color: #fff;

    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 0;
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-vlog-arrow-wrap {
    display: flex;
    align-items: center;

    gap: 12px;
}

.sd-vlog-prev,
.sd-vlog-next {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-vlog-prev:hover,
.sd-vlog-next:hover {
    transform:
        translateY(-5px) scale(1.05);
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-vlog-slide {
    padding: 0 14px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-vlog-card {
    position: relative;
    overflow: hidden;

    border-radius: 34px;

    height: 720px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-vlog-card:hover {
    transform: translateY(-10px);
}

/* ======================================================
        THUMB
    ====================================================== */

.sd-vlog-thumb {
    position: absolute;
    inset: 0;

    display: block;
}

/* IMAGE */

.sd-vlog-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: all 0.8s ease;
}

/* HOVER */

.sd-vlog-card:hover img {
    transform: scale(1.08);
}

/* ======================================================
        OVERLAY
    ====================================================== */

.sd-vlog-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.08) 60%);
}

/* ======================================================
        PLAY
    ====================================================== */

.sd-vlog-play {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 82px;
    height: 82px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.22);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 24px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-vlog-card:hover .sd-vlog-play {
    transform:
        translate(-50%, -50%) scale(1.08);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-vlog-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 2;
}

/* TITLE */

.sd-vlog-content h3 {
    margin-bottom: 18px;
}

.sd-vlog-content h3 a {
    color: #fff;

    text-decoration: none;

    font-size: 34px;
    line-height: 1.18;
    font-weight: 600;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-vlog-content h3 a:hover {
    color: var(--sd-purple);
}

/* ======================================================
        META
    ====================================================== */

.sd-vlog-meta {
    display: flex;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.sd-vlog-meta span {
    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;

    display: flex;
    align-items: center;

    gap: 8px;
}

/* ======================================================
        STORE BTNS
    ====================================================== */

.sd-vlog-store-btns {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 50px;
}

.sd-vlog-store-btns a {
    transition: var(--sd-transition);
}

/* HOVER */

.sd-vlog-store-btns a:hover {
    transform:
        translateY(-5px) scale(1.04);
}

/* ======================================================
        DOTS
    ====================================================== */

.sd-vlog-dots {
    margin-top: 40px;
}

.sd-vlog-dots .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.sd-vlog-dots .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    border: 0;

    font-size: 0;

    background: rgba(255, 255, 255, 0.20);

    transition: var(--sd-transition);
}

.sd-vlog-dots .slick-dots li.slick-active button {
    width: 34px;

    border-radius: 100px;

    background: var(--sd-prpl-gradient);
}

.sd-project-sec {
    position: relative;

    padding: 50px 0;

    background: #f7f7f7;
}

/* ======================================================
        TAG
    ====================================================== */

.sd-project-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(222, 84, 254, 0.10);

    color: var(--sd-purple);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 24px;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-project-title {
    color: var(--sd-black);

    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

/* ======================================================
        DESC
    ====================================================== */

.sd-project-desc {
    color: rgba(30, 29, 48, 0.72);

    font-size: 16px;
    line-height: 1.9;

    max-width: 620px;

    margin: 0 auto;
}

/* ======================================================
        SLIDER WRAP
    ====================================================== */

.sd-project-slider-wrap {
    position: relative;

    margin-top: 70px;
}

.sd-project-slide {
    padding: 0 16px;
}

/* ======================================================
        CARD
    ====================================================== */

.sd-project-card {
    position: relative;

    border-radius: 24px;
    padding: 10px;

    background: #ece8f1;

    overflow: hidden;

    transition: all 0.45s ease;
}

/* ======================================================
        ACTIVE / HOVER
    ====================================================== */

.sd-project-card-active,
.sd-project-card:hover {
    transform:
        translateY(-12px) rotate(-2deg);

    background:
        linear-gradient(180deg,
            #2a003d 0%,
            #f49eff 100%);

    box-shadow:
        0 25px 60px rgba(222, 84, 254, 0.28);
}

.sd-project-card .sd-project-content {
    transition: all 0.45s ease;
    border-radius: 20px;
    margin-top: 10px;
}

.sd-project-card .sd-project-thumb {
    transition: all 0.45s ease;
    border-radius: 20px;
}

.sd-project-card:hover .sd-project-content {
    background: #fff;
    color: var(--sd-black) !important;
}

/* ======================================================
        THUMB
    ====================================================== */

.sd-project-thumb {
    display: block;
    height: 240px;
    overflow: hidden;

    border-radius: 24px 24px 0 0;
}

/* IMAGE */

.sd-project-thumb img {
    width: 100%;

    transition: all 0.7s ease;
}

/* HOVER */

.sd-project-card:hover img,
.sd-project-card-active img {
    transform: scale(1.05);
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-project-content {
    padding: 10px;
}

/* ======================================================
        META
    ====================================================== */

.sd-project-meta {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 8px;
}

.sd-project-meta span {
    color: rgba(30, 29, 48, 0.72);

    font-size: 13px;
    font-weight: 500;

    transition: var(--sd-transition);
}

/* ACTIVE */

.sd-project-card-active .sd-project-meta span,
.sd-project-card:hover .sd-project-meta span {
    color: var(--sd-black);
}

/* ======================================================
        CATEGORY
    ====================================================== */

.sd-project-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    border-radius: 100px;

    background: var(--sd-primary-blue);

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    margin-bottom: 10px;
}

/* ======================================================
        TITLE
    ====================================================== */

.sd-project-content h3 {
    margin-bottom: 10px;
}

.sd-project-content h3 a {
    color: var(--sd-black);

    text-decoration: none;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;

    transition: var(--sd-transition);
}

/* ACTIVE */

.sd-project-card-active h3 a,
.sd-project-card:hover h3 a {
    color: var(--sd-black);
}

/* ======================================================
        BUTTON
    ====================================================== */

.sd-project-btn {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--sd-primary-blue);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: var(--sd-transition);
}

/* ACTIVE */

.sd-project-card-active .sd-project-btn,
.sd-project-card:hover .sd-project-btn {
    color: var(--sd-purple);
}

/* ICON */

.sd-project-btn span {
    transition: var(--sd-transition);
}

/* HOVER */

.sd-project-btn:hover span {
    transform: translateX(5px);
}

/* ======================================================
        STORE BUTTONS
    ====================================================== */

.sd-project-store-btns {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 40px;
}

.sd-project-store-btns a {
    transition: var(--sd-transition);
}

.sd-project-store-btns a:hover {
    transform:
        translateY(-5px) scale(1.04);
}

/* ======================================================
        ARROWS
    ====================================================== */

.sd-project-prev,
.sd-project-next {
    position: absolute;

    top: 45%;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    z-index: 10;

    transition: var(--sd-transition);
}

.sd-project-prev {
    left: -26px;
}

.sd-project-next {
    right: -26px;
}

/* HOVER */

.sd-project-prev:hover,
.sd-project-next:hover {
    transform:
        translateY(-5px) scale(1.05);
}

/* ======================================================
        DOTS
    ====================================================== */

.sd-project-dots {
    margin-top: 50px;
    display: none;
}

.sd-project-dots .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.sd-project-dots .slick-dots li button {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    border: 0;

    font-size: 0;

    background: rgba(30, 29, 48, 0.18);

    transition: var(--sd-transition);
}

.sd-project-dots .slick-dots li.slick-active button {
    width: 34px;

    border-radius: 100px;

    background: var(--sd-prpl-gradient);
}

/* ======================================================
    SIDE WRAP
====================================================== */

.sd-blog-side-wrap {
    position: relative !important;

    height: 720px !important;

    overflow: hidden !important;
}

/* ======================================================
    SLIDER TRACK
====================================================== */

.sd-blog-side-wrap-inner {
    display: flex !important;
    flex-direction: column !important;

    gap: 28px !important;

    animation: sdBlogVerticalScroll 18s linear infinite !important;
}

/* HOVER STOP */

.sd-blog-side-wrap:hover .sd-blog-side-wrap-inner {
    animation-play-state: paused !important;
}

/* ======================================================
    ITEM
====================================================== */

.sd-blog-side-item {
    flex-shrink: 0 !important;
    margin-bottom: 20px;
}

/* ======================================================
    ANIMATION
====================================================== */

@keyframes sdBlogVerticalScroll {

    0% {
        transform: translateY(0%) !important;
    }

    100% {
        transform: translateY(-50%) !important;
    }

}

.sd-phone-hero-sec {
    position: relative;
    overflow: hidden;

    padding: 10px 0 0;

    background: var(--sd-dark-bg);

    z-index: 1;
}

/* ======================================================
        GRID
    ====================================================== */

.sd-phone-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 42px 42px;

    z-index: -2;
}

/* ======================================================
        GLOW
    ====================================================== */

.sd-phone-hero-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    left: -180px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(222, 84, 254, 0.50) 0%,
            rgba(222, 84, 254, 0) 70%);

    filter: blur(120px);

    z-index: -1;
}

/* ======================================================
        CONTENT
    ====================================================== */

.sd-phone-hero-content {
    max-width: 560px;
}

/* TITLE */

.sd-phone-hero-content h2 {
    color: #fff;

    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 26px;
}

/* DESC */

.sd-phone-hero-content p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 34px;
}

/* ======================================================
        STORE BUTTONS
    ====================================================== */

.sd-phone-store-btns {
    display: flex;
    align-items: center;

    gap: 16px;
}

.sd-phone-store-btns a {
    transition: var(--sd-transition);
}

/* HOVER */

.sd-phone-store-btns a:hover {
    transform:
        translateY(-5px) scale(1.04);
}

/* ======================================================
        SLIDER WRAP
    ====================================================== */

.sd-phone-slider-wrap {
    position: relative;

    max-width: 340px;

    margin-left: auto;
}

/* ======================================================
        SLIDER
    ====================================================== */

.sd-phone-slider {
    position: relative;
}

.sd-phone-slide {
    padding: 0 8px;
}

/* IMAGE */

.sd-phone-slide img {
    width: 100%;

    transition: all 0.5s ease;
}

/* ACTIVE */

.sd-phone-slider .slick-center img {
    transform: scale(1.02);
}

/* ======================================================
        NAVIGATION
    ====================================================== */

.sd-phone-slider-nav {
    position: absolute;

    left: 50%;
    bottom: 26px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 14px;

    z-index: 10;
}

/* BUTTON */

.sd-phone-prev,
.sd-phone-next {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sd-prpl-gradient);

    color: #fff;

    font-size: 15px;

    transition: var(--sd-transition);
}

/* HOVER */

.sd-phone-prev:hover,
.sd-phone-next:hover {
    transform:
        translateY(-5px) scale(1.05);
}

/* ======================================================
        SLICK FIX
    ====================================================== */

.sd-phone-slider .slick-track {
    display: flex !important;
    align-items: center;
}

.sd-phone-slider .slick-slide {
    height: inherit !important;
}

.sd-phone-slider .slick-slide>div {
    height: 100%;
}


/* Scroll appear animation */
:root {
    --reveal-duration: 1.2s;
    --reveal-ease: cubic-bezier(.16, 1, .3, 1);
}

/* Initial State */
/* .reveal-item {
    opacity: 0;
    transform: translate3d(0, 60px, 0) scale(0.96);
    filter: blur(12px);
    transition:
        opacity var(--reveal-duration) var(--reveal-ease),
        transform var(--reveal-duration) var(--reveal-ease),
        filter var(--reveal-duration) var(--reveal-ease);

    will-change: opacity, transform, filter;
    backface-visibility: hidden;
} */

/* Visible State */
/* .reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
} */

/* .sd-about-sec .reveal-item.is-visible {
    font-size: 3rem;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
} */

/* Premium Heading Animation */
/* h1.reveal-item,
h2.reveal-item {
    transform: translate3d(0, 80px, 0) scale(0.92);
    filter: blur(16px);
} */

/* Stagger Delay */
/* .reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
} */

/* Optional */
/* @media (prefers-reduced-motion: reduce) {
    .reveal-item {
        transition: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
} */

/* ======================================================
        DOWNLOAD APP MODAL
====================================================== */
body.sd-modal-open {
    overflow: hidden !important;
}

.sd-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 1, 33, 0.85);
    /* Semi-transparent dark background */
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.sd-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sd-modal-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(222, 84, 254, 0.25);
    border-radius: 28px;
    padding: 45px 35px 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(222, 84, 254, 0.15);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
}

.sd-modal-overlay.active .sd-modal-card {
    transform: translateY(0) scale(1);
}

/* Light theme/white background overrides */
.sd-modal-card.light-theme {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
}

/* Toggle store badges based on theme */
.sd-modal-card.light-theme .badge-dark {
    display: none !important;
}

.sd-modal-card.light-theme .badge-light {
    display: block !important;
}

.sd-modal-card:not(.light-theme) .badge-dark {
    display: block !important;
}

.sd-modal-card:not(.light-theme) .badge-light {
    display: none !important;
}

/* Light theme text styles */
.sd-modal-card.light-theme .sd-modal-title {
    color: var(--sd-black) !important;
}

.sd-modal-card.light-theme .sd-modal-desc {
    color: rgba(30, 29, 48, 0.7) !important;
}

.sd-modal-card.light-theme .sd-modal-qr-text {
    color: var(--sd-black) !important;
}

.sd-modal-card.light-theme .sd-modal-close-btn {
    background: #f5f5f5;
    color: var(--sd-black);
}

.sd-modal-card.light-theme .sd-modal-close-btn:hover {
    background: var(--sd-black);
    color: #fff;
}

.sd-modal-card.light-theme .sd-modal-icon-glow {
    background: rgba(222, 84, 254, 0.1);
    color: var(--sd-purple);
}

/* Close Button styling */
.sd-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--sd-transition);
    z-index: 10;
}

.sd-modal-close-btn:hover {
    background: #fff;
    color: var(--sd-black);
    transform: rotate(90deg);
}

/* Icon layout & glow decoration */
.sd-modal-icon-glow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(222, 84, 254, 0.15);
    color: var(--sd-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(222, 84, 254, 0.2);
}

.sd-modal-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sd-modal-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* QR Code Section inside Modal */
.sd-modal-qr-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    display: inline-block;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.sd-modal-card.light-theme .sd-modal-qr-container {
    background: #fbfbfb;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sd-modal-qr-img {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sd-modal-qr-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Store Badge Buttons inside Modal */
.sd-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.sd-modal-btn {
    display: inline-block;
    transition: var(--sd-transition);
}

.sd-modal-btn img {
    height: 48px;
    object-fit: contain;
}

.sd-modal-btn:hover {
    transform: translateY(-4px) scale(1.03);
}

/* ======================================================
        LEADERSHIP SECTION
====================================================== */
.sd-leadership-sec {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #f6f6f6;
    z-index: 1;
}

.sd-leadership-author {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(30, 29, 48, 0.1);
    display: inline-block;
}

.sd-leadership-sec .sd-author-name {
    color: var(--sd-black);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sd-leadership-sec .sd-author-title {
    color: var(--sd-purple);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* ======================================================
        STICKY ABOUT SECTION (MAPPED SELECTOR)
====================================================== */
.sd-sticky-about {
    padding: 50px 0;
    background: #f7f7f7;
    overflow: visible;
}

/* wp forms */
/* ==========================
   SurveyDu Contact Form
========================== */

.wpforms-container {
    width: 100%;
}

.wpforms-field {
    margin-bottom: 14px !important;
}

.wpforms-field-label {
    display: none !important;
}

/* Input & Textarea */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
    width: 100% !important;
    background: #ffffff0d !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 18px !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    color: #2b2b2b !important;
    box-shadow: none !important;
    transition: all .3s ease;
}

.wpforms-field input {
    height: 48px !important;
}

.wpforms-field textarea {
    height: 130px !important;
    resize: vertical;
    padding-top: 18px !important;
}

.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
    border-color: var(--sd-primary-blue) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(211, 11, 79, .08) !important;
}

/* Submit Area */
.wpforms-submit-container {
    margin-top: 20px;
}

/* Button */
.wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 10px 12px 10px 24px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    background: var(--sd-lime) !important;
    color: var(--sd-black) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    transition: var(--sd-transition) !important;
}

/* .wpforms-submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: var(--sd-primary-blue) !important;
    color: #fff !important;

    border: none !important;
    border-radius: 999px !important;

    padding: 0 18px 0 26px !important;
    height: 54px !important;

    font-size: 17px !important;
    font-weight: 600 !important;

    cursor: pointer;
    transition: .3s ease;
    box-shadow: none !important;
} */

/* Arrow Circle */
.wpforms-submit::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* Required for solid icons */
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--sd-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    transition: .3s ease;
}

.wpforms-submit:hover {
    background: var(--sd-primary-blue) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

.wpforms-submit:hover::after {
    transform: translateX(3px);
}

/* Spinner */
.wpforms-submit-spinner {
    margin-left: 15px;
}

/* Validation */
.wpforms-error {
    border-color: #dc2626 !important;
}

.wpforms-error-container,
.wpforms-field-description,
.wpforms-field-sublabel {
    font-size: 14px;
}

/* Mobile */
@media (max-width:767px) {

    .wpforms-field input {
        height: 46px !important;
    }

    .wpforms-field textarea {
        height: 120px !important;
    }

    .wpforms-submit {
        width: auto;
        height: 52px !important;
        font-size: 16px !important;
    }

}





/* Gallery */
/* ======================================================
        GALLERY SECTION STYLE
====================================================== */
.sd-gallery-sec {
    position: relative;
    padding: 50px 0;
    background: #f7f7f7;
}

.sd-gallery-tag {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(222, 84, 254, 0.10);
    color: var(--sd-purple, #de54fe);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.sd-gallery-title {
    color: var(--sd-black, #1e1d30);
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.sd-gallery-desc {
    color: rgba(30, 29, 48, 0.72);
    font-size: 16px;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

.sd-gallery-slider-wrap {
    position: relative;
    margin-top: 60px;
}

.sd-gallery-slide {
    padding: 0 14px;
}

.sd-gallery-card {
    overflow: hidden;
    border-radius: 18px;
    background: #efefef;
    transition: var(--sd-transition, all 0.3s ease);
}

.sd-gallery-card:hover {
    transform: translateY(-10px);
}

.sd-gallery-thumb {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 18px 18px 0 0;
    height: 240px;
}

.sd-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.sd-gallery-card:hover img {
    transform: scale(1.08);
}

.sd-gallery-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.04) 60%); */
}

.sd-gallery-content {
    padding: 18px 18px 20px;
    display:none;
}

.sd-gallery-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.sd-gallery-stars i {
    color: #ffb800;
    font-size: 14px;
}

.sd-gallery-content h3 {
    margin-bottom: 0;
}

.sd-gallery-content h3 a {
    color: var(--sd-black, #1e1d30);
    text-decoration: none;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    transition: var(--sd-transition, all 0.3s ease);
}

.sd-gallery-content h3 a:hover {
    color: var(--sd-purple, #de54fe);
}

.sd-gallery-prev,
.sd-gallery-next {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sd-prpl-gradient, linear-gradient(135deg, #de54fe, #7e22ce));
    color: #fff;
    z-index: 10;
    transition: var(--sd-transition, all 0.3s ease);
}

.sd-gallery-prev {
    left: -24px;
}

.sd-gallery-next {
    right: -24px;
}

.sd-gallery-prev:hover,
.sd-gallery-next:hover {
    transform: translateY(-5px) scale(1.05);
}

.sd-gallery-dots {
    margin-top: 50px;
}

.sd-gallery-dots .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sd-gallery-dots .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    font-size: 0;
    background: rgba(30, 29, 48, 0.18);
    transition: var(--sd-transition, all 0.3s ease);
}

.sd-gallery-dots .slick-dots li.slick-active button {
    width: 34px;
    border-radius: 100px;
    background: var(--sd-prpl-gradient, linear-gradient(135deg, #de54fe, #7e22ce));
}

/* ======================================================
        MEDIA QUERIES (RESPONSIVE)
====================================================== */
@media (max-width: 1399px) {
    .sd-gallery-sec {
        padding: 70px 0;
    }

    .sd-gallery-title {
        font-size: 52px;
    }

    .sd-gallery-prev,
    .sd-gallery-next {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .sd-gallery-prev {
        left: -10px;
    }

    .sd-gallery-next {
        right: -10px;
    }

    .sd-gallery-dots {
        margin-top: 40px;
    }
}

@media (max-width: 1199px) {
    .sd-gallery-sec {
        padding: 100px 0;
    }

    .sd-gallery-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .sd-gallery-title {
        font-size: 38px;
    }

    .sd-gallery-thumb {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .sd-gallery-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .sd-gallery-title {
        font-size: 26px;
    }

    .sd-gallery-thumb {
        height: 220px;
    }

    .sd-gallery-content h3 a {
        font-size: 18px;
    }
}

/* Gallery */



/* Default Page */
.default_pagesec {
    /* background: var(--ctma-bg); */
    padding: 60px 0;
}


.default_pagesec h1,
.default_pagesec h2 {
    /* color: var(--ctma-title-color); */
    font-weight: 700;
    line-height: 1.2;
}

.default_pagesec h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
}

.default_pagesec h2 {
    font-size: 34px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.default_pagesec h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    /* color: var(--ctma-deep-green); */
}

/* Strong emphasis */
.default_pagesec h1 strong,
.default_pagesec h2 strong {
    font-weight: 700 !important;
}


.default_pagesec p, .so-widget-sow-editor p {
    font-size: 16px;
    line-height: 1.7;
    color: #555 !important;
    margin-bottom: 18px;
    font-weight: 500;
}


.default_pagesec ul,
.default_pagesec ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.default_pagesec ul li,
.default_pagesec ol li,
.so-widget-sow-editor ul li,
.siteorigin-widget-tinymce.textwidget ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
    font-weight: 400;
}

/* Ordered list marker styling */
.default_pagesec ol li::marker {
    /* color: var(--ctma-deep-green); */
    font-weight: 600;
}

/* Remove flex from OL (keep clean vertical flow) */
.default_pagesec ol {
    display: block;
}


.default_pagesec img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}


.so-widget-sow-editor h1 {
    text-align: center;
}

.siteorigin-widget-tinymce.textwidget h3 {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    /* color: var(--ctma-title-color); */
}

.siteorigin-widget-tinymce.textwidget ul li h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    /* color: var(--ctma-deep-green); */
}

/* Intro container spacing */
.intro-cont p {
    margin-bottom: 15px;
}

.sd-contact-info-text a {
    color: #ffffff !important;
    text-decoration: none;

}


/* ==========================
   SURVEYDU BLOG CONTENT
========================== */

.event-desc{
    font-family: "Inter", sans-serif;
    color:#4b5563;
    font-size:17px;
    line-height:1.9;
}

/* Content Width */
.event-desc .siteorigin-widget-tinymce{
    max-width:100%;
}

/* Paragraph */
.event-desc p
 {
    margin: 0 0 22px;
    color: var(--sd-black);
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
    font-weight: 500;
}
#ez-toc-container
 {
    text-align: left !important;}

/* Headings */
.event-desc h2, .event-desc h3, .event-desc h4, .event-desc h5, .event-desc h6 {
    color: #111827;
    font-weight: 700;
    line-height: 1.35;
    margin: 45px 0 18px;
    position: relative;
    text-align: left;
}

.event-desc h2{
    font-size:36px;
}

.event-desc h3{
    font-size:30px;
}

.event-desc h4{
    font-size:24px;
}

.event-desc h5{
    font-size:20px;
}

.event-desc h6{
    font-size:18px;
}

/* Heading Accent */
/* .event-desc h3::before,
.event-desc h4::before{
    content:"";
    width:60px;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
    border-radius:10px;
    display:block;
    margin-bottom:14px;
} */

/* Links */

.event-desc a{
    color:#2563eb;
    text-decoration:none;
    transition:.3s;
}

.event-desc a:hover{
    color:#0f172a;
}

/* Strong */

.event-desc strong{
    color:#111827;
    font-weight:600;
}

/* Lists */

.event-desc ul,
.event-desc ol{
    padding-left:24px;
    margin:25px 0;
}

.event-desc li {
    margin: 0 0 22px;
    color: var(--sd-black);
    font-size: 20px;
    line-height: 1.9;
    text-align: justify;
    font-weight: 500;
}

/* Images */

.event-desc img{
    border-radius:18px;
    overflow:hidden;
    max-width:100%;
    margin:35px auto;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Blockquote */

.event-desc blockquote{
    border-left:5px solid #2563eb;
    background:#f8fbff;
    padding:25px 30px;
    margin:35px 0;
    border-radius:12px;
    font-style:italic;
}

/* Tables */

.event-desc table{
    width:100%;
    border-collapse:collapse;
    margin:35px 0;
}

.event-desc table th{
    background:#2563eb;
    color:#fff;
    padding:15px;
}

.event-desc table td{
    padding:15px;
    border:1px solid #eef2f7;
}

/* ==========================
      TABLE OF CONTENTS
========================== */

#ez-toc-container{
    background:#ffffff;
    border:1px solid #e7eef7;
    border-radius:18px;
    padding:25px;
    margin-bottom:45px;
    box-shadow:0 15px 35px rgba(20,40,80,.06);
}

#ez-toc-container .ez-toc-title{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:18px;
}

#ez-toc-container nav ul{
    list-style:none;
    margin:0;
    padding:0;
}

#ez-toc-container nav li{
    margin:8px 0;
}

#ez-toc-container nav a
 {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    color: #475569;
    font-size: 1.1rem !important;
    transition: .3s;
    padding-bottom: 0px !important;
}

#ez-toc-container nav a:hover{
    background:#2563eb;
    color:#fff;
    padding-left:24px;
}

/* Active */

#ez-toc-container nav a:focus{
    background:#2563eb;
    color:#fff;
}

/* Toggle */

.ez-toc-title-toggle a{
    color:#2563eb !important;
}

/* ==========================
      SMOOTH SCROLL
========================== */

html{
    scroll-behavior:smooth;
}

/* ==========================
      TEXT SELECTION
========================== */

::selection{
    background:#2563eb;
    color:#fff;
}

/* ==========================
      RESPONSIVE
========================== */

@media(max-width:991px){

.event-desc h2{
    font-size:30px;
}

.event-desc h3{
    font-size:25px;
}

.event-desc h4{
    font-size:21px;
}

#ez-toc-container{
    padding:20px;
}

}

@media(max-width:767px){

.event-desc{
    font-size:16px;
}

.event-desc p{
    font-size:16px;
    line-height:1.8;
}

.event-desc h2{
    font-size:26px;
}

.event-desc h3{
    font-size:22px;
}

.event-desc h4{
    font-size:19px;
}

#ez-toc-container nav a{
    font-size:14px;
    padding:10px 14px;
}

}

/* Default Page */

.sd-footer-subscribe-text{
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
}

.sd-footer-subscribe-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sd-footer-subscribe-form input{
    width:100%;
    height:48px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    border-radius:10px;
    padding:0 15px;
    color:#fff;
    outline:none;
    transition:.3s;
}

.sd-footer-subscribe-form input::placeholder{
    color:rgba(255,255,255,.55);
}

.sd-footer-subscribe-form input:focus{
    border-color:#4da3ff;
    background:rgba(255,255,255,.12);
}

.sd-footer-subscribe-form button{
    height:48px;
    border:none;
    border-radius:10px;
    background:linear-gradient(90deg,#1e88e5,#42a5f5);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.sd-footer-subscribe-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(30,136,229,.3);
}

.sd-footer-subscribe-text{
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
}

.sd-footer-subscribe-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sd-footer-subscribe-form input{
    width:100%;
    height:48px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    border-radius:10px;
    padding:0 15px;
    color:#fff;
    outline:none;
    transition:.3s;
}

.sd-footer-subscribe-form input::placeholder{
    color:rgba(255,255,255,.55);
}

.sd-footer-subscribe-form input:focus{
    border-color:#4da3ff;
    background:rgba(255,255,255,.12);
}

.sd-footer-subscribe-form button{
    height:48px;
    border:none;
    border-radius:10px;
    background:linear-gradient(90deg,#1e88e5,#42a5f5);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.sd-footer-subscribe-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(30,136,229,.3);
}

.default_pagesec a{
    color: var(--sd-black);
}

/*====================================
 Email Subscribers - SurveyDu Footer
=====================================*/

.es_form_wrapper{
    width:100% !important;
    max-width:100% !important;
}

.es_subscription_form{
    background:transparent !important;
    padding:0 !important;
    box-shadow:none !important;
    border:0 !important;
}

/* Hide label */
.es-field-label{
    font-size:0 !important;
    margin:0 !important;
}

/* Layout */
.es_subscription_form{
    display:flex;
    align-items:center;
    gap:6px;
}

/* Remove spacing */
.es-field-wrap{
    margin:0 !important;
}

.ig-es-form-field{
    flex:1;
}

/* Input */
.es_subscription_form .ig-es-form-input{
    width:100% !important;
    height:56px;
    border:none !important;
    border-radius:50px !important;
    padding:0 165px 0 22px !important;
    background:#ffffff !important;
    color:#1e293b !important;
    font-size:15px;
    font-weight:500;
    box-shadow:none !important;
}

.es_subscription_form .ig-es-form-input::placeholder{
    color:#94a3b8;
}

/* Button inside input */
.es-submit-container{
    position:absolute;
    right:6px;
    top:6px;
    margin:0 !important;
}

.es_subscription_form{
    position:relative;
}

.es_subscription_form .es-subscribe-btn{
    height:44px !important;
    min-width:110px !important;
    margin:0 !important;
    padding:0 24px !important;
    border:none !important;
    border-radius:40px !important;
    background:var(--sd-primary-blue) !important;
    color:#fff !important;
    font-size:15px !important;
    font-weight:700 !important;
    transition:.35s ease;
    box-shadow:none !important;
}

.es_subscription_form .es-subscribe-btn:hover{
    transform:translateY(-2px);
    background:var(--sd-lime) !important;
    color: var(--sd-black) !important;
}

/* Spinner */
.es_spinner_image{
    display:none !important;
}

/* Message */
.es_subscription_message{
    margin-top:12px;
    color:#fff;
    font-size:14px;
}

/* Mobile */
@media(max-width:53rem){

.es_subscription_form .ig-es-form-input{
    height:52px;
    padding:0 18px !important;
}

.es-submit-container{
    position:static;
    width:100%;
    margin-top:10px !important;
}

.es_subscription_form{
    display:block;
}

.es_subscription_form .es-subscribe-btn{
    width:100%;
    height:52px !important;
}

}

.page-template-home .sd-webinar-sec{
    display:none !important;
}





/* Contact */
.faq-contact-box {
    text-align: center;
    background: #ffffff0f;
    padding: 10px 20px;
    width: fit-content;
    margin: auto;
    border-radius: 99px !important;
    color: #000 !important;
    margin-top: 30px !important;
}

.faq-contact-box p {
    margin: 0;
}

.faq-contact-box a {
    color: #fff !important;
    text-decoration: none;
    transition: all 0.5s ease;
}


.faq-contact-box a:hover {
    color: var(--sd-lime) !important;
    text-decoration: underline;
}
/* Contact */
.faq-contact-box {
    background: #ffffff0f;
    padding: 10px 20px;
    width: fit-content;
    margin: auto;
    border-radius: 99px !important;
    color: #000 !important;
    margin-top: 30px !important;
}

.event-block h5 i{
    color: var(--sd-primary-blue) !important;
}

.event-block p, .event-block .text-muted{
    margin: 0 0 22px;
    color: var(--sd-black);
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
    font-weight: 500;
}

.event-status-badge {
    background: radial-gradient(circle at 90% 95%, #2be4a0 0%, transparent 45%), linear-gradient(135deg, #e383fc 0%, #a26fff 25%, #2559eb 65%, #1980f4 100%);
    color: #fff;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 99px;
    margin-bottom: 10px;
    font-weight: 600;
}

.webiner-sec-two-card .tag {
    background: #ffffff21;
    color: #ffffff;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 99px;
    margin-bottom: 20px !important;
    font-weight: 600;
}

.webiner-sec-two-content {
    margin-top: 10px;
}

/*==================================
 SurveyDu Resource Cards
===================================*/

.sd-resource-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 24px;
    border-radius:18px;
    text-decoration:none;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    height:100%;
}

/* .sd-resource-card::before{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,
    transparent,
    rgba(0,150,255,.08),
    transparent);
    transition:.7s;
}

.sd-resource-card:hover::before{
    left:100%;
} */

.sd-resource-card:hover{
    transform:translateY(-8px);
    border-color:#2F80ED;
    box-shadow:0 20px 45px rgba(47,128,237,.18);
}

.sd-resource-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.sd-resource-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background: var(--sd-primary-blue);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    transition:.35s;
    flex-shrink:0;
}

.sd-resource-card:hover .sd-resource-icon{
    transform:rotate(-10deg) scale(1.08);
}

.sd-resource-content h5{
    margin:0;
    color:#1E293B;
    font-size:19px;
    font-weight:700;
}

.sd-resource-content span{
    display:block;
    margin-top:4px;
    color:#64748B;
    font-size:14px;
    line-height:1.5;
}

.sd-resource-arrow{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#F3F7FC;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--sd-primary-blue);
    transition:.35s;
    flex-shrink:0;
}

.sd-resource-card:hover .sd-resource-arrow{
    background:#2F80ED;
    color:#fff;
    transform:translateX(6px);
}

.sd-resource-card:hover .sd-resource-arrow i{
    transform:rotate(-45deg);
}

.sd-resource-arrow i{
    transition:.35s;
}

@media (max-width:576px){

    .sd-resource-card{
        padding:18px;
    }

    .sd-resource-icon{
        width:54px;
        height:54px;
        font-size:20px;
        border-radius:15px;
    }

    .sd-resource-content h5{
        font-size:17px;
    }

    .sd-resource-content span{
        font-size:13px;
    }

    .sd-resource-arrow{
        width:42px;
        height:42px;
    }

}





.sd-app-showcase-sec .hd {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 500px;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

/* icon */
.sd-module-icon i
 {
    color: var(--sd-new-green);
    font-size: 1.5rem;
    background: #ffffff21;
    padding: 14px;
    border-radius: 99px;
    font-weight: 500;
}
/* icon */

.sd-pagination-wrap ul li span.current{
    background: var(--sd-primary-blue) !important;
}

.counter-section-title{
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;

    margin-bottom: 30px !important;
}
.solution-wrpr{
    /* max-height: 80vh;

    overflow-y:auto;
    scrollbar-width: thin;
    scrollbar-color: #2F80ED #F3F7FC; */
    margin-top: 15px !important;
}

.m-h-gap{
    margin-bottom: 15px !important;
}

.sec-btn-wrpr{
    margin-top: 15px !important;
}

.sd-transform-sec .default_pagesec p,
.sd-transform-sec .so-widget-sow-editor p{
    color: rgba(255, 255, 255, 0.78) !important;
    text-align: justify;
}

.event-hero img
 {
    max-width: 80% !important;
    margin: auto !important;
}

img{
    border-radius: 20px !important;
}

.event-block{
    border: none !important;
}
.event-block h5 {
    font-size: 1.5rem !important;
    color: var(--sd-black) !important;
    display: flex;
    align-items: center;
    margin-bottom: 10px !important;
}

.header-btn
 {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    /* background: var(--sd-primary-blue) !important; */
    background: radial-gradient(circle at 90% 95%, #2be4a0 0%, transparent 45%), linear-gradient(135deg, #e383fc 0%, #a26fff 25%, #2559eb 65%, #1980f4 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 0 11px 0 20px !important;
    height: 54px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    box-shadow: none !important;
    height: 48px !important;
    /* display: flex !important; */
    align-content: center;
    width: fit-content;
}
.header-btn-icon{
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-primary-blue);
    font-size: 16px;
    flex-shrink: 0;

}

.header-btn:hover{
    background: #BE78FE !important;
}

.right-side {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.sd-event-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    transition:.35s;
}

.sd-event-card:hover{
    transform:translateY(-8px);
}

.sd-event-thumb {
    display: flex;
    overflow: hidden;
    border-radius: 26px;
    height: 200px;
    object-position: center;
    padding: 10px;
}

.sd-event-thumb img{
    width:100%;
    height:270px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.sd-event-card:hover .sd-event-thumb img{
    transform:scale(1.06);
}
.sd-event-card .sd-event-heading{
    transition: all .5s ease-in-out;
}
.sd-event-card:hover .sd-event-heading{
    color: var(--sd-primary-blue);
}

.sd-event-body{
    padding:24px;
}

.sd-event-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    background: radial-gradient(circle at 90% 95%, #2be4a0 0%, transparent 45%), linear-gradient(135deg, #e383fc 0%, #a26fff 25%, #2559eb 65%, #1980f4 100%) !important;
}

.sd-event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px;
    border-radius: 50px;
    background: #e9f4ff;
    color: #14213d;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 18px;
}

.sd-event-date i{
    color:#0d5cff;
}

.sd-event-heading {
    font-size: 1.6rem;
    line-height: 1.15;
    font-weight: 700;
    color: #13294b;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sd-event-heading a{
    color:inherit;
    text-decoration:none;
}

.sd-event-desc {
    color: var(--sd-black);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sd-event-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0e1633;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    font-weight: 500;
}

.sd-event-readmore i {
    transition: .3s;
    padding: 8px;
    background: #f1fbff;
    font-size: 13px;
    border-radius: 99px;
}

.sd-event-readmore:hover{
    color:#2c66ff;
}

.sd-event-readmore:hover i{
    transform:translateX(6px);
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
    height: 100vh;
}

.panel-grid-cell .widget-title{
    color: var(--sd-black);
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

/* site loader */
/*=========================================
  SURVEYDU WEBSITE LOADER
=========================================*/

/* #sd-site-loader{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999999999;

    opacity:1;
    visibility:visible;

    transition:opacity .5s ease, visibility .5s ease;
}

#sd-site-loader.hide{
    opacity:0;
    visibility:hidden;
}

.sd-loader-wrapper{
    position:relative;
    width:170px;
    height:170px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.sd-loader-logo{
    width:90px;
    position:relative;
    z-index:2;
    animation:sdPulse 1.8s ease-in-out infinite;
}

.sd-loader-ring{
    position:absolute;
    width:145px;
    height:145px;

    border-radius:50%;

    border:4px solid rgba(37,89,235,.12);
    border-top-color:#2559EB;
    border-right-color:#BE78FE;

    animation:sdSpin .9s linear infinite;
}

@keyframes sdSpin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes sdPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

} */


/* =========================================
   Preloader
========================================= */
#pol-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pol-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.pol-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(224, 67, 67, 0.2);
    /* light red */
    border-top-color: var(--pol-red);
    border-radius: 50%;
    animation: pol-spin 1s linear infinite;
}

@keyframes pol-spin {
    to {
        transform: rotate(360deg);
    }
}


/* Preloader of main */

/* ==========================
   Polstar Premium Preloader
========================== */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow: hidden;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    /* background: url(../images/ftr-bg.png); */
    background-fit: cover;
    background-repeat: no-repeat;
    transform: scale(1.05);
}

.preloader-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, .55); */
    /* background: url(../images/ftr-bg.png); center center/cover; */
    background: #f2f2f2;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.preloader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 110px;
    height: 110px;
    border: 3px solid rgba(255, 255, 255, .18);
    border-top: 3px solid var(--sd-primary-blue);
    border-right: 3px solid var(--=sd-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: polstarRotate 1.2s linear infinite;
    /* box-shadow:
        0 0 30px rgba(255, 106, 0, .35),
        inset 0 0 20px rgba(255, 255, 255, .08); */
}

.loader-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    animation: counterRotate 1.2s linear infinite;
}

@keyframes polstarRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.event-single {
    padding-top: 50px !important;
}


/* ====================================================== */
/* SEGMENT MODAL */
/* ====================================================== */
.sd-segment-modal-card {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #0F091E;
    border: 1px solid rgba(222, 84, 254, 0.25);
    border-radius: 24px;
    padding: 50px;
    transform: scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: var(--sd-transition);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    margin: 40px auto;
}
.sd-modal-overlay.active .sd-segment-modal-card {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.sd-segment-modal-left {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sd-segment-modal-right {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
}
.sd-segment-modal-title {
    color: var(--sd-black);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}
.sd-segment-modal-desc {
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    line-height: 1.8;
}
@media (max-width: 991px) {
    .sd-segment-modal-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .sd-segment-modal-card {
        padding: 40px 30px;
    }
}

.meta-data {
    display: flex !important;
    align-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px !important;
}

.event-block {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px !important;
}
.event-details h5{
    font-size: 1.5rem !important;
    color: var(--sd-black) !important;
}