@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

:root {
    --bg-color: #000;

    --btn-color: #fdfdfd; /* button color*/
    --btn-bg: rgba(37, 211, 102, 0.2); /* button bg color*/

    --primary-text-color: #a084e8;
    --header-link-hover: #a084e8;
    --input-hover-bd-color: #a084e8;
}

html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
    overflow-x: hidden;
}

body {
    background: radial-gradient(ellipse at top left, #1a102a 0%, #09090f 100%);
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(126, 34, 206, 0.12) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 0;
    pointer-events: none;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0 1px,
            transparent 1px 100%
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.02) 0 1px,
            transparent 1px 100%
        );
    z-index: 1;
    pointer-events: none;
}
.hero-section,
section {
    background: transparent !important;
}

header {
    /* background-color: #fff;
    color: #000; */
    color: #b1b1b1;
    background: transparent;
    box-shadow: none;
    border: none;
}

header > .collapsible-header {
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
    background: transparent;
    box-shadow: none;
}

.animated-collapse {
    transition: width 0.3s ease;
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
    color: #e0d7ff;
    font-weight: 500;
    transition: color 0.2s;
}

.header-links:hover {
    color: #fff;
    text-shadow: 0 0 8px #a084e8;
    /* background-color: var(--header-link-hover); */
}

.primary-text-color {
    color: var(--primary-text-color);
}

.gradient-text {
    background: linear-gradient(90deg, #fff 20%, #a084e8 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 16px #7e22ce44;
}

.hero-img-bg-grad {
    background: rgb(126, 34, 206);
    background: linear-gradient(
        90deg,
        #7e22ce91 8%,
        #625aafae 31%,
        #7badbbbc 76%,
        #54d2d0ca 89%
    );
    filter: blur(50px);
    opacity: 0.5;
}

#dashboard {
    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8)
        rotate(0deg) rotateX(70deg);
    transition: transform 0.5s ease-in-out;
    background: rgba(30, 20, 50, 0.7);
    box-shadow: 0 8px 48px 0 #7e22ce55, 0 1.5px 16px 0 #fff2;
    border-radius: 24px;
    border: 1.5px solid #a084e844;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
}

@media not all and (min-width: 1024px) {
    #dashboard-container {
        display: none;
    }
}

@media (min-width: 768px) {
    #mobile-dashboard-container {
        display: none;
    }
}

.mobile-view-overlay {
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.6)
        rotate(0deg) rotateX(70deg);
    transition: transform 0.5s ease-in-out;
    background: rgba(30, 20, 50, 0.7);
    box-shadow: 0 8px 48px 0 #7e22ce55, 0 1.5px 16px 0 #fff2;
    border-radius: 24px;
    border: 1.5px solid #a084e844;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    position: absolute;
    right: 10%;
    top: 20%;
    z-index: 10;
    max-width: 25%;
}

#dashboard img {
    border-radius: 24px;
    box-shadow: 0 2px 32px #7e22ce33;
}

/* Subtle animated stars background */
@keyframes twinkle {
    0%,
    100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}
.bg-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}
.bg-stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle 2s infinite ease-in-out;
}

/* Add more stars via JS or HTML if needed */

.border-gradient {
    background: rgb(219, 215, 213);
    background: linear-gradient(
        180deg,
        rgba(219, 215, 213, 1) 35%,
        rgba(214, 211, 233, 0) 71%
    );
    /* background-image: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%); */
    padding: 2px;
    border-radius: 10px;
}
.border-gradient > div {
    /* background-color: var(--bg-color); */
    background-color: var(--bg-color);
    border-radius: inherit;
}

.opacity-0 {
    /* Testimonial Card Styles */
    .testimonial-card {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 0.5rem;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .testimonial-card p {
        margin-bottom: 0.5rem;
    }

    .testimonial-card p:last-child {
        margin-bottom: 0;
    }
}

.opacity-100 {
    opacity: 100 !important;
}

.btn,
.btn:visited {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 32px 0 #a084e855, 0 1.5px 16px 0 #fff2;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 1.1rem;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(160, 132, 232, 0.1) 100%
    );
    opacity: 0.7;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
}
.btn span,
.btn i {
    position: relative;
    z-index: 1;
}
.btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #a084e8;
    box-shadow: 0 6px 40px 0 #a084e8aa;
}

.glassy-card,
#dashboard {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 48px 0 #a084e855, 0 1.5px 16px 0 #fff2;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    overflow: hidden;
    position: relative;
}
.glassy-card::before,
#dashboard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(160, 132, 232, 0.1) 100%
    );
    opacity: 0.7;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
}
.glassy-card > *,
#dashboard > * {
    position: relative;
    z-index: 1;
}

.btn:disabled {
    cursor: default;
}

