:root {
    --blue: #003366; 
    --orange: #ff6600;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #fdfdfd;
    overflow-x: hidden; 
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.floating-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 30px;
    z-index: 1000;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.5);
    transition: 0.4s ease;
}

.floating-nav.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0 0 25px 25px;
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 45px; }
.logo span { font-weight: 900; color: var(--blue); font-size: 1.1rem; }

.desktop-menu ul { display: flex; list-style: none; gap: 25px; }
.desktop-menu a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
}
.desktop-menu a:hover, .desktop-menu a.active { color: var(--orange); }

.call-btn {
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}
.call-btn:hover { background: var(--orange); transform: translateY(-3px); }
.mobile-sidebar {
    position: fixed;
    top: -100%; 
    left: 0;
    width: 100%;
    background: white;
    padding: 40px 20px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    border-radius: 0 0 30px 30px;
}
.mobile-sidebar.active { top: 0; }

.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.sidebar-logo { font-weight: 900; color: var(--blue); font-size: 1.5rem; }
#closeBtn { font-size: 1.5rem; color: var(--orange); cursor: pointer; }

.sidebar-links { list-style: none; text-align: center; }
.sidebar-links li { margin-bottom: 25px; }
.sidebar-links a { text-decoration: none; color: var(--blue); font-size: 1.3rem; font-weight: 800; }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(5px);
}
.mobile-overlay.active { display: block; }
.hero {
    height: 100vh;
    display: flex;
    align-items: center; 
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-anim {
    position: absolute;
    inset: 0;
    background: url('images/WhatsApp\ Image\ 2026-05-09\ at\ 2.11.57\ PM.jpeg') center/cover; /* ضعي صورتك */
    filter: blur(5px);
    z-index: -2;
    animation: zoomHero 15s infinite alternate ease-in-out;
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0,0,0,0.4));
    z-index: -1;
}

.hero-main-box { color: white; padding: 0 20px; z-index: 10; max-width: 850px; }
.hero-main-box h1 { font-size: 3.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.hero-main-box h1 span { color: var(--orange); }
.hero-main-box p { font-size: 1.3rem; opacity: 0.9; line-height: 1.7; margin-bottom: 35px; }

.hero-btns { display: flex; gap: 20px; justify-content: center; }

.btn-orange { background: var(--orange); color: white; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; transition: 0.3s; }
.btn-white { border: 2px solid white; color: white; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; transition: 0.3s; }

.btn-orange:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255, 102, 0, 0.4); }
.btn-white:hover { background: white; color: var(--blue); }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.menu-toggle span { width: 30px; height: 3px; background: var(--blue); border-radius: 10px; }
@media (max-width: 992px) {
    .desktop-menu, .d-none-mobile { display: none; }
    .menu-toggle { display: flex; }
    .hero-main-box h1 { font-size: 2.2rem; }
    .hero-main-box p { font-size: 1rem; }
    .hero-btns { flex-direction: column; }
}

.reveal-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.about-premium {
    padding: 140px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
    z-index: 5;
}

.image-mask {
    width: 100%;
    height: 600px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 40%; 
    overflow: hidden;
    box-shadow: 30px 30px 80px rgba(0, 51, 102, 0.15);
    border: 8px solid white;
    transition: 0.6s ease-in-out;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 1s ease;
}

.about-visual:hover .about-img {
    transform: scale(1);
}

.about-visual:hover .image-mask {
    border-radius: 30% 70% 40% 60% / 50% 40% 60% 50%;
}

.deco-circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floating 6s infinite alternate ease-in-out;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--blue);
    color: white;
    padding: 20px 35px;
    border-radius: 20px;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10;
}

.experience-badge .num { font-size: 2.5rem; font-weight: 900; display: block; color: var(--orange); }
.experience-badge .txt { font-size: 0.9rem; font-weight: 600; }
.section-tag {
    color: var(--orange);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    color: var(--blue);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title span { color: var(--orange); }

.about-desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.about-features li {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.icon-wrap {
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.8rem;
    transition: 0.4s;
    flex-shrink: 0;
}

.about-features li:hover .icon-wrap {
    background: var(--orange);
    color: white;
    transform: rotateY(180deg) scale(1.1);
}

.text-wrap h4 { color: var(--blue); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.text-wrap p { color: #777; line-height: 1.6; }

.btn-primary-about {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 18px 50px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.2);
}

.btn-primary-about:hover {
    background: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}
@keyframes floating {
    from { transform: translateY(0); }
    to { transform: translateY(30px); }
}

.reveal-left { opacity: 0; transform: translateX(100px); transition: 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67); }
.reveal-right { opacity: 0; transform: translateX(-100px); transition: 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67); }

.show-reveal { opacity: 1; transform: translateX(0); }
@media (max-width: 992px) {
    .about-wrapper { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .image-mask { height: 450px; }
    .section-title { font-size: 2.2rem; }
    .about-features li { flex-direction: column; align-items: center; }
    .experience-badge { left: 50%; transform: translateX(-50%); bottom: -30px; }
}
.floating-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 100px;
    padding: 12px 40px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}
.floating-nav.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%; 
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 5%; 
}
.desktop-menu a {
    position: relative;
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    padding: 5px 0;
    transition: 0.3s;
}

