/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{

    font-family:'Outfit',sans-serif;

    background:#07070d;

    color:#fff;

    overflow-x:hidden;

}

/* ===========================
   الخلفية
=========================== */

.background-grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:70px 70px;

    z-index:-10;

}

.glow{

    position:fixed;

    width:500px;

    height:500px;

    border-radius:50%;

    filter:blur(170px);

    z-index:-9;

}

.glow1{

    top:-220px;

    right:-180px;

    background:#7c3aed;

}

.glow2{

    bottom:-220px;

    left:-180px;

    background:#4c1d95;

}

/* ===========================
   HEADER
=========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:28px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    backdrop-filter:blur(12px);

    background:rgba(10,10,15,.25);

    z-index:999;

}

.logo{

    font-size:32px;

    font-weight:800;

    letter-spacing:2px;

}

nav{

    display:flex;

    gap:45px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.35s;

    font-size:17px;

}

nav a:hover{

    color:#9d6cff;

}

/* ===========================
   HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

}

.hero-left{

    width:48%;

}

.hero-right{

    width:45%;

    display:flex;

    justify-content:center;

}

.badge{

    display:inline-block;

    border:1px solid #19ffb6;

    color:#19ffb6;

    border-radius:40px;

    padding:12px 22px;

    margin-bottom:35px;

}

.hero-left h1{

    font-size:78px;

    line-height:1.1;

    font-weight:800;

}

.hero-left h1 span{

    color:#8b5cf6;

}

.hero-left h2{

    margin-top:18px;

    font-size:60px;

    color:#8b5cf6;

}

.hero-left p{

    margin-top:30px;

    color:#bcbcd0;

    line-height:1.8;

    font-size:20px;

}
/* ===========================
   BUTTONS
=========================== */

.buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.primary-btn{

    background:#8b5cf6;

    color:#fff;

    text-decoration:none;

    padding:18px 42px;

    border-radius:14px;

    transition:.35s;

    font-weight:600;

}

.primary-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 0 35px rgba(139,92,246,.7);

}

.secondary-btn{

    border:1px solid #8b5cf6;

    color:#fff;

    text-decoration:none;

    padding:18px 42px;

    border-radius:14px;

    transition:.35s;

}

.secondary-btn:hover{

    background:#8b5cf6;

}

/* ===========================
   IMAGE
=========================== */

