* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Cairo', sans-serif;
    background: #ffffff;
}

.header {
   
      /*background: linear-gradient(90deg, #04724a, #0c2c2b);*/
    background:rgba(255, 255, 255, 0.822);
   padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
   
    z-index: 1000;
    backdrop-filter: blur(10px);
 
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* الشعار */
.logo img {
    height: 70px;
    width: auto;
    transform: scale(1.25) rotate(2deg);
    
}
.logo img:hover {
    transform: scale(1.35) rotate(2deg);
    filter: drop-shadow(0 0 10px #d7d71c72);
}

/* القائمة */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
}

.nav a:hover {
    color: #d4af37;
}

/* خط تحت عند التحويم */
.nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #d4af37;
    bottom: -5px;
    right: 0;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* ايقونة تسجيل الدخول */
.login-icon {
    background: #1b7363;
    padding: 8px 14px;
    border-radius: 6px;
}

.login-icon:hover {
    background: #12746a;
}

/* زر القائمة */
.menu-toggle {
    display: none;
    font-size: 24px;
     color: #000;
    cursor: pointer;
}

/* زر الاغلاق */
.close-btn {
    display: none;
}

/* موبايل */
@media(max-width: 768px) {

    .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
  background: rgba(250, 253, 250, 0.933);
backdrop-filter: blur(4px);
    flex-direction: column;
    padding-top: 60px;
    gap: 25px;
  transition: left 0.4s cubic-bezier(.77,0,.18,1);
}

.nav.active {
    left: 0;
}

    .menu-toggle {
        display: block;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 15px;
        left: 15px;
        background: red;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }
}



