/*==================================================
  ARIVONA - DEV
  Premium Portfolio
===================================================*/

@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&display=swap");

/*=========================
        RESET
=========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Alexandria", sans-serif;

  background: #06060a;

  color: #fff;

  overflow-x: hidden;

  position: relative;
}

/*=========================
      VARIABLES
=========================*/

:root {
  --black: #06060a;

  --dark: #0d0d13;

  --purple: #7c3aed;

  --purple2: #a855f7;

  --silver: #d1d5db;

  --white: #ffffff;

  --glass: rgba(255, 255, 255, 0.06);

  --border: rgba(255, 255, 255, 0.09);

  --shadow: 0 15px 45px rgba(124, 58, 237, 0.35);

  --transition: 0.4s;
}

/*=========================
      SCROLLBAR
=========================*/

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #09090b;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple), var(--purple2));

  border-radius: 20px;
}

/*=========================
      BACKGROUND
=========================*/

body::before {
  content: "";

  position: fixed;

  width: 700px;

  height: 700px;

  background: radial-gradient(circle, var(--purple), transparent 70%);

  left: -250px;

  top: -250px;

  filter: blur(120px);

  opacity: 0.35;

  z-index: -5;

  animation: floatOne 10s infinite ease-in-out;
}

body::after {
  content: "";

  position: fixed;

  width: 650px;

  height: 650px;

  background: radial-gradient(circle, #4f46e5, transparent 70%);

  right: -250px;

  bottom: -250px;

  filter: blur(130px);

  opacity: 0.28;

  z-index: -5;

  animation: floatTwo 12s infinite ease-in-out;
}

/*=========================
        NAVBAR
=========================*/

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  padding: 20px 7%;
}

.navbar {
  display: flex;

  justify-content: space-between;

  align-items: center;

  background: rgba(10, 10, 10, 0.25);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  padding: 16px 30px;

  border-radius: 60px;

  transition: 0.4s;
}

.logo {
  font-size: 28px;

  font-weight: 900;

  letter-spacing: 2px;

  cursor: pointer;
}

.logo span {
  color: white;
}

.logo b {
  color: var(--purple2);
}

.nav-links {
  display: flex;

  list-style: none;

  gap: 40px;
}

.nav-links a {
  text-decoration: none;

  color: white;

  font-weight: 500;

  transition: 0.35s;

  position: relative;
}

.nav-links a::after {
  content: "";

  position: absolute;

  width: 0;

  height: 2px;

  background: var(--purple2);

  left: 0;

  bottom: -8px;

  transition: 0.35s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--purple2);
}

.menu-btn {
  display: none;

  font-size: 28px;

  cursor: pointer;
}

/*=========================
        HERO
=========================*/

.hero {
  min-height: 100vh;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 8%;

  position: relative;

  overflow: hidden;
}

.hero-content {
  width: 55%;

  z-index: 10;
}

.hero-content h3 {
  font-size: 20px;

  letter-spacing: 5px;

  color: var(--silver);

  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 78px;

  font-weight: 900;

  line-height: 1.1;

  margin-bottom: 15px;
}

.hero-content h1 span {
  color: var(--purple2);

  text-shadow: 0 0 20px var(--purple2);
}

.hero-content h2 {
  height: 50px;

  font-size: 30px;

  font-weight: 700;

  margin-bottom: 20px;

  color: var(--purple2);
}

.hero-content p {
  font-size: 18px;

  line-height: 1.9;

  color: #c7c7c7;

  max-width: 650px;

  margin-bottom: 45px;
}

/*=========================
      BUTTONS
=========================*/

.hero-buttons {
  display: flex;

  gap: 20px;
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 38px;

  border-radius: 50px;

  background: linear-gradient(135deg, var(--purple), var(--purple2));

  color: white;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s;

  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
}

.btn:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.6);
}

.btn2 {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 38px;

  border-radius: 50px;

  border: 2px solid var(--purple);

  text-decoration: none;

  color: white;

  transition: 0.4s;
}

.btn2:hover {
  background: var(--purple);

  transform: translateY(-8px);
}

/*=========================
      HERO LOGO
=========================*/

.hero-image {
  width: 40%;

  display: flex;

  justify-content: center;

  align-items: center;
}

.logo-circle {
  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(15px);

  display: flex;

  justify-content: center;

  align-items: center;

  position: relative;

  border: 1px solid rgba(255, 255, 255, 0.1);

  animation: rotateCircle 18s linear infinite;
}

