
/* ---------- CSS Custom Properties ---------- */
:root {
    --ot-orange:       #FF6B35;
    --ot-orange-light: #FF8555;
    --ot-orange-rgb:   255, 107, 53;

    --ot-bg:           #0a0a0a;
    --ot-surface:      #141414;
    --ot-surface-2:    #1a1a1a;
    --ot-surface-alt:  #0f0f0f;
    --ot-border:       rgba(255,255,255,0.08);
    --ot-border-hover: rgba(255,255,255,0.15);

    --ot-text:         #ffffff;
    --ot-text-muted:   rgba(156,163,175,1); /* gray-400 */
    --ot-text-dimmer:  rgba(107,114,128,1); /* gray-500 */

    --ot-transition:   cubic-bezier(0.4, 0, 0.2, 1);
    --ot-radius:       1rem;       /* 16px */
    --ot-radius-lg:    1.5rem;     /* 24px */
    --ot-radius-full:  9999px;
}

/* ---------- Global Reset / Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--ot-bg);
    color: var(--ot-text);
    font-family: 'Inter', 'Poppins', 'Tajawal', sans-serif;
    margin: 0;
    padding-top: 100px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--ot-orange);
    color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--ot-bg);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

a {
    text-decoration: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.ot-eyebrow {
    display: inline-block;
    color: var(--ot-orange);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ot-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--ot-text);
    margin-bottom: 1rem;
}

.ot-section-title-orange{
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--ot-orange);
    margin-bottom: 1rem;
}

.ot-section-desc {
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 680px;
}

.ot-text-gradient {
    background: linear-gradient(135deg, var(--ot-orange), var(--ot-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Layout ---------- */
.ot-section {
    padding: 3rem 0 0 0;
}

.ot-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ---------- Buttons ---------- */
.btn-ot-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ot-orange);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--ot-radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--ot-transition);
}
.btn-ot-primary:hover {
    background: var(--ot-orange-light);
    transform: scale(1.02);
    box-shadow: 0 0 24px rgba(var(--ot-orange-rgb), 0.35);
}

.btn-ot-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: var(--ot-radius-full);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.2s var(--ot-transition);
}
.btn-ot-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* ---------- Cards ---------- */
.ot-card {
    background: white;
    border: 1px solid var(--ot-border);
    border-radius: var(--ot-radius-lg);
    transition: all 0.3s var(--ot-transition);
}
.ot-card:hover {
    border-color: var(--ot-border-hover);

}

/* ---------- Navbar ---------- */
#ot-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.25rem 0;
    background: transparent;
    transition: all 0.4s var(--ot-transition);
}

#ot-navbar.is-scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.65rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@media (max-width: 991px) {
    #ot-navbar {
        padding: 0.85rem 0;
    }
    #ot-navbar.is-scrolled {
        padding: 0.6rem 0;
    }
}

/* Logo */
.ot-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--ot-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}
.ot-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ot-text);
}
.ot-logo-text span {
    color: var(--ot-orange);
}

/* Nav links */
.ot-nav-link {
    color: var(--ot-text-muted);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    transition: color 0.15s;
}
.ot-nav-link:hover,
.ot-nav-link.active {
    color: var(--ot-text);
}

/* Language toggle */
.ot-lang-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ot-text-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--ot-radius-full);
    padding: 0.35rem 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}
.ot-lang-btn:hover {
    color: var(--ot-text);
    border-color: rgba(255,255,255,0.2);
}

/* ---------- Mobile overlay ---------- */
.ot-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.ot-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ---------- Hero ---------- */
#ot-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ot-bg);
}

.ot-hero-bg {
    position: absolute;
    inset: 0;
}

.ot-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.ot-hero-gradient-v {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,.8) 0%, transparent 50%, rgba(10,10,10,1) 100%);
}

.ot-hero-gradient-h {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,.9) 0%, transparent 50%, rgba(10,10,10,.9) 100%);
}

.ot-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 800px;
    height: 800px;
    background: rgba(var(--ot-orange-rgb), 0.08);
    border-radius: 50%;
    filter: blur(150px);
    animation: ot-pulse-glow 8s ease-in-out infinite;
}

