
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

*{
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

body ::selection{
    background-color: #f7cf31;
    color: #000000;
}

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: absolute;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #f7cf31;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}


.nav-links a:hover {
    color: #f7cf31;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #fff;
    padding: 6px 10px;
    font-size: 20px;
}

/* الخط قبل الظهور */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* المسافة بين الخط والنص */
    width: 0%;
    height: 2px;
    background: #f7cf31;
    transition: width 0.3s ease;
}

/* لما تقف عليه */
.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-pricing {
    color: #fff;
    text-decoration: none;
}

/* Start Free Now button in navbar */
.nav-start {
    background:  linear-gradient(120deg, #8a6f02, #fcdc40, #e0a102);;
    padding: 10px 20px;
    border-radius: 20px;
    color: #000;
    text-decoration: none;
    font-weight: bold;

    /* smooth animation */
    transition: transform 1s ease, box-shadow 0.35s ease;
}

/* Apply same glow + zoom as the main CTA button */
.nav-start:hover {
    transform: scale(1.12);
    box-shadow: 
        0 0 25px #ffd900cc,
        0 0 45px #ffd90099,
        0 0 70px #ffd90066;
}


/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    background-image: url("images/C3857FCD-6CA9-486B-B9F3-94D2D0C007A6.jpg");
    background-size: cover;
    background-position: center;
    animation: bgZoom 10s ease-in-out infinite alternate;
}

/* Background Zoom Animation */
@keyframes bgZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.07); }
}

/* Dark overlay */
/* .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #00000070, #00000080);
} */

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
    padding: 20px;

    /* Start hidden for animation */
    opacity: 0;
    transform: translate(-50%, -40%);
    animation: fadeUp 1.8s ease forwards;
}

/* Text animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ffffffc7;
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(120deg, #8a6f02, #fcdc40, #e0a102);
    color: #000;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    
    /* smoother animation */
    transition: transform 1s ease, box-shadow 0.35s ease;
}

/* Strong Glow + Soft Smooth Zoom */
.cta-btn:hover {
    transform: scale(1.12); /* bigger but still smooth */
    filter: brightness(1.15);
    box-shadow: 
        0 0 25px #ffd900cc,
        0 0 45px #ffd90099,
        0 0 70px #ffd90066; /* stronger glow */
}

/* ===== Responsive ===== */
@media (max-width: 990px) {
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .cta-btn {
        font-size: 16px;
        padding: 12px 26px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}



/* UltraWide 34" Dell styles */
@media (min-width: 3440px) {
    .hero-content h1 {
        white-space: nowrap;
        position: relative;
        right: 280px;
        font-size: 90px;
    }
}

/* -----------Laptop Size----------- */


@media (max-width: 1366px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 13px;
    }
}


/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Services section
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* إعدادات أساسية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
}

/* القسم */
.products-section {
    text-align: center;
    padding: 60px 20px;
    margin-top: 100px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    color: #f7cf31;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #f7cf31;
    opacity: 0.8;
    margin-bottom: 50px;
}

/* الكونتينر */
.products-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* الكروت */
.card {
    background: rgba(20, 20, 20, 0.8);
    width: 330px;
    padding: 25px;
    border-radius: 20px;
    text-align: left; /* ← خلي النص والزرار على الشمال */
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 0 25px rgba(255, 200, 50, 0.2);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(255, 200, 50, 0.4);
}

.card-icon {
    width: 320px;
    margin-bottom: 10px;
    position: relative;
    right: 20px;
    mix-blend-mode: screen;
}

/* العناوين */
/* .card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #f7cf31;
    
} */

/* النص */
.card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: -20px;
}

/* زرار */
.card .btn1 {
    align-self: flex-start; /* ← يحط الزرار على الشمال */
    padding: 10px 28px;
    background: linear-gradient(120deg, #8a6f02, #fcdc40, #e0a102);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s ease;
    color: #000;
}

.card .btn1:hover {
    transform: scale(1.07);
    box-shadow: 0 0 15px rgb(253, 209, 33);
}

/* موبايل */
@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .products-container {
        flex-direction: column;
        align-items: center;
    }
}