.logo-circle::before {
  content: "";

  position: absolute;

  width: 440px;

  height: 440px;

  border: 2px dashed rgba(124, 58, 237, 0.25);

  border-radius: 50%;

  animation: rotateReverse 30s linear infinite;
}

.logo-inner {
  width: 220px;

  height: 220px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 120px;

  font-weight: 900;

  background: linear-gradient(135deg, var(--purple), var(--purple2));

  box-shadow: 0 0 50px rgba(124, 58, 237, 0.6);
}

/*=========================
      PURPLE BALLS
=========================*/

.purple-ball {
  position: absolute;

  border-radius: 50%;

  filter: blur(40px);

  opacity: 0.55;
}

.ball1 {
  width: 180px;

  height: 180px;

  background: #7c3aed;

  top: 18%;

  left: 10%;

  animation: floatOne 8s infinite ease-in-out;
}

.ball2 {
  width: 220px;

  height: 220px;

  background: #a855f7;

  right: 15%;

  bottom: 18%;

  animation: floatTwo 12s infinite ease-in-out;
}

.ball3 {
  width: 120px;

  height: 120px;

  background: #4f46e5;

  right: 40%;

  top: 12%;

  animation: floatThree 9s infinite ease-in-out;
}

/*=========================
      ANIMATIONS
=========================*/

@keyframes floatOne {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
}

@keyframes floatThree {
  0%,
  100% {
    transform: translate(0);
  }
  50% {
    transform: translate(30px, -40px);
  }
}

@keyframes rotateCircle {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  100% {
    transform: rotate(-360deg);
  }
}

/*==================================================
              STARS BACKGROUND
==================================================*/

#stars,
#stars2,
#stars3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

#stars::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow:
    50px 80px #fff,
    120px 300px #fff,
    180px 150px #fff,
    260px 420px #fff,
    340px 210px #fff,
    460px 90px #fff,
    580px 320px #fff,
    700px 170px #fff,
    860px 250px #fff,
    980px 120px #fff,
    1100px 340px #fff,
    1260px 200px #fff,
    1380px 430px #fff,
    1500px 130px #fff,
    1650px 290px #fff,
    1780px 60px #fff,
    1880px 360px #fff;
  animation: starsMove 90s linear infinite;
  opacity: 0.8;
}

#stars2::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow:
    100px 500px,
    280px 650px,
    470px 400px,
    690px 580px,
    920px 720px,
    1160px 610px,
    1390px 480px,
    1620px 760px,
    1850px 560px;
  animation: starsMoveReverse 120s linear infinite;
  opacity: 0.5;
}

#stars3::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #7c3aed;
  border-radius: 50%;
  box-shadow:
    220px 200px,
    520px 160px,
    820px 240px,
    1120px 140px,
    1420px 280px,
    1720px 220px;
  filter: blur(1px);
  animation: twinkle 4s infinite alternate;
}

/*==================================================
              GRID BACKGROUND
==================================================*/

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  opacity: 0.5;
}

/*==================================================
            SECTION STYLE
==================================================*/

section {
  padding: 120px 8%;

  position: relative;
}

.section-title {
  text-align: center;

  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 48px;

  font-weight: 900;

  margin-bottom: 15px;
}

.section-title p {
  color: #bfbfbf;

  font-size: 18px;
}

/*==================================================
              GLASS CARD
==================================================*/

.glass {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/*==================================================
              ABOUT
==================================================*/

.about-container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.image-box {
  height: 450px;

  border-radius: 35px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 120px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  box-shadow: var(--shadow);

  transition: 0.5s;
}

.image-box:hover {
  transform: translateY(-15px);
}

.image-box i {
  color: var(--purple2);
}

.about-text h3 {
  font-size: 40px;

  margin-bottom: 25px;
}

.about-text p {
  line-height: 2;

  color: #cfcfcf;

  margin-bottom: 35px;

  font-size: 17px;
}

.skills {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.skill {
  padding: 14px 25px;

  border-radius: 50px;

  background: rgba(124, 58, 237, 0.15);

  border: 1px solid rgba(124, 58, 237, 0.4);

  transition: 0.35s;

  cursor: pointer;
}

.skill:hover {
  background: var(--purple);

  transform: translateY(-5px);
}

/*==================================================
              SERVICES
==================================================*/

.cards {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));

  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 30px;

  padding: 45px 30px;

  backdrop-filter: blur(18px);

  transition: 0.45s;

  position: relative;

  overflow: hidden;
}

