
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto!important;
    max-width: 100%;
}

:root {
    --bg-color: #121212;
    --accent-blue: #0059ff; 
    --light-blue: #0099ff;
    --line-color: #eee;
    --btn-size: 40px;
}

body {
    scroll-padding-top: 110px;
    background: radial-gradient(circle at center, #0a192f 0%, #020617 100%);
   overflow-x: hidden;
    overflow-y: auto!important;
    color: white;
    font-family: 'JetBrains Mono', monospace; 
    max-width: 100%;
    
}
body.no-scroll{
overflow: hidden !important; /* يمنع السكرول العمودي */
    height: 100vh !important;    /* يثبت الارتفاع على مقاس الشاشة */
    touch-action: none;
    position: fixed; /* هذا السطر هو الذي يمنع الحركة في آيفون */
    width: 100%;
}
/* إزالة حدود الضغط الزرقاء في الموبايل لجميع العناصر القابلة للضغط */
a, 
button, 
.menu-tile, 
.circle-button, 
.s-link,
[role="button"] {
    -webkit-tap-highlight-color: transparent !important; /* لمتصفحات Chrome, Safari, Opera */
    -webkit-touch-callout: none; /* يمنع ظهور قائمة "نسخ الرابط" عند الضغط المطول إذا أردت */
    outline: none !important; /* إزالة إطار التركيز الافتراضي */
}

/* إزالة الإطار الذي يظهر عند التركيز باستخدام لوحة المفاتيح (للوصولية) */
a:focus, 
button:focus {
    outline: none !important;
}
.menu-tile:active {
    transform: scale(0.95); /* تصغير بسيط جداً عند اللمس */
    background: rgba(0, 210, 255, 0.1); /* وميض خفيف جداً */
    transition: transform 0.1s;
}
header {
    margin-top: 20px;
    margin-right: 30px;
    height: 100px;
    
    display: flex;
    align-items: center;
    justify-content: space-around; 
    padding: 0 5%;
   
    
}
#hook,#why,#about{
    scroll-margin-top: 20px;
}



.logo {
    display: block;
    min-width: 250px;
    cursor: default;
}

#logo {
    float: left; 
    height: 65px;
    width: 65px;
    margin-right: 12px;
    border-radius: 50%;
    

    shape-outside: circle(50%);
    -webkit-shape-outside: circle(50%);
    
    filter: drop-shadow(0 0 5px var(--accent-blue));
}

#logo-text {
    display: block;
}

#logo-text h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    line-height: 1; 
    margin: 0;
    text-transform: uppercase;
    
    text-shadow: 0 0 8px rgba(0, 89, 255, 0.6);
}

.menu-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1001; 
}

.circle-button {
    width: var(--btn-size);
    height: var(--btn-size);
    background-color: var(--bg-color);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1002; 
    transition: all 0.3s ease;
}

.circle-button:hover {
    box-shadow: 0 0 15px var(--accent-blue);
    transform: scale(1.05);
}

.line {
    width: 20px;
    height: 2px;
    background-color: var(--light-blue);
    border-radius: 2px;
    transition: 0.3s ease;
}

.circle-button.active .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background-color: rgb(255, 255, 255);
}

.circle-button.active .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.circle-button.active .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background-color: rgb(255, 255, 255);
}
.circle-button.active {
    border-color: #0059ff;
    box-shadow: 0 0 15px var(--accent-blue);
}

.dropdown-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%; 
    height: 100%;
background-color: rgba(2, 6, 23, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    overflow-y: none; /* يسمح بالسكرول داخل المنيو فقط */
    transition: transform 0.5s ease;
    
    z-index: 1000; 
    visibility: hidden;
    opacity: 0;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
  
    padding: 20px;
    text-decoration: none;
    font-size: 2rem; 
    font-family: 'JetBrains Mono', monospace;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-bottom: none; 
   

}

.dropdown-content a:hover {
    background-color: transparent;
    color: var(--light-blue);
    letter-spacing: 5px; 
    text-shadow: 0 0 15px var(--accent-blue);
}

.menu-center-container {
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}
.menu-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.1);
    padding: 25px 10px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
   
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.full-width {
    grid-column: span 2;
    background: blue; 
    border: none;
}

.dropdown-content.show .animate-item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i) * 0.1s); /* تأخير الظهور بناءً على الترتيب */
}


