:root {
    --primary-color: #c9004d;
    --primary-hover: #a0003a;
    --primary-gradient: #e6005d;
}

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

.text-primary-custom { color: var(--primary-color) !important; }
.border-primary-custom { border-color: var(--primary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

.video-animated-border {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 3px;
}
.video-animated-border:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 200%;
    height: 200%;
    background-image: conic-gradient(rgba(0,0,0,0), var(--primary-color) 5%, var(--primary-color) 25%, rgba(0,0,0,0) 30%);
    animation: rotate 8s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.video-animated-border.show-effect:before { opacity: 1; }
.video-animated-border .ratio {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #000;
}
@keyframes rotate {
    100% { transform: translate(-50%, -50%) rotate(1turn); }
}


.progress-bar-wrapper {
    width: 100%;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.progress-bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 6px;
    width: 0%;
    transition: width 0.1s linear;
}
.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.4rem;
    color: #000;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    font-weight: 500;
    padding: 0 10px;
    white-space: nowrap;
}

@media (max-width: 768px) { .progress-text { font-size: 1.1rem; } }

.partners-marquee {
    overflow: hidden;
    white-space: nowrap;
    background-color: #f8f9fa;
    padding: 30px 0;
    position: relative;
    direction: ltr;
}

.partners-marquee-wrapper {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
}

.partners-marquee-wrapper:hover {
    animation-play-state: paused;
}

.partners-marquee-item {
    flex-shrink: 0;
    margin: 0 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.partners-marquee-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners-marquee-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

.partners-marquee-wrapper::after {
    content: '';
    display: inline-block;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.fixed-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
}

.fixed-header-logo {
    max-height: 50px;
    width: auto;
}

.fixed-header-link {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fixed-header-link:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .fixed-header-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .fixed-header-logo {
        max-height: 40px;
    }
    
    .fixed-header span {
        font-size: 1rem !important;
    }
    
    h1[style*="font-size: 2.5rem"] {
        font-size: 1.5rem !important;
    }
    
    p[style*="font-size: 1.8rem"] {
        font-size: 1.2rem !important;
    }
}

body {
    padding-top: 80px;
}

.wistia_responsive_padding {
    padding: 56.25% 0 0 0;
    position: relative;
}

.wistia_responsive_wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-gradient) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-thumb {
    display: inline-block;
    height: 267px;
    position: relative;
    width: 150px;
}