.card::before {
  content: "";

  position: absolute;

  top: -100px;

  right: -100px;

  width: 220px;

  height: 220px;

  background: radial-gradient(circle, var(--purple), transparent);

  opacity: 0.25;

  transition: 0.5s;
}

.card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.35);
}

.card:hover::before {
  transform: scale(1.3);
}

.card i {
  font-size: 52px;

  margin-bottom: 25px;

  color: var(--purple2);
}

.card h3 {
  font-size: 25px;

  margin-bottom: 18px;
}

.card p {
  line-height: 1.8;

  color: #d1d1d1;
}

/*==================================================
              ANIMATIONS
==================================================*/

@keyframes starsMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-800px);
  }
}

@keyframes starsMoveReverse {
  from {
    transform: translateY(-800px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.7);
  }
}

/*==================================================
                    PORTFOLIO
==================================================*/
/* ==================================================
   PREMIUM PORTFOLIO
================================================== */

.portfolio{

    padding:130px 7%;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(124,58,237,.10),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(168,85,247,.08),
            transparent 35%
        );

}


/* ================= TITLE ================= */

.portfolio-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    margin-bottom:18px;

    border-radius:50px;

    font-size:12px;

    color:#c084fc;

    background:rgba(124,58,237,.10);

    border:1px solid rgba(168,85,247,.25);

}


.portfolio-tag::before{

    content:"";

    width:7px;

    height:7px;

    border-radius:50%;

    background:#a855f7;

    box-shadow:
        0 0 12px #a855f7;

}


/* ================= GRID ================= */

.projects-grid{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:28px;

}


/* ================= CARD ================= */

.project-card{

    position:relative;

    display:block;

    height:390px;

    overflow:hidden;

    border-radius:28px;

    background:#111;

    border:1px solid
        rgba(255,255,255,.08);

    text-decoration:none;

    cursor:pointer;

    isolation:isolate;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);

    transition:
        transform .5s ease,
        box-shadow .5s ease,
        border-color .5s ease;

}


.project-card:hover{

    transform:
        translateY(-12px);

    border-color:
        rgba(168,85,247,.55);

    box-shadow:
        0 30px 70px
        rgba(124,58,237,.30);

}


/* ================= IMAGE ================= */

.project-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    display:block;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1),
        filter .6s ease;

}


.project-card:hover
.project-image{

    transform:scale(1.09);

    filter:
        brightness(.72)
        saturate(1.15);

}


/* ================= OVERLAY ================= */

.project-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    padding:25px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    background:

        linear-gradient(
            to bottom,
            rgba(5,5,10,.15),
            transparent 35%,
            rgba(5,5,10,.92) 100%
        );

    transition:
        background .5s ease;

}


.project-card:hover
.project-overlay{

    background:

        linear-gradient(
            to bottom,
            rgba(8,5,18,.25),
            rgba(20,8,40,.25),
            rgba(5,5,10,.96)
        );

}


/* ================= TOP ================= */

.project-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.project-number{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    color:#fff;

    font-size:13px;

    font-weight:700;

    background:
        rgba(0,0,0,.35);

    border:
        1px solid
        rgba(255,255,255,.12);

    backdrop-filter:
        blur(12px);

}


.project-category{

    padding:8px 14px;

    border-radius:50px;

    font-size:10px;

    color:#e9d5ff;

    background:
        rgba(124,58,237,.22);

    border:
        1px solid
        rgba(192,132,252,.3);

    backdrop-filter:
        blur(10px);

}


/* ================= INFO ================= */

.project-info{

    transform:
        translateY(8px);

    transition:
        transform .45s ease;

}


.project-card:hover
.project-info{

    transform:
        translateY(0);

}


.project-info h3{

    margin:0 0 10px;

    color:#fff;

    font-size:24px;

    font-weight:800;

}


.project-info p{

    margin:0 0 18px;

    color:#d1d1d1;

    font-size:12px;

    line-height:1.8;

    opacity:.9;

}


/* ================= VIEW BUTTON ================= */

.project-view{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:11px 18px;

    border-radius:12px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );

    box-shadow:
        0 10px 25px
        rgba(124,58,237,.3);

    font-size:11px;

    font-weight:700;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.project-view i{

    font-size:10px;

    transition:
        transform .35s ease;

}


