/* Intro landing — modern layout (RTL default). Brand colors: Blade :root --main, --hover */

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    color: inherit;
}

a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:focus {
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:focus {
    outline: none;
}

.padd-0 {
    padding-left: 0;
    padding-right: 0;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.flex-grow-1 {
    flex-grow: 1;
}

.sec-padd {
    padding-top: clamp(48px, 6vw, 88px);
    padding-bottom: clamp(48px, 6vw, 88px);
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.f-b {
    font-weight: 700;
}

.main-color {
    color: var(--main) !important;
}

.grey-color {
    color: var(--intro-muted);
}

.font-18 {
    font-size: 18px;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block;
}

.owl-carousel {
    direction: ltr;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown {
    display: inline-block;
}

.dropdown-menu {
    float: none;
    text-align: start;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

p {
    margin: 0;
}

textarea {
    resize: none;
}

body {
    direction: rtl;
    text-align: right;
    font-family: "Cairo", "Segoe UI", system-ui, sans-serif;
    color: var(--intro-text);
    font-size: 16px;
    line-height: 1.7;
    background: var(--intro-bg);
    text-shadow: none;
}

body.o-auto {
    overflow: auto;
}

/* Force landing text to white */
.intro-page,
.intro-page p,
.intro-page span,
.intro-page li,
.intro-page a,
.intro-page h1,
.intro-page h2,
.intro-page h3,
.intro-page h4,
.intro-page h5,
.intro-page h6,
.intro-page .grey-color,
.intro-page .intro-section-title,
.intro-page .intro-about__lead,
.intro-page .intro-how__caption,
.intro-page .card-body {
    color: #ffffff !important;
}

/* ---------- Header ---------- */
.intro-header {
    padding: 12px 0;
    background: var(--intro-glass);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--intro-border);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

header.intro-header {
    background: var(--intro-glass);
}

.intro-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.intro-brand__logo,
.the-logo {
    max-height: 56px;
    width: auto;
    margin-inline-end: 12px;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav_bar a {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    color: var(--intro-text);
}

.nav_bar a:hover {
    color: var(--main);
    background: rgba(255, 255, 255, 0.06);
}

.nav_bar a.active {
    color: #ffffff !important;
    background: color-mix(in srgb, var(--main) 12%, transparent);
}

.intro-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-lang .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--intro-border);
    background: var(--intro-surface-hover);
    font-weight: 600;
    color: var(--intro-text);
}

.dropdown-menu {
    padding: 8px;
    border: 1px solid var(--intro-border);
    border-radius: var(--intro-radius-md);
    box-shadow: var(--intro-shadow-lg);
    top: 12px !important;
    min-width: 140px;
    background: var(--intro-surface);
    z-index: 1200;
}

.intro-lang .dropdown-menu {
    right: 0;
    left: auto;
    display: none;
    position: absolute;
    top: calc(100% + 10px) !important;
}

.dropdown-menu .dropdown-item {
    border-radius: var(--intro-radius-sm);
    padding: 10px 14px;
    color: var(--intro-text);
}

.dropdown-menu .dropdown-item:hover {
    background: color-mix(in srgb, var(--main) 10%, transparent);
    color: var(--main);
}

.close-open-nav {
    width: 28px;
    height: 22px;
    margin-inline-start: 8px;
    position: relative;
    display: none;
}

.close-open-nav > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.close-open-nav > div span {
    width: 100%;
    height: 3px;
    background: var(--main);
    border-radius: 3px;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.close-open-nav.active span:first-of-type {
    transform: translateY(9px) rotate(45deg);
}

.close-open-nav.active span:nth-child(2) {
    opacity: 0;
}

.close-open-nav.active span:last-of-type {
    transform: translateY(-9px) rotate(-45deg);
}

.body-content {
    margin-top: var(--intro-header-h);
}

.intro-page {
    overflow-x: hidden;
    perspective: 1200px;
    position: relative;
}

.intro-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background:
        radial-gradient(
            520px 320px at var(--s3d-light-x, 50%) var(--s3d-light-y, 20%),
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04) 35%,
            transparent 70%
        );
    mix-blend-mode: screen;
    opacity: 0.65;
    transition: opacity 0.35s ease;
}

.intro-hero,
.intro-about,
.bacg_section,
.bacg_section2,
.intro-partners,
.intro-contact {
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease;
}

body.scroll-3d-active .s3d-section {
    opacity: 0.15;
    filter: blur(1.5px) brightness(0.86);
    position: relative;
}

body.scroll-3d-active .s3d-section.is-visible {
    opacity: 1;
    filter: blur(0) brightness(1);
}

body.scroll-3d-active .s3d-section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    width: min(72%, 860px);
    height: 64px;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        color-mix(in srgb, var(--main) 35%, transparent) 0%,
        transparent 70%
    );
    filter: blur(16px);
    opacity: 0.38;
}

body.scroll-3d-active .s3d-section.is-visible::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.14) 46%,
        rgba(255, 255, 255, 0.06) 52%,
        transparent 62%
    );
    transform: translateX(var(--s3d-sweep-x, -120%));
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    mix-blend-mode: screen;
    opacity: 0.45;
}