@keyframes ot-pulse-glow {
    0%, 100% {
        opacity: .5;
        transform: translate(-50%,-50%) scale(1);
    }
    50%       {
        opacity: .9;
        transform: translate(-50%,-50%) scale(1.05);
    }
}

.ot-hero-tag {
    display: inline-block;
    color: var(--ot-orange);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    background: rgba(var(--ot-orange-rgb), 0.1);
    border: 1px solid rgba(var(--ot-orange-rgb), 0.2);
    border-radius: var(--ot-radius-full);
    margin-bottom: 1.5rem;
}

.ot-hero-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.ot-hero-sub {
    font-size: 1.3rem;
    color: white;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ot-hero-stats {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 500px;
}

.ot-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ot-text);
    line-height: 1;
}

.ot-stat-number span {
    color: var(--ot-orange);
}

.ot-stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

/* ---------- Stats Band ---------- */


.ot-stats-grid > div {
    border-right: 1px solid rgba(255,255,255,0.05);
}
.ot-stats-grid > div:last-child {
    border-right: none;
}
@media (max-width: 768px) {
    .ot-stats-grid > div {
        border-right: none;
    }
}

.ot-counter {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--ot-text);
}
.ot-counter .suffix {
    color: var(--ot-orange);
}

/* ---------- Services ---------- */
#ot-services {
    background: white;
}

.ot-service-card {
    padding: 1.75rem;
    cursor: default;
    transition: transform 0.3s var(--ot-transition), border-color 0.3s;
}
.ot-service-card:hover {
    transform: translateY(-6px);
}

.ot-service-icon {
    width: 56px;
    height: 56px;
    background: rgba(var(--ot-orange-rgb), 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--ot-orange);
    transition: background 0.3s;
}
.ot-service-card:hover .ot-service-icon {
    background: rgba(var(--ot-orange-rgb), 0.2);
}

.ot-service-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--ot-orange);
}

.ot-service-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0;
    color: var(--ot-bg);
}

/* ---------- Projects ---------- */
#ot-projects {
    background: var(--ot-surface-alt);
}

.ot-project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--ot-radius-lg);
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    transition: border-color 0.5s;
}
.ot-project-card:hover {
    border-color: var(--ot-border-hover);
}

.ot-project-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.ot-project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ot-transition);
}
.ot-project-card:hover .ot-project-img-wrap img {
    transform: scale(1.05);
}
.ot-project-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.5) 50%, transparent 100%);
}

.ot-project-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.ot-project-category {
    display: inline-block;
    color: var(--ot-orange);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ot-project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ot-project-desc {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ot-project-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.1);
    border-radius: var(--ot-radius-full);
    padding: 0.25rem 0.65rem;
}

.ot-project-cta {
    font-size: 0.85rem;
    color: var(--ot-orange);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
    padding: 0;
}
.ot-project-cta:hover {
    color: var(--ot-orange-light);
}
.ot-project-cta svg {
    transition: transform 0.2s;
}
.ot-project-cta:hover svg {
    transform: translate(2px,-2px);
}

/* ---------- Clients & Stats Combined ---------- */
#ot-clients {
    background: #FFFFFF;
    color: #0a0a0a;
}

#ot-clients .ot-section-title {
    color: #0a0a0a;
}

.ot-counter-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--theme-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ot-counter-large .suffix {
    color: var(--theme-color3, var(--theme-color));
    font-size: 0.6em;
    margin-inline-start: 0.1em;
}

.ot-stat-label-modern {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.4);
}

.ot-divider-light {
    height: 1px;
    background: rgba(0,0,0,0.06);
    width: 100%;
}

.ot-client-cell {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem 1.25rem;
    transition: all 0.3s var(--ot-transition);
    text-decoration: none;
    margin: -0.5px;
    min-height: 180px;
}

.ot-client-cell:hover {
    background: rgba(0, 0, 0, 0.015);
    border-color: rgba(0, 0, 0, 0.1);
}

.ot-client-logo {
    max-height: 55px;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.ot-client-cell:hover .ot-client-logo {
    transform: scale(1.05);
}

.ot-client-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.45);
    text-align: center;
    transition: color 0.3s;
}

.ot-client-cell:hover .ot-client-name {
    color: var(--ot-orange);
}

/* ---------- Contact ---------- */
#ot-contact {
    background: var(--ot-bg);
    position: relative;
}