.menu-tile i { font-size: 1.8rem; color: #0059ff; }
.full-width i { color: white; }
.menu-tile span { font-size: 1.21rem; font-weight: bold; letter-spacing: 1px; }

.footer-socials {
    display: flex;
    gap: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    
}


.menu-tile:hover {
    background: rgba(0, 89, 255, 0.2);
    border-color: #000279;
    transform: scale(1.05) !important;
}
.menu-wrapper {
    z-index: 1000;
}
main{
    
    
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    
    
}

#cover{
    margin-top: 20px;
    margin-left: 20px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 20px rgba(0, 89, 255, 0.2));
    animation: float 4s ease-in-out infinite; /* تتحرك للأعلى والأسفل للأبد */

    
}
        @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

#hook{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 5px 10px;

}
#hook a{
font-size: clamp(1.7rem, 5vw, 2.3rem); 
    line-height: 0.85;

}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;

}
.content h2{
color: #00d2ff;
font-size: 23px;
margin-bottom: 5px;
}
.summary-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: rgba(30, 30, 30, 0.6);
    border-left: 4px solid var(--accent-blue);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.status-code {
    font-size: 0.9rem;
    color: var(--light-blue);
    margin-bottom: 10px;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
    padding: 5px 20px;
}

.summary-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    color: #e2e8f0;
    text-align: justify;
}

.highlight {
    color: var(--accent-blue);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 89, 255, 0.5);
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 89, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 89, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 89, 255, 0);
    }
}

.cta-link {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    border: 1px solid var(--light-blue);
    color: var(--light-blue);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    
    animation: pulse-blue 2s infinite; 
}

.cta-link:hover {
    background: var(--accent-blue);
    color: #e2e8f0;
    transform: scale(1.05); 
    animation: none; 
    box-shadow: 0 0 25px var(--accent-blue);
}
.summary-text::after {
    content: "|";
    animation: blink 1s infinite;
    color: var(--accent-blue);
}

@keyframes blink {
    50% { opacity: 0; }
}


.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
}



.highlight-blue { color: var(--light-blue); }



.carousel-viewport {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    position: relative;
    
}
 
.carousel-track {
    display: flex;
    width: calc(250px * 8 + 120px); 
    gap: 15px;
    animation: scroll 25s linear infinite;
}

.carousel-track:hover, 
.carousel-track:active {
    animation-play-state: paused;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4 - 60px));
    }
}



.card {
  width: 200px;
  height: 250px;
  background: #07182E;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;

}




.card::before {
  content: '';
  position: absolute;
  width: 100px;
  background-image: linear-gradient(180deg, #0059ff, #00d2ff);
  height: 130%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.card h3 { z-index: 1; position: relative; font-size: 1.2rem;margin-bottom: 20px; color: #00d2ff;font-weight: 900; }
 .card p { z-index: 1; position: relative; text-align: center;     
    font-size: 1rem;     
    color: #cbd5e1;         
    word-spacing: 1px;
    margin-bottom: 40px;
}
.card::after {
  content: '';
  position: absolute;
  background: #07182E;
  ;
  inset: 5px;
  border-radius: 15px;
} 
.what{
    width: 100%;
}

.modern-list-container {
    width: 100%;
    max-width: 750px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 35px; 
    perspective: 1200px; 
    padding: 10px;
    
}
.modern-list-container p{
    font-size: 1.1rem;
    
  
}


.flip-card-wrapper {
    width: 100%;
    height: 100px; 
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    animation: sideFlip 10s infinite; 
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 0.8s; }
.card-3 { animation-delay: 1.6s; }

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; 
    align-items: center;
    padding: 20px 35px;
    border-radius: 15px;
     background: #07182E;
    border-left: 5px solid #00d2ff;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


.flip-card-back {
    transform: rotateY(180deg);
     background: #07182E;
    border-left: 5px solid #0059ff; 
}

@keyframes sideFlip {
    0%, 40% { transform: rotateY(0deg); }    
    50%, 90% { transform: rotateY(180deg); }  
    100% { transform: rotateY(360deg); }      
}




.flip-card-wrapper:hover .flip-card-inner {
    animation-play-state: paused;
    cursor: pointer;
}
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 450px;
    margin: 20px auto;
    
}

.p-card {
    background: #07182E;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.p-card.active {
    background: #000279;
    border-color: #00d2ff;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.15);
}

.p-tag {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 900;
    color: #444;  
    letter-spacing: 2px;
    transition: color 0.4s ease;
}

.p-card.active .p-tag {
    color: #00d2ff;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.p-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
 
    max-height: 0;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.p-card.active .p-desc {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

.buy-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #00d2ff;
    text-decoration: none;
    padding: 13px 24px;
    border: 1px solid #00d2ff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
   margin-bottom: 10px;
    animation: autoGlow 3s infinite ease-in-out;
    transition: all 0.3s ease;


}


@keyframes autoGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 210, 255, 0.2);
        background: rgba(0, 210, 255, 0);
        border-color: rgba(0, 210, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
        background: rgba(0, 210, 255, 0.1);
        border-color: rgba(0, 210, 255, 1);
        transform: scale(1.02); 
    }
}

.buy-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transform: rotate(30deg);
    animation: lightSweep 4s infinite linear;
}