/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Reels section
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */



.projects{
    background-color: #000000 ;
    margin-top: 200px;
}

.projects .title{
    text-transform: uppercase;
    text-align: center;
}

.projects h2{
    color: linear-gradient(120deg, #8a6f02, #fcdc40, #e0a102)
}

.portal{
    display: flex ;
    justify-content: center ;
    flex-direction: row ;
    flex-wrap: wrap ;
    position: relative;
   
}


.review{
    background-color: #000000 ;
    width: 18em ;
    box-shadow: 0 5px 20px rgba(1 1 1 / 25%) ;
    border-radius: 10px ;
    padding: 25px ;
    margin: 15px ;
}

.review-img .thumb{
    width: 250px ;
    position: relative ;
    right: 5px;
    margin-top: 20px ;
    margin-bottom: 10px ;
    transition: 0.7s ease ;
    filter: opacity(0.6) ;
    
}

.review-img .thumb:hover{
    transform: scale(1.1);
    filter: opacity(1);
}

.review-img .play-but{
    width: 50px;
    transform: translate(95px,-125px);
    cursor: pointer;
    margin-bottom: -50px;
    pointer-events: none;
}

.review-det {
    text-align: center;
}

.review-det h3{
    color: #ffffff ;
    font-size: 1em ;
    font-weight: 500 ;
    margin-bottom: 10px;
}

.review-det p{
    color: #ffffff;
    font-size: 0.8em;
    font-weight: 100;
    opacity: 0.7;
}

.video-player{
    width: 300px;
    transform: translate(120%,-50%);
    display: none;
    
}

.video-player video{
    width: 1000px;
    height: 580px;
    position: absolute;
    right: -350px;
    bottom: -150px;
    background: rgba(0,0,0,.9);
   
    
}

.close-but{
    position: absolute;
    bottom: 390px;
    right: 0px;
    width: 30px;
    cursor: pointer;
    
}


.videomodel{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    z-index:9999;
}


/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
iFrame section
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* Popup container */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Popup content (bigger & centered nicely) */
.popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;  
    height: 80vh;      /*  ارتفاع كبير  . مكنش موجود*/  
    background: #111;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.39);
    overflow: hidden;
    animation: popupIn 1s ease;
}

/* Smooth animation */
@keyframes popupIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Bigger & modern video frame */
.popup-content iframe {
    width: 100%;
    height: 100%; /* . كان 600.. ارتفاع كبير */
    border-radius: 15px;
    border: 2px solid #222;
}

/* Modern close button */
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    background: #ffd000;
    color: white;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: 0.2s ease;
}

/* Close button hover effect */
.close-btn:hover {
    color: #000;
    transform: scale(1.1);
}

body.noscroll {
    overflow: hidden;
}

/* 📱 نسخة الموبايل */
@media (max-width: 600px) {
    .video-popup-content {
        width: 95%;
        height: 60vh;   /* أصغر شوية للموبايل */
        border-radius: 15px;
    }

    .close-popup {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }

    #popupVideo {
        height: 100%;
    }

    .video-popup {
        padding: 10px;
    }
}


/* ------------Laptop Size---------------- */

@media (max-width: 1366px) {
    .popup-content {
        max-width: 900px;
    }
}



/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Choose us section
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */



/* Reset */



/* Main Section */
.choose-us {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 200px;
    padding: 80px 20px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* 👇 الصورة التي تريدها */
    background-image: url("images/21547ghdt.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(200px);
    transition: 1s ease;
}

/* When visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* Content */
.content2 h1 {
    font-size: 42px;
    font-weight: 400;
    color: white;
    margin-bottom: 18px;
}

.content2 p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 35px;
    text-align: left;
}