.project-card:hover
.project-view{

    box-shadow:
        0 12px 35px
        rgba(168,85,247,.45);

}


.project-card:hover
.project-view i{

    transform:
        translateX(-5px);

}


/* ================= GLOW ================= */

.project-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-80px;

    bottom:-80px;

    border-radius:50%;

    background:
        #8b5cf6;

    filter:blur(80px);

    opacity:0;

    z-index:1;

    transition:
        opacity .5s ease;

}


.project-card:hover::after{

    opacity:.25;

}


/* ================= TABLET ================= */

@media(max-width:1100px){

    .projects-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* ================= MOBILE ================= */

@media(max-width:700px){

    .portfolio{

        padding:
            90px 5%;

    }


    .projects-grid{

        grid-template-columns:1fr;

        gap:22px;

    }


    .project-card{

        height:360px;

        border-radius:23px;

    }


    .project-overlay{

        padding:20px;

    }


    .project-info h3{

        font-size:21px;

    }


    .project-info p{

        font-size:11px;

    }

}

/*==================================================
                 CONTACT
==================================================*/

.contact {
  padding-bottom: 140px;
}

.contact-box {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

  gap: 25px;

  margin-top: 60px;
}

.contact-box a {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  height: 95px;

  text-decoration: none;

  color: white;

  font-size: 18px;

  font-weight: 600;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border-radius: 25px;

  transition: 0.4s;
}

.contact-box a i {
  font-size: 28px;

  color: #a855f7;

  transition: 0.35s;
}

.contact-box a:hover {
  transform: translateY(-8px);

  background: #7c3aed;

  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.45);
}

.contact-box a:hover i {
  color: white;

  transform: rotate(15deg) scale(1.2);
}

/*==================================================
                  FOOTER
==================================================*/

footer {
  padding: 70px 8%;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  background: #050507;
}

footer h2 {
  font-size: 40px;

  font-weight: 900;

  margin-bottom: 20px;
}

footer h2 span {
  color: #a855f7;
}

footer p {
  color: #bfbfbf;

  line-height: 2;

  font-size: 15px;
}

/*==================================================
                FLOATING LINE
==================================================*/

.line {
  position: absolute;

  width: 2px;

  height: 180px;

  background: linear-gradient(transparent, #a855f7, transparent);

  opacity: 0.25;

  animation: lineMove 8s infinite;
}

.line:nth-child(1) {
  left: 8%;

  top: 15%;
}

.line:nth-child(2) {
  right: 10%;

  bottom: 20%;

  animation-delay: 2s;
}

.line:nth-child(3) {
  left: 45%;

  top: 40%;

  animation-delay: 5s;
}

/*==================================================
              SCROLL ANIMATION
==================================================*/

.hidden {
  opacity: 0;

  transform: translateY(70px);

  transition: 1s;
}

.show {
  opacity: 1;

  transform: translateY(0);
}

/*==================================================
             HOVER GLOW
==================================================*/

.card:hover,
.project:hover,
.contact-box a:hover {
  border-color: #a855f7;
}

.logo:hover {
  text-shadow:
    0 0 15px #a855f7,
    0 0 30px #a855f7;
}

/*==================================================
                 KEYFRAMES
==================================================*/

@keyframes lineMove {
  0% {
    transform: translateY(-120px);

    opacity: 0;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(600px);

    opacity: 0;
  }
}

/*=========================
      MOBILE MENU
=========================*/

.nav-links.active {
  position: absolute;

  top: 90px;

  left: 0;

  width: 100%;

  display: flex;

  flex-direction: column;

  padding: 30px;

  background: rgba(10, 10, 15, 0.95);

  backdrop-filter: blur(25px);

  border-radius: 20px;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;

    justify-content: center;

    text-align: center;

    gap: 60px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}



/* =========================================
   PROJECT DETAILS
========================================= */

.project-details-page{

    min-height:100vh;

    padding:140px 7% 80px;

    background:#08060d;

}


.project-details{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:
        1.2fr .8fr;

    gap:60px;

    align-items:center;

}


/* =========================================
   GALLERY
========================================= */

.project-details-gallery{

    width:100%;

}


.project-main-image{

    width:100%;

    height:520px;

    overflow:hidden;

    border-radius:25px;

    background:#110d19;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

}

.project-main-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.project-thumbnails{

    display:flex;

    gap:12px;

    margin-top:15px;

    overflow-x:auto;

}


.project-thumbnails button{

    width:85px;

    height:65px;

    padding:0;

    border:2px solid transparent;

    border-radius:12px;

    overflow:hidden;

    cursor:pointer;

    background:#15101d;

}


.project-thumbnails button:hover{

    border-color:#8b5cf6;

}


.project-thumbnails img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/* =========================================
   CONTENT
========================================= */

.project-details-content{

    color:white;

}


.project-category{

    display:inline-block;

    padding:8px 14px;

    border-radius:30px;

    color:#c4b5fd;

    background:rgba(139,92,246,.1);

    border:1px solid rgba(139,92,246,.2);

    font-size:12px;

    margin-bottom:18px;

}


.project-details-content h1{

    font-size:42px;

    line-height:1.3;

    margin-bottom:25px;

}


.project-description{

    color:#aaa4b4;

    font-size:15px;

    line-height:2;

    margin-bottom:30px;

}


.project-technologies{

    margin-bottom:35px;

}


.project-technologies h3{

    font-size:15px;

    margin-bottom:15px;

}


.technology-list{

    display:flex;

    flex-wrap:wrap;

    gap:9px;

}


.technology-list span{

    padding:8px 13px;

    border-radius:9px;

    background:#15111c;

    border:1px solid rgba(255,255,255,.07);

    color:#bbb4c5;

    font-size:11px;

}


.project-live-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 24px;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #8b5cf6,
        #6d28d9
    );

    color:white;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    transition:.3s;

}


