/* Custom Design Styles */

:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Tajawal', sans-serif;
}

/* Brand Icons */
.brand-icon-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-gradient {
    background: linear-gradient(to left, rgba(138, 63, 252, 0.1), rgba(255, 255, 255, 0.95) 50%);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 63, 252, 0.15);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(138, 63, 252, 0.15);
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    right: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #8a3ffc;
}

input:checked+.slider:before {
    transform: translateX(-24px);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 200px;
}

/* Custom scrollbar styles */
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 0;
    /* scrollbar width */
    height: 0;
    /* horizontal scrollbar height */
}

::-webkit-scrollbar-track {
    background: transparent;
    /* transparent track to make content visible */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    /* scrollbar slider color */
    border-radius: 4px;
    /* slider rounded corners */
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.7);
    /* hover color */
}