/* ============================================================
   01. RESET & VARIABLES
   ============================================================ */
/* ============================================================
   02. BASE & SCROLLBAR
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
video {
    max-width: 100% !important;
}

:root {
    --bg-dark: #060e23;
    --white: #ffffff;
    --navy: #0f1327;
    --grad-blue-teal: linear-gradient(180deg, #043cff 0%, #00e3b2 100%);
    --font: 'DIN Next LT Arabic', sans-serif;
}

.stroke {
    position: relative;
    border-radius: 16px;
    background: rgba(15, 19, 39, 0.16);
    backdrop-filter: blur(10px);
}

.stroke::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, .2) 37%,
            rgba(255, 255, 255, 1) 69%,
            rgba(255, 255, 255, .2) 100%);

    opacity: .4;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--white);
    font-family: var(--font);
    direction: rtl;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 3px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

body::-webkit-scrollbar-thumb {
    background: #1f4097;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #ff8533;
}

/* ============================================================
   03. UTILITIES
   ============================================================ */
.grad-text {
    background: var(--grad-blue-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 47px;
    color: var(--grad-blue-teal);
    text-align: right;
    margin-bottom: 40px;
    padding: 0 5%;
}

.section-titile-grad-text {
    background: var(--grad-blue-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 9px;
 
}

.section-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 100px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0F1327;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}



.btn-primary:hover {
    background: linear-gradient(110.11deg, #043CFF 0%, #00E3B2 100%);
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(110deg, #043cff, #00e3b2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #007ae3;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #007ae3;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
}

.top-section {
    padding-top: calc(70px + clamp(10px, 1.5vh, 20px));
}

.bg-trans {
    background: #f5f6f800;
}


.glass-bg{
    background: rgba(255, 255, 255, .07) !important;
}


.border-colored {
    border-radius: 16px;
    position: relative;
}


.border-colored::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(110.11deg, #043CFF 0%, #00E3B2 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .top-section {
        padding-top: 90px;

    }
}