.project-live-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(139,92,246,.25);

}


.project-back-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-right:12px;

    padding:13px 20px;

    border-radius:12px;

    color:#aaa4b4;

    border:1px solid rgba(255,255,255,.08);

    text-decoration:none;

    font-size:12px;

}


.project-back-btn:hover{

    color:white;

    border-color:rgba(255,255,255,.2);

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:900px){

    .project-details{

        grid-template-columns:1fr;

        gap:35px;

    }


    .project-main-image{

        height:400px;

    }


    .project-details-content h1{

        font-size:32px;

    }

}


@media(max-width:600px){

    .project-details-page{

        padding:110px 5% 50px;

    }


    .project-main-image{

        height:300px;

        border-radius:18px;

    }


    .project-details-content h1{

        font-size:27px;

    }


    .project-description{

        font-size:13px;

    }


    .project-live-btn,
    .project-back-btn{

        width:100%;

        margin:5px 0;

    }

}



/* ==================================================
   PROFESSIONAL PORTFOLIO
================================================== */

.portfolio{

    position:relative;

    background:
        linear-gradient(
            to bottom,
            #07070b,
            #0d0d15
        );

    overflow:hidden;

}


/* ==================================================
   GRID
================================================== */

.projects-grid{

    max-width:1350px;

    margin:0 auto;

    display:grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:28px;

}


/* ==================================================
   PROJECT CARD
================================================== */

.project-card{

    position:relative;

    height:420px;

    display:block;

    overflow:hidden;

    border-radius:28px;

    background:#111;

    border:
        1px solid
        rgba(255,255,255,.08);

    text-decoration:none;

    cursor:pointer;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

}


.project-card:hover{

    transform:
        translateY(-10px);

    border-color:
        rgba(124,58,237,.4);

    box-shadow:
        0 25px 60px
        rgba(124,58,237,.25);

}


/* ==================================================
   IMAGE WRAPPER
================================================== */

.project-image-wrapper{

    position:absolute;

    inset:0;

    overflow:hidden;

    background:#111;

}


/* ==================================================
   IMAGE
================================================== */

.project-image{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .8s
        cubic-bezier(.2,.8,.2,1),
        filter .5s ease;

}


.project-card:hover
.project-image{

    transform:
        scale(1.08);

    filter:
        brightness(.65);

}


/* ==================================================
   IMAGE GRADIENT
================================================== */

.project-image-wrapper::after{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            to top,
            rgba(0,0,0,.96),
            rgba(0,0,0,.5) 45%,
            rgba(0,0,0,.05)
        );

}


/* ==================================================
   NO IMAGE
================================================== */

.project-no-image{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#6d6577;

    font-size:50px;

    background:

        radial-gradient(
            circle,
            rgba(124,58,237,.15),
            transparent 60%
        );

}