/* Buttons */
.buttons2 {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Primary yellow button with gradient */
.btn.yellow {
    background: linear-gradient(120deg, #8a6f02, #fcdc40, #e0a102);
    color: #000;
    font-weight: bold;
    transition: transform 0.7s ease, box-shadow 0.35s ease;
}

.btn.yellow:hover {
    filter: brightness(1.15);
    transform: scale(1.12);
}

/* Secondary dark button */
.btn.dark {
    background: linear-gradient(120deg, #0c0c0c, #313131, #0a0a0a);
    border: 1px solid #666;
    color: white;
    transition: transform 0.7s ease, box-shadow 0.35s ease;
}

.btn.dark:hover {
    filter: brightness(1.50);
    transform: scale(1.12);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 32px;
    }

    .content p {
        font-size: 16px;
    }

    .buttons2 {
        flex-direction: column;
    }

    .buttons2 .btn {
        width: 100%;
        max-width: 270px;
    }
}



/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
About us section
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */




/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
}

/* Scroll Reveal Base */
.show {
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease;
}

/* When visible */
.show.active {
    opacity: 1;
    transform: translateY(0);
}

/* aboutus SECTION */
.aboutus {
    margin-top: 150px;
    text-align: center;
    padding: 100px 20px;
    background-image: url("images/59548fde.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1 {
    font-size: 2.7rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.aboutus p {
    max-width: 600px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

/* CARDS */
.cards2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD STYLE */
.card2 {
    width: 340px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    box-shadow: 0 0 25px rgba(255, 200, 50, 0.2);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card2:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(255, 200, 50, 0.4);
}


.cards2 p {
    opacity: 0.5;
}

/* IMAGE */
.img-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== ANIMATION BEFORE APPEARING ========== */
.fade-card2 {
    opacity: 0;
    transform: translateY(20px);
}

.from-left {
    transform: translateX(-150px);
}

.from-right {
    transform: translateX(150px);
}

/* ACTIVE WHEN VISIBLE */
.fade-card2.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
    transition: 2s ease-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .card { width: 100%; max-width: 350px; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
}



/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Contact section
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */




//* Rest */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
}


/* Scroll Reveal Base */
.show {
    opacity: 0;
    transform: translateY(100px);
    transition: 1.5s ease;
}

/* When visible */
.show.active {
    opacity: 1;
    transform: translateY(0);
}
/* contact section */
.contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-top: 100px;
}



/* card3 */
.card3 {
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 70px 40px;
    text-align: center;

    background-image: url(images/89745der.png);
    background-size: cover;
    background-position: center;
}

/* العنوان */
.card3 h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

/* الوصف */
.card3 p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* الزر */
.btn {
    display: inline-block;
    background: linear-gradient(120deg, #8a6f02, #fcdc40, #e0a102);
    padding: 12px 25px;
    border-radius: 20px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.7s ease, box-shadow 0.35s ease;
}

.btn:hover {
    filter: brightness(1.15);
    transform: scale(1.12);
}

/* ميديا كويري للموبايل */
@media (max-width: 768px) {
    .card3 {
        padding: 50px 25px;
    }

    .card3 h1 {
        font-size: 32px;
    }

    .card3 p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 22px;
        border-radius: 16px;
    }
}


/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Footer section
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */



/* ----- Footer Styling ----- */
.footer {
    background: linear-gradient(to bottom, #1a120c, #000000);
    color: white;
    padding: 40px 20px;
    margin-top: 120px;
    margin-bottom: 120px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
    margin: 10px 20px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.footer-column a {
    display: block;
    color: #c5c5c5;
    text-decoration: none;
    font-size: 14px;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

/* Logo Column */
.logo-column {
    min-width: 200px;
}

.logo {
    width: 60px;
    margin-bottom: 10px;
}

/* ----- Responsive Design ----- */
@media (max-width: 900px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        margin: 20px;
    }
}

@media (max-width: 600px) {
    .footer-column {
        min-width: 100%;
    }
}