/* ---------- Hero / Slider ---------- */
.intro-hero {
    margin: 0;
}

.intro-hero-slide {
    min-height: min(560px, 85vh);
    display: flex;
    align-items: stretch;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--main) 8%, var(--intro-bg)) 0%,
        var(--intro-bg) 55%,
        var(--intro-surface) 100%
    );
}

.intro-hero-slide__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(118px, 12vw, 170px) 15px clamp(52px, 6vw, 82px);
    transform-style: preserve-3d;
}

.intro-hero-slide__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--main);
    margin-bottom: 12px;
}

.intro-hero-slide__text h3 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--intro-text);
    margin-bottom: 16px;
    transform: translateZ(24px);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.intro-hero-slide__text p {
    font-size: 1.05rem;
    color: var(--intro-muted);
    max-width: 420px;
    transform: translateZ(14px);
}

.intro-hero-slide__media {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 420px;
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
    will-change: transform;
}

.intro-hero-slide__media::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: var(--intro-radius-lg);
    background: linear-gradient(145deg, var(--main), color-mix(in srgb, var(--hover) 70%, var(--main)));
    opacity: 0.25;
    z-index: 0;
}

.intro-hero-slide__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--intro-radius-lg);
    box-shadow: var(--intro-shadow-lg);
    transform: translateZ(40px);
}

.intro-hero-slide__media::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -18px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    filter: blur(16px);
    z-index: 0;
}

/* Owl slider chrome */
.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.owl-nav > div {
    width: 44px;
    height: 44px;
    background: var(--intro-surface-hover);
    border: 1px solid var(--intro-border);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: 0.2s;
    border-radius: 50%;
    box-shadow: var(--intro-shadow);
}

.owl-nav > div:hover {
    background: var(--main);
    color: var(--white);
    border-color: var(--main);
}

.owl-nav > div i {
    color: var(--intro-muted);
}

.owl-nav > div:hover i {
    color: var(--white);
}

.owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0;
    background: rgba(148, 163, 184, 0.35);
}

.owl-carousel .owl-dot.active {
    background: var(--main);
    width: 28px;
    border-radius: 999px;
}

/* ---------- Section chrome ---------- */
.intro-section-head {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-section-head__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.intro-section-head h2,
.intro-section-head .intro-section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--intro-text);
    margin-bottom: 12px;
}

.intro-section-head p {
    color: var(--intro-muted);
    font-size: 1.02rem;
}

.the_title {
    max-width: 640px;
    margin: 0 auto 36px;
    text-align: center;
}

.the_title h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--intro-text);
}

.the_title p {
    color: var(--intro-muted);
}

/* About */
.intro-about {
    background: linear-gradient(180deg, var(--intro-bg-muted) 0%, var(--intro-bg) 100%);
}

.intro-about__copy h2 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--intro-text);
}

.intro-about__copy .intro-about__lead {
    color: var(--intro-muted);
    line-height: 1.85;
}

.intro-about__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
}

.intro-about__visual img {
    width: 100%;
    border-radius: var(--intro-radius-md);
    object-fit: cover;
    box-shadow: var(--intro-shadow);
}