/* ==================================================
   OVERLAY
================================================== */

.project-overlay{

    position:absolute;

    inset:0;

    z-index:3;

    padding:27px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}


/* ==================================================
   TOP
================================================== */

.project-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.project-number{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid
        rgba(255,255,255,.12);

    backdrop-filter:
        blur(10px);

    font-size:11px;

    font-weight:600;

}


.project-category{

    padding:7px 12px;

    border-radius:30px;

    color:#d1bfff;

    background:
        rgba(124,58,237,.15);

    border:
        1px solid
        rgba(124,58,237,.25);

    backdrop-filter:
        blur(10px);

    font-size:10px;

}


/* ==================================================
   INFO
================================================== */

.project-info{

    transform:
        translateY(10px);

    transition:
        transform .4s ease;

}


.project-card:hover
.project-info{

    transform:
        translateY(0);

}


.project-info h3{

    margin:0 0 10px;

    color:#fff;

    font-size:24px;

    font-weight:700;

}


.project-info p{

    margin:0 0 18px;

    max-width:90%;

    color:#d0ccd5;

    font-size:12px;

    line-height:1.8;

}


/* ==================================================
   VIEW
================================================== */

.project-view{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#c7b2ff;

    font-size:11px;

    font-weight:600;

}


.project-view i{

    transition:
        transform .3s ease;

}


.project-card:hover
.project-view i{

    transform:
        translateX(-5px);

}


/* ==================================================
   EMPTY
================================================== */

.no-projects{

    grid-column:
        1 / -1;

    min-height:300px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius:25px;

    background:
        rgba(255,255,255,.02);

}


.no-projects-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;

    border-radius:20px;

    color:#a78bfa;

    background:
        rgba(124,58,237,.1);

    font-size:25px;

}


.no-projects h3{

    margin-bottom:8px;

    color:#fff;

}


.no-projects p{

    color:#77727e;

    font-size:12px;

}


/* ==================================================
   TABLET
================================================== */

@media(max-width:1050px){

    .projects-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* ==================================================
   MOBILE
================================================== */

@media(max-width:650px){

    .projects-grid{

        grid-template-columns:1fr;

        gap:20px;

    }


    .project-card{

        height:370px;

        border-radius:20px;

    }


    .project-overlay{

        padding:22px;

    }


    .project-info h3{

        font-size:20px;

    }


    .project-info p{

        font-size:11px;

    }

}





/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {

    position: relative;

    padding: 120px 7%;

    background: #08070d;

    overflow: hidden;

}


/* خلفية زخرفية */

.testimonials::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: 10%;

    left: -250px;

    border-radius: 50%;

    background: rgba(124,58,237,.08);

    filter: blur(100px);

    pointer-events: none;

}


.testimonials::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    bottom: 0;

    right: -200px;

    border-radius: 50%;

    background: rgba(99,102,241,.07);

    filter: blur(100px);

    pointer-events: none;

}


/* =====================================================
   TITLE
===================================================== */

.testimonials .section-title {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;

}


.testimonial-label {

    display: inline-block;

    padding: 7px 15px;

    margin-bottom: 15px;

    border-radius: 30px;

    color: #a78bfa;

    background: rgba(139,92,246,.08);

    border: 1px solid rgba(139,92,246,.15);

    font-size: 10px;

    letter-spacing: 2px;

}


.testimonials .section-title h2 {

    margin: 0 0 14px;

    color: #fff;

    font-size: 40px;

    font-weight: 800;

}


.testimonials .section-title p {

    margin: 0;

    color: #817b89;

    font-size: 12px;

    line-height: 2;

}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.testimonials-wrapper {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1100px;

    margin: auto;

}


/* =====================================================
   CLIENTS LIST
===================================================== */

.clients-list {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-bottom: 25px;

    flex-wrap: wrap;

}


.client-tab {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 14px 8px 8px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.07);

    background: rgba(255,255,255,.025);

    cursor: pointer;

    transition: .3s;

}


.client-tab:hover {

    border-color: rgba(139,92,246,.3);

    transform: translateY(-2px);

}


.client-tab.active {

    background: rgba(139,92,246,.10);

    border-color: rgba(139,92,246,.35);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.15);

}


/* صورة صغيرة */

.client-tab-image {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    color: #a78bfa;

    background: #17131f;

}