.input {
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active,
.input:focus,
.input:focus-within {
    border: 1px solid var(--input-hover-bd-color) !important;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 1000px;
}

.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}

.carousel-img {
    display: inline-block;
    margin: 0 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-link {
    color: #c7c6c6;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: #f2f2f2;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #e4e4e4;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion.active,
.faq-accordion:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

/* Glowing login button */
header .tw-bg-white {
    background: linear-gradient(90deg, #fff 60%, #a084e8 100%) !important;
    color: #7e22ce !important;
    box-shadow: 0 2px 16px #a084e8aa;
    font-weight: 700;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}
header .tw-bg-white:hover {
    background: #a084e8 !important;
    color: #fff !important;
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
    }

    .header-links {
        color: rgb(255, 255, 255);
    }
}

/* Glass Displacement Effect for Why Takkufy Cards */
.glass-displacement-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.1) inset,
        0 0 10px 4px rgba(255, 255, 255, 0.05) inset,
        0px 4px 16px rgba(17, 17, 26, 0.1), 0px 8px 24px rgba(17, 17, 26, 0.1),
        0px 16px 56px rgba(17, 17, 26, 0.1);
}

.glass-displacement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(160, 132, 232, 0.05) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0.6;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
}

.glass-displacement-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
}

.glass-displacement-card > * {
    position: relative;
    z-index: 2;
}

.glass-displacement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.15) inset,
        0 0 10px 4px rgba(255, 255, 255, 0.08) inset,
        0px 8px 32px rgba(17, 17, 26, 0.15),
        0px 16px 48px rgba(17, 17, 26, 0.15),
        0px 32px 64px rgba(17, 17, 26, 0.15);
}

.glass-displacement-icon {
    background: linear-gradient(
        135deg,
        rgba(160, 132, 232, 0.2) 0%,
        rgba(126, 34, 206, 0.1) 100%
    );
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 132, 232, 0.2);
}

.glass-displacement-content {
    padding: 24px;
    color: #e0e0e0;
}

.glass-displacement-content h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.glass-displacement-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Displacement filter for advanced glass effect */
.glass-displacement-container {
    position: relative;
}

.glass-displacement-container::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(
        45deg,
        rgba(160, 132, 232, 0.1) 0%,
        rgba(126, 34, 206, 0.05) 50%,
        rgba(160, 132, 232, 0.1) 100%
    );
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

/* Beautiful btn2 Base Styles */
.btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(10px);
    min-width: 44px;
    min-height: 44px;
    color: inherit;
}

/* Hover Effects */
.btn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #60a5fa !important;
    background: linear-gradient(
        135deg,
        rgba(96, 165, 250, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

/* Active/Click Effect */
.btn2:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ripple Effect */
.btn2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(96, 165, 250, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn2:hover::before {
    width: 300px;
    height: 300px;
}

/* Ensure content stays above ripple */
.btn2 > * {
    position: relative;
    z-index: 1;
}

/* Color Variants */
.btn2.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: #3b82f6;
    color: white;
}

.btn2.primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    border-color: #1d4ed8;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn2.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
}

.btn2.success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #059669;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn2.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-color: #25d366;
    color: white;
}

.btn2.whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    border-color: #128c7e;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn2.danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #ef4444;
    color: white;
}

.btn2.danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #dc2626;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

/* Size Variants */
.btn2.small {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 36px;
    min-height: 36px;
}

.btn2.large {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 52px;
    min-height: 52px;
}

/* Shape Variants */
.btn2.rounded {
    border-radius: 25px;
}

.btn2.circle {
    border-radius: 50%;
    padding: 12px;
    width: 44px;
    height: 44px;
}

/* Ghost/Outline Variant */
.btn2.ghost {
    background: transparent;
    border: 1px solid currentColor;
}

.btn2.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Toggle Switch Styles */
.toggle-container {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 1px solid #4b5563;
    border-radius: 50px;
    padding: 4px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .toggle-container {
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
}

.toggle-option {
    padding: 12px 20px;
    border-radius: 46px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    text-align: center;
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .toggle-option {
        border-radius: 8px;
        padding: 14px 16px;
        font-size: 13px;
        width: 100%;
        flex: none;
    }
}

.toggle-option.active {
    background: linear-gradient(135deg, #a084e8 0%, #a084e855 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transform: scale(1.02);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
}

@media (max-width: 768px) {
    .toggle-option.active {
        transform: none;
    }
}

.toggle-option:not(.active) {
    color: #9ca3af;
}

.toggle-option:not(.active):hover {
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.05);
}

/* Input styles */
.input {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: #f3f4f6;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 0;
    flex: 1;
}

.input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(31, 41, 55, 0.95);
}

.input::placeholder {
    color: #9ca3af;
}