.intro-about__visual img:first-child {
    grid-row: span 1;
    min-height: 280px;
}

.intro-about__visual img:last-child {
    margin-bottom: 24px;
    min-height: 220px;
}

/* Services */
.bacg_section {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--main) 12%, var(--intro-bg)) 0%,
        var(--intro-surface) 100%
    );
    position: relative;
}

.bacg_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, color-mix(in srgb, var(--main) 18%, transparent), transparent 70%);
    pointer-events: none;
}

.bacg_section .container {
    position: relative;
    z-index: 1;
}

.bacg_section .the_title h3,
.bacg_section .intro-section-head h2 {
    color: var(--intro-text);
}

.bacg_section .the_title p,
.bacg_section .intro-section-head p {
    color: var(--intro-muted);
}

.intro-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.box-servess,
.intro-service-card {
    background: var(--intro-surface-hover);
    border-radius: var(--intro-radius-md);
    padding: 28px 22px;
    min-height: 100%;
    border: 1px solid var(--intro-border);
    box-shadow: var(--intro-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.box-servess:hover,
.intro-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--intro-shadow-lg);
}

.box-servess::after {
    display: none;
}

.intro-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--main) 15%, transparent);
    margin-bottom: 18px;
    transform: translateZ(18px);
}

.intro-service-card__icon img {
    max-width: 36px;
    height: auto;
}

.box-servess img {
    max-width: 48px;
    margin: 0 0 16px;
}

.box-servess h6,
.intro-service-card h6 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--intro-text);
}

.box-servess p,
.intro-service-card p {
    color: var(--intro-muted);
    font-size: 0.95rem;
}

/* How it works */
.intro-how__strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

.intro-how__item {
    flex: 1 1 140px;
    max-width: 200px;
    text-align: center;
    padding: 20px 16px;
    background: var(--intro-surface-hover);
    border-radius: var(--intro-radius-md);
    border: 1px solid var(--intro-border);
    box-shadow: var(--intro-shadow);
    transition: 0.2s;
    transform-style: preserve-3d;
    will-change: transform;
}

.intro-how__item:hover {
    border-color: color-mix(in srgb, var(--main) 35%, var(--intro-border));
}

.intro-how__item img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    border: 3px solid color-mix(in srgb, var(--main) 20%, transparent);
}

.intro-how__item .intro-how__caption {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--intro-text);
}

.how_work {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    background: none;
    overflow: visible;
    margin-bottom: 0;
}

.how_work li {
    width: auto;
    margin: 0;
}

/* FAQ */
.bacg_section2 {
    background: linear-gradient(180deg, var(--intro-bg) 0%, var(--intro-bg-muted) 100%);
}

.intro-faq .nav-pills {
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    background: var(--intro-surface-hover);
    width: auto;
    min-width: 120px;
    padding: 10px 20px;
    border-radius: 999px !important;
    text-align: center;
    margin: 0;
    height: auto;
    line-height: 1.4;
    border: 1px solid var(--intro-border);
    color: var(--intro-text);
    font-weight: 600;
}

.nav-link.active {
    background-image: var(--main2) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.accordion .card {
    margin: 0 0 12px;
    border-radius: var(--intro-radius-md);
    border: 1px solid var(--intro-border);
    box-shadow: none;
    overflow: hidden;
    background: var(--intro-surface-hover);
    transform-style: preserve-3d;
    will-change: transform;
}

.accordion .card-header {
    padding: 0;
    background: var(--intro-surface-hover);
    border: none;
}

.accordion .card-header button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: start;
    padding: 16px 18px;
    font-weight: 700;
    color: var(--intro-text);
    gap: 12px;
    transform: translateZ(8px);
}

.accordion .card-header button::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--main);
    transition: transform 0.2s;
}

.accordion .card-header button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.accordion .card-header button[aria-expanded="true"] {
    color: var(--main);
}

.card-body {
    padding: 0 18px 18px;
    color: var(--intro-muted);
    line-height: 1.75;
}

/* Partners */
.intro-partners__track .item {
    padding: 12px;
}