.image-box{

    position:relative;

    width:460px;

    height:460px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.image-box img{

    width:360px;

    height:360px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #8b5cf6;

    box-shadow:

        0 0 50px rgba(139,92,246,.8),

        0 0 120px rgba(124,58,237,.35);

    transition:1s;

    z-index:5;

}

/* ===========================
   RINGS
=========================== */

.ring{

    position:absolute;

    border-radius:50%;

    border:2px solid rgba(139,92,246,.22);

}

.ring1{

    width:390px;

    height:390px;

    animation:spin 14s linear infinite;

}

.ring2{

    width:440px;

    height:440px;

    animation:spinReverse 18s linear infinite;

}

.ring3{

    width:490px;

    height:490px;

    animation:spin 24s linear infinite;

}

/* ===========================
   PURPLE DOT
=========================== */

.dot{

    position:absolute;

    width:18px;

    height:18px;

    background:#a855f7;

    border-radius:50%;

    box-shadow:

        0 0 25px #a855f7,

        0 0 55px #7c3aed;

    animation:orbit 8s linear infinite;

}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes spin{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}

@keyframes spinReverse{

from{

transform:rotate(360deg);

}

to{

transform:rotate(0deg);

}

}

@keyframes orbit{

0%{

transform:
rotate(0deg)
translateX(245px)
rotate(0deg);

}

100%{

transform:
rotate(360deg)
translateX(245px)
rotate(-360deg);

}

}
/* ===========================
   ABOUT
=========================== */

.about{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:120px 8%;

    gap:80px;

}

.about-left{

    flex:1;

}

.section-title{

    color:#8b5cf6;

    font-size:15px;

    letter-spacing:5px;

    margin-bottom:20px;

    font-weight:700;

}

.about-left h2{

    font-size:60px;

    line-height:1.2;

    margin-bottom:35px;

}

.about-left h2 span{

    color:#8b5cf6;

}

.about-left p{

    color:#b9b9c9;

    font-size:19px;

    line-height:1.9;

    margin-bottom:25px;

}

.about-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.info-card{

    width:430px;

    background:#11111a;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 0 40px rgba(124,58,237,.15);

}

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 28px;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.info-row:last-child{

    border:none;

}

.info-row span{

    color:#8f8fa6;

    text-transform:uppercase;

    font-size:13px;

    letter-spacing:1px;

}

.info-row b{

    color:#fff;

}

.online{

    color:#1fff9b !important;

}

/* ===========================
   CONTACT
=========================== */

.contact{

    padding:140px 8%;

    text-align:center;

}

.contact h2{

    font-size:58px;

    margin:20px 0;

}

.contact p{

    max-width:700px;

    margin:auto;

    color:#bcbcd0;

    font-size:20px;

    line-height:1.8;

    margin-bottom:60px;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.contact-card{

    background:#11111b;

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:45px;

    text-decoration:none;

    color:#fff;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:#8b5cf6;

    box-shadow:0 0 40px rgba(124,58,237,.35);

}

.contact-icon{

    font-size:45px;

    margin-bottom:25px;

}

.contact-card h3{

    font-size:28px;

    margin-bottom:10px;

}

.contact-card span{

    color:#bcbcd0;

}

/* ===========================
   FOOTER
=========================== */

footer{

    text-align:center;

    padding:35px;

    border-top:1px solid rgba(255,255,255,.05);

    color:#888;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1000px){

header{

padding:20px 5%;

}

nav{

gap:20px;

}

.hero{

flex-direction:column;

text-align:center;

padding-top:140px;

}

.hero-left{

width:100%;

}

.hero-right{

width:100%;

margin-top:70px;

}

.about{

flex-direction:column;

text-align:center;

}

.info-card{

width:100%;

}

.image-box{

transform:scale(.85);

}

.hero-left h1{

font-size:55px;

}

.hero-left h2{

font-size:42px;

}

.about-left h2{

font-size:45px;

}

.contact h2{

font-size:42px;

}

}

.contact{

    padding:140px 8%;
    text-align:center;

}


.contact-label{

    color:#8b5cf6;

    font-size:14px;

    letter-spacing:5px;

    font-weight:700;

}


.contact h2{

    font-size:64px;

    margin:20px 0;

}


.contact p{

    color:#a7a7bb;

    font-size:20px;

    max-width:650px;

    margin:auto;

    line-height:1.7;

}


.contact-box{

    max-width:850px;

    margin:60px auto 0;

    padding:15px;

    background:#10101a;

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    box-shadow:
    0 0 50px rgba(124,58,237,.18);

}


.contact-item{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:28px;

    text-decoration:none;

    color:white;

    border-radius:18px;

    transition:.35s;

}


.contact-item:hover{

    background:#181824;

}


.contact-info{

    display:flex;

    align-items:center;

    gap:20px;

}


.contact-icon{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#8b5cf6;

    border-radius:18px;

    font-size:30px;

}


.discord{

    background:#5865f2;

}


.contact-info h3{

    font-size:24px;

    margin-bottom:5px;

}


.contact-info span{

    color:#9999ad;

}


.contact-arrow{

    font-size:25px;

    color:#8b5cf6;

}


.contact-line{

    height:1px;

    background:rgba(255,255,255,.08);

    margin:0 25px;

}
.skills-box{

    padding:30px;

}


.skills-title span{

    color:#8b5cf6;

    font-size:13px;

    letter-spacing:4px;

}


.skills-title h3{

    margin-top:8px;

    font-size:25px;

}


.skills-box{

    padding:20px;

}


.skills-title span{

    color:#8b5cf6;

    font-size:12px;

    letter-spacing:4px;

}


.skills-title h3{

    font-size:22px;

    margin-top:5px;

}


.skills-wrapper{

    overflow:hidden;

    margin-top:25px;

    width:100%;

}


.skills-track{

    display:flex;

    gap:12px;

    width:max-content;

    animation:moveSkills 18s linear infinite;

}


.skill{

    padding:10px 18px;

    background:#181824;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    white-space:nowrap;

    color:white;

    font-size:14px;

    transition:.3s;

}


.skill:hover{

    border-color:#8b5cf6;

    box-shadow:0 0 20px rgba(139,92,246,.4);

    transform:scale(1.08);

}


@keyframes moveSkills{


0%{

    transform:translateX(0);

}


50%{

    transform:translateX(-350px);

}


100%{

    transform:translateX(0);

}


}
.venge-header{

    text-align:center;

    padding-top:80px;

    margin-bottom:60px;

}


.back-btn{

    display:inline-block;

    color:#aaa;

    text-decoration:none;

    background:#11111b;

    border:1px solid rgba(255,255,255,.08);

    padding:12px 25px;

    border-radius:30px;

    transition:.3s;

}


.back-btn:hover{

    color:white;

    border-color:#8b5cf6;

    box-shadow:0 0 25px rgba(139,92,246,.4);

}



.venge-logo{

    margin-top:35px;

}


.venge-logo img{

    width:90px;

    height:90px;

    object-fit:contain;

    filter:drop-shadow(0 0 30px #8b5cf6);

    animation:logoFloat 3s ease-in-out infinite;

}



.venge-logo h2{

    margin-top:15px;

    font-size:45px;

    letter-spacing:8px;

}



@keyframes logoFloat{


0%,100%{

    transform:translateY(0);

}


50%{

    transform:translateY(-12px);

}


}/* =====================
   TOP NAV
===================== */


.top-nav{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:90px;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:9999;

    background:#07070d;

}



.brand{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:white;

}


.brand img{

    width:45px;

    height:45px;

    object-fit:contain;

    filter:drop-shadow(0 0 15px #8b5cf6);

    animation:logoMove 3s infinite ease-in-out;

}


.brand span{

    font-size:28px;

    font-weight:800;

    letter-spacing:4px;

}



.back-venge{

    text-decoration:none;

    color:white;

    background:#11111b;

    border:1px solid rgba(255,255,255,.08);

    padding:13px 25px;

    border-radius:14px;

    transition:.35s;

}



.back-venge:hover{

    border-color:#8b5cf6;

    box-shadow:

    0 0 30px rgba(139,92,246,.5);

    transform:translateY(-3px);

}



@keyframes logoMove{


0%,100%{

transform:translateY(0);

}


50%{

transform:translateY(-8px);

}


}
/* ===========================
   Reset
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#06070d;
    color:#fff;
    overflow-x:hidden;
    min-height:100vh;
    position:relative;

}

/* ===========================
   Background
=========================== */



/* البنفسجي اليمين */

body::before{

    content:"";

    position:fixed;

    right:-300px;
    top:150px;

    width:700px;
    height:700px;

    border-radius:50%;

    background:#6d3cff;

    filter:blur(230px);

    opacity:.18;

    z-index:-4;

}

/* البنفسجي اليسار */

body::after{

    content:"";

    position:fixed;

    left:-250px;
    top:-120px;

    width:650px;
    height:650px;

    border-radius:50%;

    background:#8f5bff;

    filter:blur(230px);

    opacity:.13;

    z-index:-4;

}

/* ===========================
   Section
=========================== */

.contact-section{

    min-height:90vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;

}

/* ===========================
   Card
=========================== */

.contact-card{

    width:100%;
    max-width:1100px;

    padding:75px 70px;

    text-align:center;

    border-radius:28px;

    background:rgba(18,18,30,.60);

    backdrop-filter:blur(18px);

    border:1px solid rgba(132,91,255,.28);

    box-shadow:

    inset 0 1px 0 rgba(255,255,255,.03),

    0 0 45px rgba(120,75,255,.10);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-3px);

    box-shadow:

    0 0 60px rgba(126,79,255,.18);

}

/* ===========================
   Title
=========================== */

.contact-card h1{

    font-size:56px;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:16px;

}

/* ===========================
   Description
=========================== */

.contact-card p{

    color:#9d9db2;

    font-size:18px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/* ===========================
   Buttons
=========================== */

.buttons{

    margin-top:45px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;

    flex-wrap:wrap;

}

.btn{

    width:170px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    border-radius:16px;

    color:#fff;
    text-decoration:none;

    font-weight:600;
    font-size:16px;

    border:1px solid rgba(140,95,255,.35);

    background:rgba(120,80,255,.08);

    transition:.35s ease;

    backdrop-filter:blur(12px);

}

.btn i{

    font-size:18px;

}

.btn:hover{

    transform:translateY(-4px);

    border-color:#8c62ff;

    background:#6b3dff;

    box-shadow:
    0 0 35px rgba(128,82,255,.45);

}

/* ===========================
   Footer
=========================== */

footer{

    width:100%;

    text-align:center;

    color:#6d6d82;

    font-size:13px;

    letter-spacing:2px;

    padding-bottom:30px;

}

footer span{

    color:#9a73ff;

    font-weight:700;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.contact-card{

padding:60px 35px;

}

.contact-card h1{

font-size:42px;

}

.contact-card p{

font-size:16px;

}

}

@media(max-width:768px){

.contact-card{

padding:50px 25px;

}

.contact-card h1{

font-size:34px;

line-height:1.2;

}

.buttons{

flex-direction:column;

}

.btn{

width:100%;

max-width:260px;

}

}

@media(max-width:500px){

.contact-card h1{

font-size:28px;

}

.contact-card p{

font-size:15px;

}

footer{

font-size:11px;

}

}


.image-box{
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img{
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5cf6;
    z-index: 2;
}

/* الحلقة */
.ring{
    position: absolute;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    border: 2px solid rgba(139,92,246,.18);
    box-shadow: 0 0 30px rgba(139,92,246,.15);
}

/* النقطة */
.dot{
    position: absolute;
    width: 10px;
    height: 10px;
    background: #9b5cff;
    border-radius: 50%;
    box-shadow: 0 0 12px #9b5cff;
    animation: orbit 8s linear infinite;
}

@keyframes orbit{
    from{
        transform: rotate(0deg) translateX(185px);
    }
    to{
        transform: rotate(360deg) translateX(185px);
    }
}