.ot-contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 600px;
    background: rgba(var(--ot-orange-rgb), 0.04);
    border-radius: 50%;
    filter: blur(200px);
    pointer-events: none;
}

.ot-contact-info-icon {
    width: 42px;
    height: 42px;
    background: rgba(var(--ot-orange-rgb), 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ot-orange);
    flex-shrink: 0;
}

.ot-contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ot-text-dimmer);
    margin-bottom: 0.2rem;
}

.ot-contact-value {
    font-size: 0.9rem;
    color: var(--ot-text);
}

.ot-contact-secondary {
    font-size: 0.75rem;
    color: var(--ot-text-dimmer);
    margin-top: 0.2rem;
}

/* Contact form */
.ot-form-card {
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    border-radius: var(--ot-radius-lg);
    padding: 2rem;
}

.ot-form-label {
    display: block;
    font-size: 0.65rem;
    color: var(--ot-text-dimmer);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ot-form-control {
    width: 100%;
    background: var(--ot-surface-2);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--ot-text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.ot-form-control::placeholder {
    color: rgba(255,255,255,.25);
}
.ot-form-control:focus {
    border-color: var(--ot-orange);
    box-shadow: 0 0 0 3px rgba(var(--ot-orange-rgb), 0.15);
}

textarea.ot-form-control {
    resize: vertical;
    min-height: 120px;
}

.ot-form-success {
    text-align: center;
    padding: 3rem 1rem;
}
.ot-form-success svg {
    color: #22c55e;
    width: 48px;
    height: 48px;
}

/* ---------- Footer ---------- */
#ot-footer {
    background: var(--ot-bg);
    border-top: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
    max-width: 100%;
}

.ot-footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    transition: all 0.3s;
}
.ot-footer-social:hover {
    background: rgba(var(--ot-orange-rgb),.2);
    color: var(--ot-orange);
}

.ot-footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.ot-footer-link {
    font-size: 0.875rem;
    color: var(--ot-text-muted);
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.75rem;
}
.ot-footer-link:hover {
    color: var(--ot-text);
}

.ot-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 2rem;
    margin-top: 4rem;
}

.ot-footer-copy {
    font-size: 0.75rem;
    color: var(--ot-text-dimmer);
}

/* ---------- AOS override for dark theme ---------- */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* ---------- Scroll-to-top ---------- */
#ot-scroll-top {
    position: fixed;
    bottom: 1.25rem;
    inset-inline-end: 1.25rem;
    width: 42px;
    height: 42px;
    background: var(--ot-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 900;
    border: none;
}
#ot-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
#ot-scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--ot-orange-rgb),.4);
}

/* ---------- Utilities ---------- */
.ot-divider {
    height: 1px;
    background: rgba(255,255,255,.06);
}
.gap-ot-1 {
    gap: 0.5rem;
}
.gap-ot-2 {
    gap: 1rem;
}
.gap-ot-3 {
    gap: 1.5rem;
}

/* ---------- RTL adjustments ---------- */
[dir="rtl"] .ot-project-cta:hover svg {
    transform: translate(-2px,-2px);
}

.other_lang_badge{
    color:white !important
}
.ot-dropdown-item {
    color: var(--ot-text-muted) !important;
    font-size: .875rem !important;
    border-radius: 8px !important;
    padding: .5rem .85rem !important;
    transition: background .15s, color .15s !important;
}
.ot-dropdown-item:hover {
    background: rgba(255,255,255,.05) !important;
    color: var(--ot-text) !important;
}

/* ── Mega menu container ── */
.ot-mega-menu {
    background: var(--ot-surface) !important;
    border: 3px solid rgb(179, 179, 179,0.5) !important;
    border-radius: var(--ot-radius-lg) !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.6) !important;
    min-width: 600px;
    margin-top: .5rem !important;
    overflow: hidden;
}

/* RTL: open from right edge */
[dir="rtl"] .ot-mega-menu {
    right: 0;
    left: auto;
}
[dir="ltr"] .ot-mega-menu {
    left: 0;
    right: auto;
}

.ot-mega-inner {
    min-height: 260px;
}