.intro-partners__track .item img {
    max-height: 52px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(0.35) brightness(1.15);
    opacity: 0.82;
    transition: 0.25s;
    transform: translateZ(12px);
}

.intro-partners__track .item img:hover {
    filter: grayscale(0) brightness(1.1);
    opacity: 1;
}

/* Contact */
.intro-contact {
    background: linear-gradient(180deg, var(--intro-bg-muted) 0%, var(--intro-bg) 100%);
}

.intro-contact__panel {
    background: var(--intro-surface-hover);
    border-radius: var(--intro-radius-lg);
    padding: clamp(28px, 4vw, 40px);
    border: 1px solid var(--intro-border);
    box-shadow: var(--intro-shadow-lg);
    transform-style: preserve-3d;
    will-change: transform;
}

/* Scroll-based 3D motion */
.scroll-3d-active .intro-hero {
    transform: translate3d(0, var(--s3d-hero-y, 0px), var(--s3d-hero-z, 0px))
        rotateX(var(--s3d-hero-rx, 0deg));
}

.scroll-3d-active .intro-about {
    transform: translate3d(0, var(--s3d-about-y, 0px), var(--s3d-about-z, 0px))
        rotateX(var(--s3d-about-rx, 0deg));
}

.scroll-3d-active .bacg_section {
    transform: translate3d(0, var(--s3d-services-y, 0px), var(--s3d-services-z, 0px))
        rotateX(var(--s3d-services-rx, 0deg));
}

.scroll-3d-active .bacg_section2 {
    transform: translate3d(0, var(--s3d-faq-y, 0px), var(--s3d-faq-z, 0px))
        rotateX(var(--s3d-faq-rx, 0deg));
}

.scroll-3d-active .intro-partners {
    transform: translate3d(0, var(--s3d-partners-y, 0px), var(--s3d-partners-z, 0px))
        rotateX(var(--s3d-partners-rx, 0deg));
}

.scroll-3d-active .intro-contact {
    transform: translate3d(0, var(--s3d-contact-y, 0px), var(--s3d-contact-z, 0px))
        rotateX(var(--s3d-contact-rx, 0deg));
}

.scroll-3d-active .intro-hero-slide__text {
    transform: translate3d(0, var(--s3d-hero-text-y, 0px), var(--s3d-hero-text-z, 0px));
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-3d-active .intro-hero-slide__media {
    transform: translate3d(0, var(--s3d-hero-media-y, 0px), var(--s3d-hero-media-z, 0px))
        rotateY(var(--s3d-hero-media-ry, 0deg));
}

.scroll-3d-active .intro-service-card,
.scroll-3d-active .intro-how__item,
.scroll-3d-active .accordion .card,
.scroll-3d-active .intro-contact__panel {
    transform: translate3d(0, 0, var(--s3d-card-z, 0px))
        rotateX(var(--s3d-card-rx, 0deg))
        rotateY(var(--s3d-card-ry, 0deg));
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-control {
    border: 1px solid var(--intro-border);
    padding: 14px 16px;
    border-radius: var(--intro-radius-sm);
    background: var(--intro-bg);
    color: var(--intro-text);
    font-size: 15px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
    color: var(--intro-muted);
    opacity: 0.85;
}

.form-control:focus {
    border-color: var(--main);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--main) 18%, transparent);
}

textarea.form-control {
    height: 160px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-image: var(--main2);
    color: var(--white) !important;
    min-width: 180px;
    max-width: 100%;
    padding: 0 24px;
    border-radius: 999px;
    text-align: center;
    margin: 24px auto 0;
    height: 48px;
    line-height: 1;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--main) 35%, transparent);
}

.btn-main:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* Footer */
footer.intro-footer {
    color: #ffffff;
    padding-top: 48px;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--main) 55%, #06090f),
        #06090f 92%
    );
}

.intro-footer__grid {
    padding-bottom: 32px;
}

.intro-footer__brand img.logo_footer {
    max-width: 120px;
    margin: 0 0 20px;
}

.social-m {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-m li {
    width: auto;
    margin: 0;
}

.social-m li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s;
}

.social-m li a:hover {
    background: var(--main);
}

.Tfooter {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0.85;
}