.desktop-menu a.active {
    color: var(--orange) !important;
}
.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: 0.3s ease;
}

.desktop-menu a.active::after {
    width: 100%; 
}
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(80px); } 
.reveal-right { transform: translateX(-80px); }
.active-anim {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #001d3d 0%, #003366 50%, #001d3d 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    color: white;
}

.badge {
    background: var(--orange);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.title-glow {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.title-glow span { color: var(--orange); }

.section-p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.8;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


.product-card:hover .card-img img {
    transform: scale(1.1) rotate(5deg);
}
.card-img {
    height: 300px; 
    width: 100%;
    padding: 0; 
    overflow: hidden; 
    display: block; 
    position: relative;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.product-card:hover .card-img img {
    transform: scale(1.15); 
}
.card-info {
    padding: 30px;
    color: white;
}

.card-info h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--orange);
}

.card-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.weight {
    font-weight: 800;
    color: white;
    font-size: 0.9rem;
}

.saudi-made {
    font-size: 0.85rem;
    color: #2ecc71; 
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .title-glow { font-size: 2.2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .card-img { height: 220px; }
}.final-contact-section {
    position: relative;
    padding: 120px 0 50px;
    background: #001220; 
    overflow: hidden;
    color: white;
}
.background-animation span {
    position: absolute;
    width: 20vw; height: 20vw;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: move-bg 10s infinite alternate;
}
.background-animation span:nth-child(1) { top: -10%; left: -10%; background: rgba(0, 51, 102, 0.3); }
.background-animation span:nth-child(2) { bottom: -10%; right: -10%; background: rgba(255, 102, 0, 0.2); }

@keyframes move-bg { to { transform: translate(50px, 50px) scale(1.2); } }

.ultra-title { font-size: 3.5rem; font-weight: 900; text-align: center; margin-bottom: 20px; }
.ultra-title span { color: #ff6600; text-shadow: 0 0 20px rgba(255, 102, 0, 0.4); }
.ultra-p { text-align: center; max-width: 700px; margin: 0 auto 60px; font-size: 1.2rem; opacity: 0.8; }
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 100px;
    z-index: 10;
    position: relative;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(-15px) scale(1.02);
    border-color: #ff6600;
}

.card-icon {
    font-size: 2.5rem;
    color: #ff6600;
    width: 80px;
}

.card-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 5px; }
.card-text p { font-size: 1rem; opacity: 0.7; }

.card-action-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.3s;
}
.card-action-btn:hover { background: #ff6600; box-shadow: 0 0 20px #ff6600; }
.exclusive-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.copyright { font-size: 1rem; font-weight: 600; margin-bottom: 10px; opacity: 0.8; }
.designer { font-size: 1.1rem; font-weight: 800; }
.designer a { color: #ff6600; text-decoration: none; transition: 0.3s; }
.designer a:hover { text-shadow: 0 0 10px #ff6600; }
.fixed-floating-btns {
    position: fixed;
    bottom: 30px;
    left: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.4s;
    animation: float-pulse 2s infinite alternate ease-in-out;
}

.wa-fab { background: #25d366; animation-delay: 0.2s; }
.call-fab { background: #ff6600; animation-delay: 0.4s; }
.prod-fab { background: #004488; animation-delay: 0.6s; }

.fab-btn:hover { transform: scale(1.2) rotate(10deg); }

@keyframes float-pulse { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@media (max-width: 768px) {
    .contact-card { flex-direction: column; text-align: center; gap: 20px; }
    .ultra-title { font-size: 2.2rem; }
}
.why-us-creative {
    padding: 120px 0;
    background: #000b18; 
    position: relative;
    overflow: hidden;
    color: white;
}
.dynamic-aurora {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.1), transparent 50%),
                radial-gradient(circle at 10% 20%, rgba(0, 51, 102, 0.4), transparent 40%);
    filter: blur(100px);
    z-index: 1;
    animation: auroraMove 15s infinite alternate;
}

@keyframes auroraMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(50px, 50px); }
}

.why-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.glow-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.glow-title span {
    color: var(--orange);
    background: linear-gradient(to right, #ff6600, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text { font-size: 1.2rem; opacity: 0.7; max-width: 700px; margin: 20px auto 0; }
.why-grid-exclusive {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.why-card-item {
    position: relative;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer;
}
.card-glass {
    position: absolute;
    inset: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.why-card-item::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 150px; height: 150px;
    background: var(--clr);
    filter: blur(50px);
    transform: translate(-50%, -50%);
    opacity: 0.2;
    transition: 0.5s;
}

.why-card-item:hover::before {
    width: 100%; height: 100%;
    opacity: 0.5;
}

.why-card-item:hover {
    transform: translateY(-15px) rotateX(10deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.why-card-item .content {
    position: relative;
    z-index: 10;
    padding: 40px;
    text-align: center;
}

.icon-box {
    font-size: 3rem;
    color: var(--clr);
    margin-bottom: 25px;
    transition: 0.5s;
    text-shadow: 0 0 15px var(--clr);
}

.why-card-item:hover .icon-box {
    transform: scale(1.2) rotateY(360deg);
    color: white;
}

.why-card-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.why-card-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
    .glow-title { font-size: 2.2rem; }
    .why-card-item { height: auto; padding: 20px 0; }
    .why-grid-exclusive {
    grid-template-columns: repeat(1, minmax(280px, 1fr));
}
}
.video-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #001d3d 0%, #003366 100%);
    color: white;
    overflow: hidden;
}

.title-main { font-size: 3rem; font-weight: 900; text-align: center; margin-bottom: 60px; }
.title-main span { color: var(--orange); }
.cinema-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.video-frame {
    background: #000;
    border-radius: 30px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255, 102, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.frame-top {
    background: #111;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dots { display: flex; gap: 6px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: #ff4b2b; }
.dots span:nth-child(2) { background: #ffb400; }
.dots span:nth-child(3) { background: #2ecc71; }

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
    background: #000;
}

.showcase-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: fill; 
    opacity: 0;
    transition: 0.8s ease;
}

.showcase-video.active { opacity: 1; }
.video-controls-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: 0.3s;
    opacity: 0;
}

.video-frame:hover .video-controls-overlay { opacity: 1; }

.play-trigger, .mute-trigger {
    width: 60px; height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; cursor: pointer;
    margin: 0 15px;
    box-shadow: 0 0 20px rgba(255,102,0,0.5);
    transition: 0.3s;
}

.mute-trigger { background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.play-trigger:hover { transform: scale(1.1); }
.frame-bottom { padding: 15px 25px; background: #111; }
.progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.progress-inner { width: 0%; height: 100%; background: var(--orange); transition: 0.1s linear; }
.video-captions { margin-top: 40px; text-align: center; }
.caption { display: none; animation: fadeIn 0.5s forwards; }
.caption.active { display: block; }
.caption h3 { font-size: 1.8rem; color: var(--orange); margin-bottom: 10px; }
.caption p { font-size: 1.1rem; opacity: 0.8; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
    .video-frame { border: 4px solid rgba(255,255,255,0.1); }
    .title-main { font-size: 2rem; }
}
.strategy-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #001d3d 0%, #002b5b 100%);
    color: white;
    overflow: hidden;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.strategy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.strategy-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.strategy-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffd700; 
}

.strategy-card p, .strategy-list li {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.strategy-list {
    list-style: none;
    text-align: right;
}

.strategy-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
}

.strategy-list li::before {
    content: '✦';
    position: absolute;
    right: 0;
    color: var(--orange);
}

@media (max-width: 768px) {
    .vision-content { flex-direction: column; text-align: center; }
    .vision-2030-container { padding: 30px 20px; }
    .strategy-card { padding: 30px 20px; }
}
.vision-2030-container {
    background: white;
    border-radius: 40px;
    padding: 60px 20px;
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 50px;
}

.vision-centered-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-logo-img {
    max-height: 180px;
    width: 350px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: floating-vision 4s infinite alternate ease-in-out;
    transition: 0.5s;
}


@keyframes floating-vision {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}

.saudi-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}
@media (max-width: 768px) {
    .vision-logo-img {
        max-height: 120px; 
    }
    .vision-2030-container {
        padding: 40px 10px;
    }
}