/* ── Left sidebar: list of sub-items ── */
.ot-mega-list {
    width: 220px;
    max-height: 600px;
    flex-shrink: 0;
    border-inline-end: 1px solid var(--ot-border);
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    overflow: auto;
}

.ot-mega-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .85rem;
    border-radius: 10px;
    color: var(--ot-text-muted);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, color .15s;
    text-decoration: none;
}
.ot-mega-item:hover,
.ot-mega-item.is-active {
    background: rgba(var(--ot-orange-rgb), .1);
    color: var(--ot-text);
}
.ot-mega-item.is-active .ot-mega-icon {
    color: var(--ot-orange);
}

.ot-mega-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255,255,255,.04);
    color: var(--ot-text-dimmer);
    flex-shrink: 0;
    font-size: .85rem;
    transition: color .15s;
}
[dir=rtl] .ot-mega-icon {
    transform: rotate(180deg);
}

.ot-mega-label {
    flex: 1;
    line-height: 1.3;
}

/* ── Right panel: detail ── */
.ot-mega-detail-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ot-mega-detail {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ot-transition);
}
.ot-mega-detail.is-visible {
    opacity: 1;
    pointer-events: auto;
    position: relative; /* take space when visible */
}

/* Image area */
.ot-mega-img-wrap {
    position: relative;
    height: 140px;
    overflow: hidden;
    flex-shrink: 0;
}
.ot-mega-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ot-transition);
}
.ot-mega-item.is-active ~ .ot-mega-detail-wrap .ot-mega-img-wrap img,
.ot-mega-detail.is-visible .ot-mega-img-wrap img {
    transform: scale(1.04);
}
.ot-mega-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--ot-surface) 100%);
}

/* Detail body */
.ot-mega-detail-body {
    padding: 1.25rem;
    flex: 1;
}
.ot-mega-detail-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--ot-text);
}
.ot-mega-detail-desc {
    font-size: .8rem;
    color: white !important;
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ot-mega-cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ot-orange) !important;
    transition: gap .2s;
}
.ot-mega-cta:hover {
    gap: .6rem;
}

/* ── Mobile nav groups ── */
.ot-mobile-group {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
}

.ot-mobile-parent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--ot-text);
    font-size: 1rem;
    font-weight: 500;
    padding: .85rem 1rem;
    cursor: pointer;
    transition: color .15s;
}
.ot-mobile-parent:hover {
    color: var(--ot-orange);
}

.ot-mobile-chevron {
    transition: transform .25s var(--ot-transition);
    flex-shrink: 0;
}
.ot-mobile-parent:not(.collapsed) .ot-mobile-chevron {
    transform: rotate(180deg);
}

.ot-mobile-child {
    display: flex;
    align-items: center;
    padding: .65rem 1.25rem;
    font-size: .875rem;
    color: var(--ot-text-muted);
    border-top: 1px solid rgba(255,255,255,.04);
    transition: color .15s, background .15s;
    text-decoration: none;
}
.ot-mobile-child:hover {
    color: var(--ot-text);
    background: rgba(255,255,255,.03);
}

/* Scroll progress bar */
#ot-scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--ot-orange);
    width: 0%;
    transition: width .1s linear;
    z-index: 2;
}


.ph-body img,
iframe {
    max-width: 100%;
    height: auto;
}

.btn-theme{
    background: var(--theme-color) !important;
    color: #fff !important;

}


.text-theme {
    color:var(--ot-orange) !important;
}

.text-theme2 {
    color: var(--theme-color2) !important;
}

.text-theme3 {
    color: var(--theme-color3) !important;
}

.rounded-theme{
    border-radius: 16px;
}

/* ---------- Page Header (Hero) ---------- */
.ph-header {
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ot-bg);
}

.ph-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.ph-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
}

[dir="rtl"] .ph-gradient {
    background: linear-gradient(to left, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.ph-header-content {
    position: relative;
    z-index: 3;
}

.ph-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: capitalize;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ph-header--no-image {
    height: 250px;
    background: linear-gradient(135deg, var(--ot-bg) 0%, var(--ot-surface) 100%);
}


.triangle-clip {
    width: 100%;
    height: 90px;
    background-color: white;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    position: relative;
    top: 2px;
}

.slant-separator {
    height: 100px;
    background: white;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.curve-separator {
    height: 80px;
    background: black;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}