.link-footer li {
    margin-bottom: 10px;
    opacity: 0.92;
}

.link-footer a:hover {
    text-decoration: underline;
}

.under_footer {
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.under_footer a {
    color: #fff;
    font-weight: 600;
}

/* Custom landing toast (success message) */
#toast-container {
    z-index: 2500;
}

#toast-container > .intro-toast {
    width: min(520px, calc(100vw - 24px));
    padding: 18px 20px 18px 64px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    font-family: "Cairo", "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0.1px;
    opacity: 1;
    background-image: none !important;
}

#toast-container > .toast-success.intro-toast {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--main) 65%, #0f172a),
        color-mix(in srgb, var(--hover) 55%, #0b1d2f)
    ) !important;
    color: #ffffff !important;
}

#toast-container > .toast-success.intro-toast::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#toast-container > .intro-toast .toast-message {
    text-align: start;
    margin: 0;
}

#toast-container > .intro-toast .toast-progress {
    height: 4px;
    opacity: 1;
    background: color-mix(in srgb, var(--main) 60%, #ffffff) !important;
}

#toast-container > .intro-toast .toast-close-button {
    color: #ffffff !important;
    opacity: 0.85;
    text-shadow: none;
}

#toast-container > .intro-toast {
    animation: introToastIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

#toast-container > .intro-toast.toast-hide {
    animation: introToastOut 0.28s ease forwards;
}

@keyframes introToastIn {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes introToastOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    background: var(--intro-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    animation: introSpin 0.9s linear infinite;
    width: 96px;
    height: auto;
}

/* Inner pages (privacy, legal, etc.) */
.intro-inner-page {
    padding-top: 24px;
    padding-bottom: clamp(48px, 8vw, 80px);
}

.intro-inner-page__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--intro-text);
    margin-bottom: 28px;
    text-align: center;
}

.intro-inner-page__body {
    background: var(--intro-surface-hover);
    border-radius: var(--intro-radius-lg);
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--intro-border);
    box-shadow: var(--intro-shadow);
    line-height: 1.85;
    color: var(--intro-muted);
}

.intro-inner-page__body h2,
.intro-inner-page__body h3 {
    color: var(--intro-text);
    margin-top: 1.25em;
    margin-bottom: 0.5em;
}

.intro-inner-page__body img {
    max-width: 100%;
    height: auto;
}

.intro-delete-actions {
    gap: 16px;
}

.intro-delete-actions .btn {
    min-width: 120px;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
}

@keyframes introSpin {
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0) rotateY(-4deg);
    }
    50% {
        transform: translateY(-10px) rotateY(4deg);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--intro-bg);
}

::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--main) 45%, #94a3b8);
    border-radius: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    :root {
        --intro-header-h: 64px;
    }

    .close-open-nav {
        display: block;
    }

    .nav_bar {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        width: min(300px, 88vw);
        height: 100%;
        top: 0;
        right: 0;
        padding: 88px 24px 32px;
        margin: 0;
        background: linear-gradient(
            180deg,
            color-mix(in srgb, var(--main) 45%, #0a0e14),
            #06090f
        );
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 200;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        box-shadow: var(--intro-shadow-lg);
    }

    .nav_bar li {
        margin: 0;
    }

    .nav_bar a {
        color: #fff !important;
        border-radius: var(--intro-radius-sm);
    }

    .nav_bar a:hover,
    .nav_bar a.active {
        background: rgba(255, 255, 255, 0.12);
        color: #fff !important;
    }

    .nav_bar.active {
        transform: translateX(0);
    }

    .intro-hero-slide__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-hero-slide__text p {
        margin-left: auto;
        margin-right: auto;
    }

    .intro-hero-slide__media {
        max-width: 360px;
    }

    .intro-about__visual {
        margin-top: 28px;
    }

    .intro-services__grid {
        grid-template-columns: 1fr;
    }

    .owl-nav {
        bottom: 56px;
    }
}

@media (max-width: 767.98px) {
    .sec-padd {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .intro-how__strip {
        flex-direction: column;
        align-items: center;
    }

    .intro-how__item {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .nav-link {
        width: 100%;
    }
}