@keyframes lightSweep {
    0% { left: -100%; }
    20% { left: 150%; } 
    100% { left: 150%; }
}

.sub-text {
    margin-top: 10px;
    color: #444;
    font-size: 0.7rem;
    font-family: monospace;
    opacity: 0.8;
}
.main-footer {
    background: #07182E;
    color: #e2e8f0;
    margin-top: 20px;
    border-top: 1px solid #111;
    font-family: 'Inter', sans-serif;
    border-radius: 12px 12px 0 0;
    padding: 40px 15px 20px; 
}

.footer-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
   
    display: grid;
        grid-template-columns: 1fr; 
        gap: 30px;
        text-align: center;
}
.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-logo span { color: #00d2ff; }




.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #00d2ff;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-box { margin-bottom: 20px; }

.footer-mail {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
}

.footer-mail:hover { color: #00d2ff; }

.legal-links { display: flex; 
flex-direction: row; 
        justify-content: center;
        gap: 20px;}
.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.legal-links a:hover { color: #e2e8f0; }


.foote-socials { display: flex; gap: 15px; margin-top: 20px;align-items: center;
width: 100%; justify-content: center; }
.s-link {
     width: 38px; 
        height: 38px;
    border-radius: 8px; 
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    text-decoration: none;
    animation: autoStep 6s infinite;
}

#s-insta { animation-delay: 0s; }
#s-tiktok { animation-delay: 2s; }
#s-x { animation-delay: 4s; }

@keyframes autoStep {
    0%, 30%, 100% { border-color: #1a1a1a; color: #444; transform: translateY(0); }
    15% { border-color: #00d2ff; color: #00d2ff; box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2); transform: translateY(-5px); }
}

.footer-bottom {
    max-width: 1000px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
     margin-top: 30px; 
        flex-direction: column-reverse; 
        gap: 15px;
}

.footer-bottom p { color: #333; font-size: 0.75rem; font-family: monospace; }

.status-indicator { display: flex; align-items: center; gap: 10px; }
.status-pulse {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}
  .footer-bio {
        display: none; 
         margin: 0 auto;
        font-size: 0.85rem; 
        max-width: 280px;
            color: #777;
  
    line-height: 1.7;
   
    }
      

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.status-text { font-size: 0.65rem; font-weight: 900; color: #00ff88; letter-spacing: 1px; }

  
    @media (min-width: 1100px) {
      
    header {
        position: fixed !important;
        top: 25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 1150px !important;
        height: 65px !important; /* ارتفاع ثابت ومريح للعين */
        
        background: rgba(2, 6, 23, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        
        border: 1px solid rgba(0, 89, 255, 0.4) !important;
        border-radius: 100px !important;
        
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px 0 30px !important; /* تقليل البادينج من اليمين ليقترب الزر من الحافة */
        z-index: 99999 !important;
    }

    /* إصلاح اللوجو ليكون سطر واحد */
    .logo { display: flex !important; align-items: center !important; gap: 12px !important; }
    #logo-text { display: flex !important; flex-direction: row !important; gap: 6px !important; }
    #logo-text h2 { font-size: 1.3rem !important; margin: 0 !important; white-space: nowrap !important; }

    /* تنسيق المنيو في المنتصف */
    .menu-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .menu-tile {
        background: transparent !important;
        border: none !important;
        padding: 0 10px !important;
        flex-direction: row !important;
        gap: 8px !important;
        opacity: 1 !important;
        transform: none !important;
        transition: 0.3s !important;
    }

    .menu-tile i { font-size: 0.95rem !important; color: #00d2ff !important; }
    .menu-tile span { font-size: 0.8rem !important; font-weight: bold !important; }

    /* --- إصلاح الزر (GET THE BOOK) ليظهر كأنه جزء من الشريط --- */
    .menu-tile.full-width {
        background: #0059ff !important;
        color: white !important;
        border-radius: 50px !important; /* حواف دائرية متناسقة مع الكبسولة */
        padding: 10px 22px !important; /* حجم متوازن */
        margin: 0 !important;
        width: 200px !important; /* إلغاء الـ full width الخاص بالجوال */
        height: 42px !important; /* أقل من ارتفاع الهيدر (65px) ليظهر بداخله */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: 0 4px 15px rgba(0, 89, 255, 0.4) !important;
        text-align: center !important;
      
    }

    /* إخفاء مخلفات الجوال */
    .circle-button, .footer-socials { display: none !important; }
    .dropdown-content { 
        position: static !important; 
        visibility: visible !important; 
        opacity: 1 !important; 
        background: transparent !important;
        display: flex !important;
        width: auto !important;
        height: auto !important;
        margin-right: 9rem;
    }
      .footer-socials { display: none !important; }
    body {
    padding-top: 120px; /* يترك مساحة كافية للهيدر العائم في الأعلى */
}
.footer-bio{
            display: flex;
            font-size: 1.05rem; 
        max-width: 450px;

        }
        /* 1. ضبط الحاوية الكبرى */
.carousel-viewport {
    overflow: visible !important; /* السماح بظهور الظلال والكروت */
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. تحويل المسار (Track) إلى صف ثابت */
.carousel-track {
    display: flex !important;
    flex-wrap: wrap; /* للسماح بنزول الكروت في الجوال */
    justify-content: center; /* توسيط الكروت */
    gap: 20px; /* المسافة بين الكروت */
    animation: none !important; /* إيقاف حركة الكاروسيل نهائياً */
    transform: none !important;
    width: 100% !important;
}

/* 3. تنسيق الكروت */
.card {
 
    transition: all 0.3s ease;
   
}

/* تأثير التوهج عند تمرير الماوس */
.card:hover {
    transform: translateY(-10px);
    border-color: #0059ff;
    box-shadow: 0 10px 30px rgba(0, 89, 255, 0.2);
}

/* 4. إخفاء الكروت المكررة (Duplicate Cards) */
/* سنقوم بإخفاء الكروت من رقم 5 إلى الأخير لأنها تكرار للكاروسيل القديم */
.card:nth-child(n+5) {
    display: none !important;
}
.cards-container {
        display: grid !important;
        grid-template-areas: 
            "top top top top"
            "bot1 bot2 bot3 bot4";
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        max-width: 800px !important;
        margin: 40px  auto !important;
    }

    /* الكرت النشط العلوي (بدون أنيميشن) */
    .p-card.active {
        
        grid-area: top !important;
        height: 120px !important;
        background: rgba(0, 89, 255, 0.1) !important;
        border: 2px solid #0059ff !important;
        box-shadow: 0 0 20px rgba(0, 89, 255, 0.2);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: none !important; /* إلغاء أي حركة */
    }

    /* إخفاء أي تأثيرات نبض أو وهج متحرك */
    .p-card.active::after, .p-card.active::before {
        display: none !important;
    }

    /* محتوى الكرت (النص) يظهر فوراً */
    .p-card.active .p-card-content {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* الأزرار السفلية */
    .p-card:not(.active) {
        height: 60px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease !important; /* فقط تغيير بسيط في اللون */
    }

    .p-card:not(.active):hover {
        background: rgba(255, 255, 255, 0.08) !important;
    }
/* استهداف حاوية الأيقونات */
.foote-socials {
    display: flex;
    gap: 15px; /* المسافة بين الأيقونات */
    justify-content: center;
    margin-top: 20px;
}

/* تكبير المربع (الزر) نفسه */
.foote-socials a {
    width: 60px !important;  /* القيمة القديمة قد تكون 40px */
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.3);
    transition: all 0.3s ease;
}

/* تكبير أيقونة الـ FontAwesome أو الـ SVG بداخل المربع */
.foote-socials a i, 
.foote-socials a svg {
    font-size: 28px !important; /* تكبير حجم الأيقونة نفسها */
    color: #00d2ff;
}

/* تأثير عند تمرير الماوس لجعلها متوهجة أكثر */
.foote-socials a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    background: rgba(0, 210, 255, 0.1);
}
#why,#about{
    scroll-margin-top: 140px;
}


}