.client-tab-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* اسم العميل */

.client-tab-info {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: right;

}


.client-tab-info strong {

    color: #ddd7e3;

    font-size: 11px;

}


.client-tab-info span {

    margin-top: 3px;

    color: #686171;

    font-size: 8px;

}


/* =====================================================
   MAIN REVIEW
===================================================== */

.testimonial-main {

    position: relative;

    display: none;

    min-height: 370px;

    padding: 50px;

    grid-template-columns: 260px 1fr;

    align-items: center;

    gap: 60px;

    border-radius: 30px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        );

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.25);

    overflow: hidden;

}


.testimonial-main.active {

    display: grid;

    animation:
        testimonialFade .5s ease;

}


@keyframes testimonialFade {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =====================================================
   DECORATION
===================================================== */

.testimonial-decoration {

    position: absolute;

    top: 25px;

    right: 30px;

    color: rgba(139,92,246,.15);

}


.testimonial-decoration i {

    font-size: 80px;

}


/* =====================================================
   BIG IMAGE
===================================================== */

.testimonial-big-image {

    position: relative;

    width: 220px;

    height: 220px;

    margin: auto;

    padding: 6px;

    border-radius: 35px;

    background:

        linear-gradient(
            135deg,
            #8b5cf6,
            #4c1d95
        );

    transform: rotate(-3deg);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.35),

        0 0 50px
        rgba(139,92,246,.10);

}


.testimonial-big-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 30px;

    border: 4px solid #0d0b12;

}


.default-client {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 30px;

    color: #a78bfa;

    background: #15121c;

    font-size: 50px;

}


/* =====================================================
   CONTENT
===================================================== */

.testimonial-content {

    position: relative;

    z-index: 2;

}


.review-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #a78bfa;

    font-size: 10px;

    letter-spacing: 1px;

}


.testimonial-content h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 28px;

    font-weight: 800;

}


.review-project {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 25px;

    color: #706978;

    font-size: 11px;

}


.review-project i {

    color: #8b5cf6;

}


.testimonial-content p {

    max-width: 650px;

    margin: 0;

    color: #aaa4b1;

    font-size: 14px;

    line-height: 2.2;

}


/* =====================================================
   BOTTOM
===================================================== */

.review-line {

    width: 55px;

    height: 2px;

    margin-top: 28px;

    margin-bottom: 14px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #6d28d9,
            #a78bfa
        );

}


.review-brand {

    color: #5e5866;

    font-size: 9px;

    letter-spacing: 2px;

}


.review-brand b {

    color: #8b5cf6;

}


/* =====================================================
   EMPTY
===================================================== */

.testimonials-empty {

    position: relative;

    z-index: 2;

    max-width: 900px;

    min-height: 250px;

    margin: auto;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 25px;

    border: 1px solid rgba(255,255,255,.06);

    background: rgba(255,255,255,.02);

    text-align: center;

}


.testimonials-empty i {

    margin-bottom: 15px;

    color: #8b5cf6;

    font-size: 35px;

}


.testimonials-empty h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 17px;

}


.testimonials-empty p {

    margin: 0;

    color: #706a77;

    font-size: 11px;

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:850px) {

    .testimonial-main {

        grid-template-columns: 190px 1fr;

        gap: 35px;

        padding: 35px;

    }


    .testimonial-big-image {

        width: 170px;

        height: 170px;

    }


    .testimonial-content h3 {

        font-size: 23px;

    }


    .testimonial-content p {

        font-size: 12px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:650px) {

    .testimonials {

        padding: 90px 5%;

    }


    .testimonials .section-title h2 {

        font-size: 30px;

    }


    .clients-list {

        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding: 5px;

        scrollbar-width: none;

    }


    .clients-list::-webkit-scrollbar {

        display: none;

    }


    .client-tab {

        flex-shrink: 0;

    }


    .testimonial-main {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 30px;

        padding: 35px 22px;

    }


    .testimonial-big-image {

        width: 160px;

        height: 160px;

    }


    .testimonial-content {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .testimonial-content h3 {

        font-size: 23px;

    }


    .review-project {

        justify-content: center;

    }


    .testimonial-content p {

        font-size: 12px;

        line-height: 2;

    }


    .testimonial-decoration {

        top: 15px;

        right: 15px;

    }


    .testimonial-decoration i {

        font-size: 55px;

    }

}