/* Hero Section */
.hero {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
     background: linear-gradient(90deg, rgb(4, 140, 122), #0a4835);
    color: white;
    padding-top: 80px; /* لإزاحة الهيدر */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 28px;
    margin-right: 15px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

/* زر التحميل */
.btn-download {
    background-color: DarkCyan;
}

.btn-download:hover {
   transform: scale(1.15);
    filter: drop-shadow(0 0 8px #d4af37);
}

/* زر عرض الباقات */
.btn-pricing {
    background-color: transparent;
    border: 2px solid DarkCyan;
}

.btn-pricing:hover {
   
     transform: scale(1.25) rotate(2deg);
    filter: drop-shadow(0 0 10px #d4af37);
}

/* صورة الأداة */
.hero-image {
    flex: 1;
    margin-top: 45px;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    transition: transform 0.5s ease;
}

/* تأثير تكبير الصورة عند Hover */
.hero-image img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media(max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons a {
        margin: 10px 5px;
    }
}
/* الدخول التدريجي للعناصر */
@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* تطبيق الأنيميشن على العناصر */
.hero-text h1 {
    animation: slideDown 1s ease-out forwards;
}

.hero-text p {
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-buttons a {
    animation: slideUp 1.4s ease-out forwards;
}

.hero-image img {
    animation: float 3s ease-in-out infinite;
}




/* Brands Section */
.brands {
    background-color: white;
    color: #0f172a;
    padding: 80px 0;
}

.brands-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.brands h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.brands p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #475569;
}

/* Grid الشعارات */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: center;
}

/* بطاقة كل شعار */
.brand-card {
   
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Hover effect */
.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .brands h2 {
        font-size: 2rem;
    }
    .brands p {
        font-size: 1rem;
    }
}
















/* Features Section */
.features {
    background: linear-gradient(135deg, #008b8b, #20b2aa); /* DarkCyan Gradient */
    color: white;
    padding: 80px 0;
}

.features-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.features h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: white;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

/* Grid البطاقات */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* البطاقة */
.feature-card {
    background: rgb(251, 255, 253);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    display: flex;
     color: rgb(8, 8, 8);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px; /* يجعل جميع البطاقات متساوية */
}

.feature-card img {
    max-width: 80px;
    height: 80px;
    margin-bottom: 15px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Hover Effect للبطاقات */
.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.feature-card:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #ffffff);
}

/* Responsive */
@media(max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features h2 {
        font-size: 2rem;
    }
}












/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f0fdfa, #e0f7f7); /* خلفية فاتحة جذابة */
    color: #0f172a;
    padding: 80px 0;
}

.pricing-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.pricing .title-underline {
    width: 80px;
    height: 4px;
    background-color: DarkCyan;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

/* Grid البطاقات */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* بطاقة السعر */
.pricing-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .duration {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: DarkCyan;
}

.pricing-card .description {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 25px;
    text-align: center;
}

.pricing-card .btn-buy {
    background-color: DarkCyan;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.pricing-card .btn-buy:hover {
    background-color: #006666;
}

/* Hover Effect للبطاقة */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing h2 {
        font-size: 2rem;
    }
}
/* قائمة النقاط داخل بطاقات الأسعار */
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: right; /* لأن العربية من اليمين */
}

.features-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
    color: #0f172a;
}

.features-list li::before {
    content: "✔️";
    position: absolute;
    right: 0;
    color: DarkCyan;
    font-size: 1.1rem;
}








/* Tutorials Section */
.tutorials {
    background-color: #f8fafc; /* خلفية فاتحة مريحة للعين */
    color: #0f172a;
    padding: 80px 0;
}

.tutorials-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.tutorials h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tutorials .title-underline {
    width: 80px;
    height: 4px;
    background-color: DarkCyan;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

/* Grid الكروت */
.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* كرت الشرح */
.tutorial-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.tutorial-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tutorial-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 10px 20px 10px;
    text-align: center;
}

/* Hover effect */
.tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: DarkCyan;
}

/* Responsive */
@media(max-width: 1200px) {
    .tutorials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 992px) {
    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tutorial-card {
        min-height: 230px;
    }

    .tutorial-card img {
        height: 130px;
    }

    .tutorial-card h3 {
        font-size: 0.9rem;
        margin: 10px;
    }

    .tutorials h2 {
        font-size: 2rem;
    }
}




    /* قسم الوكلاء */

.qst-agents{

padding:80px 20px;

background:linear-gradient(135deg,#93f0dd,#0f172a);

color:rgb(5, 0, 0);
margin-top:50px;
text-align:center;

}

/* العنوان */

.qst-agents-title{

font-size:32px;

margin-bottom:10px;

}

.qst-agents-desc{

opacity:0.8;

margin-bottom:50px;

}

/* الشبكة */

.qst-agents-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

gap:25px;

max-width:1200px;

margin:auto;

}

/* الكرت */

.qst-agent-card{

background:white;

color:#111;

padding:25px;

border-radius:14px;

transition:0.3s;

display:flex;

flex-direction:column;

align-items:center;

}

/* صورة الوكيل */

.qst-agent-card img{

width:70px;

height:70px;

object-fit:contain;

margin-bottom:12px;

}

/* الاسم */

.qst-agent-card h3{

font-size:15px;

margin-bottom:15px;

}

/* الايقونات */

.qst-agent-icons{

display:flex;

gap:10px;

}

.qst-agent-icons a{

width:34px;

height:34px;

display:flex;

align-items:center;

justify-content:center;

background:#f1f5f9;

border-radius:50%;

color:#333;

transition:0.3s;

}

.qst-agent-icons a:hover{

background:DarkCyan;

color:white;

}

/* حركة الكرت */

.qst-agent-card:hover{

transform:translateY(-8px);

box-shadow:0 10px 25px rgba(0,0,0,0.25);

}


/* Footer */
.footer {
   background: linear-gradient(90deg, #04724a, #0c2c2b);
    color: white;
    padding: 30px 0;
    position: relative;
    text-align: center;
}

.footer-container p {
    margin: 0;
    font-size: 1rem;
}

/* زر العودة للأعلى */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: DarkCyan;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    z-index: 1000;
}

/* Hover effect */
#scrollToTop:hover {
    background-color: #006666;
    transform: rotate(360deg);
}


/*   soshal */
