/* ==========================
   Base Styles & Variables
   ========================== */
:root {
    --primary-color: #1E88E5;
    --secondary-color: #67D6FF;
    --dark-bg: #08111F;
    --light-bg: #f8fbff;
    --white: #ffffff;
    --text-main: #1b1b1b;
    --text-muted: #666666;
    --text-light: #dddddd;
    --transition: 0.35s ease;
    --header-height: 80px;
}

/* Dark Mode Variables */
body.dark {
    --white: #0a1628;
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
    --light-bg: #0d1b2e;
    background: var(--dark-bg);
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: var(--header-height);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', 'Cairo', sans-serif;
    background: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================
   Header & Navigation
   ========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition), opacity 0.5s;
}

body.dark .header {
    background: rgba(8, 17, 31, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #eef6ff;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
}

body.dark .lang-btn {
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.35);
}

.menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}

/* Theme Switch */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* ==========================
   Hero Section
   ========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 15, 30, 0.9), rgba(6, 15, 30, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.hero-stats h2 {
    font-size: 36px;
    color: var(--secondary-color);
}

.hero-stats span {
    font-size: 14px;
    color: #ccc;
}

/* ==========================
   Sections General
   ========================== */
.services, .portfolio, .about, .why-us, .process, .faq, .contact {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 15px 0;
    color: var(--text-main);
}

.section-title p {
    color: var(--text-muted);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   Services Grid
   ========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon {
    width: 60px;
    height: 60px;
    background: #eef7ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.service-card.featured .featured-tag {
    font-size: 14px;
    opacity: 0.9;
}

.service-card.featured h1 {
    font-size: 60px;
    margin: 10px 0;
}

.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.service-card.featured a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
}

/* ==========================
   Pricing Section
   ========================== */
.pricing {
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.featured .plan-badge {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.plan-price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-card.featured .amount {
    color: #fff;
}

.period {
    font-size: 14px;
    opacity: 0.8;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 30px;
    list-style: none;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.featured .plan-features li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.plan-features i {
    color: var(--primary-color);
    min-width: 20px;
}

.pricing-card.featured .plan-features i {
    color: #fff;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-btn {
    padding: 14px 28px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.pricing-card.featured .plan-btn {
    background: #fff;
    color: var(--primary-color);
}

.plan-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================
   Portfolio Filter & Grid
   ========================== */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.portfolio-filter button {
    padding: 10px 24px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.project {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #000;
    cursor: pointer;
}

.project video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project:hover video {
    transform: scale(1.1);
    opacity: 0.7;
}

.project-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project:hover .project-overlay {
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.project-text span {
    color: #67D6FF;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 3;
}

.project-text h3 {
    color: #fff;
    margin-top: 5px;
    font-size: 22px;
    position: relative;
    z-index: 3;
}

/* ==========================
   About Section
   ========================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.experience-card h2 {
    font-size: 42px;
    color: var(--primary-color);
}

.about-content h2 {
    font-size: 38px;
    margin: 20px 0;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
}

/* ==========================
   Why Us & Process
   ========================== */
.why-us {
    background: var(--dark-bg);
    color: #fff;
}

.why-us .section-title h2 {
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    padding: 35px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.why-card:hover {
    background: var(--primary-color);
    transform: translateY(-10px);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.why-card:hover .why-icon {
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(30, 136, 229, 0.1);
    margin-bottom: -30px;
}

.process-card h3 {
    position: relative;
    margin-bottom: 15px;
}

/* ==========================
   FAQ Section
   ========================== */
.faq {
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

[dir="rtl"] .faq-question {
    text-align: right;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ==========================
   Contact Section
   ========================== */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.socials a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    background: var(--white);
    color: var(--text-main);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    padding: 18px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================
   Footer
   ========================== */
footer {
    padding: 60px 0 30px;
    background: var(--dark-bg);
    color: #fff;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin: 0 auto 20px;
}

/* ==========================
   Utilities
   ========================== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.6s;
}

.loader-logo img {
    width: 120px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

#topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

#topBtn.show {
    opacity: 1;
    visibility: visible;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    z-index: 2000;
    transition: 0.4s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Video Popup */
.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 850px;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    animation: popup .3s ease;
}

@keyframes popup {
    from{
        transform: scale(.8);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}
.close-video{
    position:absolute;
    top:15px;
    right:15px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.7);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.close-video:hover{
    background:#1E88E5;
    transform:rotate(90deg);
}

.popup-content video{
    width:100%;
    display:block;
    max-height:80vh;
    object-fit:contain;
    background:#000;
}

/* ==========================
   Responsive Design
   ========================== */
@media (max-width: 992px) {
    .navbar { display: none; }
    .menu-btn { display: block; }
    .about-container, .contact-box { grid-template-columns: 1fr; gap: 40px; }
    .hero { text-align: center; }
    .hero-buttons, .hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .features { grid-template-columns: 1fr; }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--dark-bg);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1001;
    transition: 0.4s;
}

.mobile-menu.active { right: 0; }

.mobile-menu a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #fff;
    background: none;
    border: none;
    font-size: 30px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active { opacity: 1; visibility: visible; }


/* ==========================
   Limited Offer Popup
   ========================== */
.offer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.offer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offer-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.offer-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.offer-content {
    text-align: center;
    position: relative;
}

.offer-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.offer-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.offer-popup h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.offer-popup p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.offer-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-weight: 700;
}

.countdown-number {
    font-size: 32px;
    color: var(--primary-color);
}

.offer-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.35);
}

/* ==========================
   Before & After Section
   ========================== */
.before-after {
    background: var(--white);
    padding: 100px 0;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.ba-item {
    text-align: center;
}

.ba-comparison {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.ba-before, .ba-after {
    position: relative;
    flex: 1;
}

.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ba-arrow {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
}

.ba-item h3 {
    font-size: 20px;
    color: var(--text-main);
}
[dir="rtl"] .ba-arrow i::before {
    content: "\f060"; /* Font Awesome arrow-left */
}

html[dir="ltr"] .ba-arrow i::before {
    content: "\f061"; /* Font Awesome arrow-right */
}
.contact-form button:disabled {
    opacity: .7;
    cursor: not-allowed;
    pointer-events: none;
}
/* Portfolio Hover Animation */

.project{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.project video{
    transition: transform .7s ease, filter .7s ease;
}

.project:hover video{
    transform: scale(1.08);
    filter: brightness(.55);
}

.project-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;

    opacity:0;
    transition:.45s ease;
}

.project:hover .project-overlay{
    opacity:1;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.6);

    opacity:0;
    transition:.4s ease;

    width:70px;
    height:70px;
    border-radius:50%;
    background:#1E88E5;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.project:hover .play-btn{
    opacity:1;
    transform:translate(-50%,-50%) scale(1);
}

.project-text{
    transform:translateY(35px);
    opacity:0;
    transition:.45s ease;
}

.project:hover .project-text{
    transform:translateY(0);
    opacity:1;
}

.project-text h3{
    color:#fff;
    margin-top:6px;
}

.project-text span{
    color:#67D6FF;
}
/* Mobile Header Fix */
@media (max-width: 768px) {
    
    .header .container {
        height: 70px;
           .project-overlay{
    opacity:1;
}

.project-text{
    opacity:1;
    transform:translateY(0);
}

.play-btn{
    opacity:1;
    transform:translate(-50%,-50%) scale(.9);
}
    }

    .contact-btn {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 30px;
    }

    .nav-actions {
        gap: 8px;
    }

    .lang-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .theme-switch {
        transform: scale(.85);
    }

    .logo img {
        height: 34px;
    }
}
.project video{
transition:.5s;
}

.project:hover video{
transform:scale(1.08);
}
.price-note{
font-size:13px;
color:#1E88E5;
margin-top:6px;
font-weight:600;
}

.pricing-note{
margin-top:40px;
text-align:center;
font-size:17px;
font-weight:600;
color:var(--text);
}

.pricing-note i{
color:#1E88E5;
margin-right:8px;
}