/* WhatsApp button specific styles */
.whatsapp-btn {
    background: linear-gradient(135deg, #a084e8 0%, #a084e855 100%);
    border-color: #a084e8 !important;
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #a084e855 0%, #a084e8 100%);
    border-color: #a084e8 !important;
    box-shadow: 0 2px 25px rgba(211, 37, 208, 0.3);
}

.glassy-card2 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--secondary);
    border: 1px solid var(--outlineColor);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn2 {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #4b5563;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.btn2:hover {
    background: rgba(160, 132, 232, 0.1);
    border-color: #a084e8;
    color: #a084e8;
}

/* Ensure no horizontal overflow */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .mobile-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
    }

    .mobile-card {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
    }

    .mobile-input-section {
        width: 100% !important;
        flex-direction: column !important;
        gap: 12px !important;
        height: auto !important;
    }

    .mobile-input-section input {
        width: 100% !important;
        height: 48px !important;
    }

    .mobile-input-section button {
        width: 100% !important;
        height: 48px !important;
        border-radius: 8px !important;
        min-width: auto !important;
    }
}

.comparison-section {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a084e8, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.comparison-card {
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.old-way-card {
    background: var(--red-bg);
    border: 1px solid var(--red-border);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.1);
}

.old-way-card:hover {
    box-shadow: 0 16px 48px rgba(239, 68, 68, 0.2);
}

.new-way-card {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}

.new-way-card:hover {
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.card-icon {
    font-size: 2.5rem;
}

.old-way-icon {
    color: var(--red-text);
}

.new-way-icon {
    color: var(--green-text);
}

.card-title {
    font-size: 2rem;
    font-weight: 600;
}

.old-way-title {
    color: var(--red-text);
}

.new-way-title {
    color: var(--green-text);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.item-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.old-way-item-icon {
    color: var(--red-text);
}

.new-way-item-icon {
    color: var(--green-text);
}

.item-text {
    color: var(--text-secondary);
}

/* Decorative elements */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        transparent 30%,
        rgba(160, 132, 232, 0.1) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.comparison-card:hover .card-glow {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .comparison-title {
        font-size: 2rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-card {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .comparison-item {
        font-size: 1rem;
    }

    .comparison-section {
        padding: 60px 4%;
    }
}

/* Animation for reveal effect */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s ease-out forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-card:nth-child(2) {
    animation-delay: 0.2s;
}

.carousel-section-wrapper {
    position: relative;
    z-index: 1;
    max-width: 380px;
    margin: 0 auto;
}

/* PC/Desktop view adjustments */
@media (min-width: 769px) {
    .carousel-section-wrapper {
        max-width: 1200px;
    }

    .carousel-card {
        display: flex;
        gap: 40px;
        align-items: flex-start;
        padding: 40px;
    }

    .carousel-main-section {
        flex: 1.5;
    }

    .carousel-main-image {
        height: 500px;
        margin-bottom: 0;
    }

    .carousel-content-section {
        flex: 1;
        padding-left: 0;
    }

    .carousel-content {
        padding: 0;
    }

    .carousel-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .carousel-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .carousel-link {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .slide-features {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .feature-item {
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .feature-check {
        width: 20px;
        height: 20px;
        margin-top: 3px;
    }

    .feature-check::before {
        font-size: 12px;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .carousel-thumbnails {
        display: none;
    }
}

.carousel-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.carousel-main-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #1a1a1a;
}

.carousel-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* PC specific image styling */
@media (min-width: 769px) {
    .carousel-main-image img {
        object-fit: contain;
    }
}

.slide-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.slide-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-nav-arrows:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slide-nav-arrows.prev {
    left: 12px;
}

.slide-nav-arrows.next {
    right: 12px;
}

.slide-nav-arrows::before {
    content: "";
    width: 6px;
    height: 6px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
}

.slide-nav-arrows.prev::before {
    transform: rotate(135deg);
}

.slide-nav-arrows.next::before {
    transform: rotate(-45deg);
}

.carousel-content {
    padding: 0 4px;
}

.carousel-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.carousel-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 16px;
}

.carousel-link {
    color: #a084e8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.carousel-link:hover {
    color: #fff;
}

.carousel-link::after {
    content: "↗";
    font-size: 12px;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #2a2a2a;
}

.thumbnail.active {
    border-color: #a084e8;
    box-shadow: 0 0 12px rgba(160, 132, 232, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.feature-list {
    display: none;
}

/* Feature content for different slides */
.slide-features {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.feature-check {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #a084e8, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    font-size: 10px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
}

.feature-title {
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.feature-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-section-wrapper {
        max-width: 100%;
    }

    .carousel-card {
        padding: 16px;
        margin: 0 4px;
        display: block;
    }

    .carousel-main-image {
        height: 180px;
    }

    .carousel-title {
        font-size: 1.2rem;
    }

    .thumbnail {
        width: 55px;
        height: 40px;
    }
}
