@font-face {
  font-family: 'RussoOne';
  src: url('fonts/RussoOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

/* Image inside button */
.whatsapp-icon {
  width: 180%;
  height: 180%;
  object-fit: contain;
}



/* =============================== */
/* GENERAL DARK THEME RESET        */
/* =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

body {
  background: #000;
  color: white;
  overflow-x: hidden;
}


/* =============================== */
/* NAVBAR STYLING                  */
/* =============================== */
/* YOUR ORIGINAL STYLE — KEPT EXACTLY */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
  overflow: hidden;
}

/* Floating dots — unchanged */
#dots-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}


.dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px white;
  opacity: 0.85;
  animation: floatAround linear infinite;
}

@keyframes floatAround {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, -25px); }
  100% { transform: translate(0, 0); }
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo a {
  color: white;
  text-decoration: none;
  font-family: 'RussoOne', sans-serif;
}

/* YOUR LINK STYLE — fixed class name */
.nav-link {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'RussoOne', sans-serif;
}

.nav-link:hover {
  background: white;
  color: black;
}

.nav-link.active {
  border-bottom: 2px solid white;
}

/* Sticky tabs (Pricing + Buy Webpage) */
/* Your sticky tabs — untouched */
.sticky-tab {
  background: white;
  color: black !important;
  padding: 8px 14px;
  border-radius: 3px;
  font-weight: 600;
  font-family: 'RussoOne', sans-serif;
  letter-spacing: 1px;
}

.sticky-tab:hover {
  background: #bfbfbf;
}

.nav-links a,
.sticky-tab,
.logo,
.hero-text h1 {
  font-family: 'RussoOne', sans-serif;
}



@media (max-width: 768px) {
  /* Hamburger – always visible on mobile */
  .hamburger {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 2000;
  }

  .hamburger span {
    background: white;
    height: 3px;
    width: 100%;
    display: block;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  /* Mobile menu – hidden by default */
  .nav-links {
    position: fixed;           /* better than absolute */
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    flex-direction: column;
    padding: 20px 15px;
    width: 180px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1999;
    
    
    max-width: 220px;
    margin: 0 auto;
  }

  /* When menu is open – smooth slide-in */
  .nav-links.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Style mobile links */
  .nav-links a {
    display: block;
    padding: 14px 18px;
    margin: 6px 0;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(155, 89, 182, 0.15);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(155, 89, 182, 0.4);
    transform: translateY(-2px);
  }

  /* Keep Pricing button visible */
  .sticky-tab {
    background: white !important;
    color: black !important;
  }
}

/* Desktop nav */
@media (min-width: 769px) {
  .nav-links { display: flex; gap: 30px; align-items: center; }
  .hamburger { display: none; }
}

  /* Hamburger → X animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* FIX 2 – Links now work 100% */
.hamburger { 
  pointer-events: none; 
}
.hamburger span { 
  pointer-events: auto; 
}



@media (max-width: 768px) {
  .hamburger {
    position: relative;
    z-index: 2000;           /* already have this */
  }

  /* ←←← ADD THIS LINE →→→ */
  .hamburger.active {
    z-index: 2001;           /* keeps X on top when menu is open */
  }

  /* MOST IMPORTANT — stop hamburger from blocking clicks */
  .hamburger {
    pointer-events: auto;    /* only clickable part */
  }

  /* Let clicks pass through the empty area around the 3 lines */
  .hamburger span {
    pointer-events: none;
  }

  /* Make sure the menu is clickable */
  .nav-links {
    pointer-events: auto !important;
  }
}
  



/* =============================== */
/* HERO SECTION                    */
/* =============================== */
.hero {
  position: relative;
  padding-top: 160px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; 
  padding-left: 60px;
  padding-right: 60px;
  padding: 0;                     /* remove all padding */
  overflow: hidden;
  background: #000;               /* fallback color */
  border-radius: 20px; /* rounded corners */
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.hero {
  position: relative;
  min-height: 100vh;              /* full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;                     /* remove all padding */
  overflow: hidden;               /* important: cuts off any overflow */
  background: #000;               /* fallback color */
}

/* --- ANIMATED ETHER SMOKE --- */
.ether-smoke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: url('images/purple-smoke.png') repeat;
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: drift 18s infinite linear;
}

@keyframes drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 0;
  }
}

/* Make sure hero text appears above smoke */
.hero-content {
  position: relative;
  z-index: 5;
}




.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* scales the image nicely */
  border-radius: 20px;
  opacity: 0.3; /* makes text readable */
  z-index: 0; /* behind text */
  
}

.hero-text {
  position: relative;
  font-family: 'Manrope', sans-serif;
  z-index: 1; /* ensures text is above the image */
  max-width: 600px; /* optional, keeps text in a readable area */
  text-align: center;
}

.hero-ether{
  font-family: 'RussoOne', sans-serif;
  font-size: 1.6rem;
  color: #ffff;
  margin-top: 70px;
}

.hero-tags span {
  font-family: 'RussoOne', sans-serif;
  color: #ffff;
  border: 1px solid #b96bff;
  padding: 6px 12px;
  border-radius: 10px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.hero-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  color: #ffff;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}




.hero-image {
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 90px;
  border: 1px solid rgba(255,255,255,0.2);
}


.hero-btn:hover {
  background: #10002b;
  transform: translateY(-3px);
  box-shadow: 0 0 15px #3a0ca3, 0 0 30px rgba(155, 89, 182, 0.7);
}

.hero-btn {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 16px 32px; /* a bit more padding = more room for dots */
  background: #3c096c;
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: 'RussoOne', sans-serif;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 8px #560bad, 0 0 20px rgba(155, 89, 182, 0.5);
  transition: all 0.3s ease;
  overflow: hidden;     /* This now actually clips the dots */
  z-index: 1;
  cursor: pointer;
}

.hero-btn:hover {
  background: #10002b;
  transform: translateY(-3px);
  box-shadow: 0 0 15px #3a0ca3, 0 0 30px rgba(155, 89, 182, 0.7);
}

/* Floating dots */
.btn-dot {
  position: absolute;
  background: #00ffff;
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none; /* so dots don't block clicks */
  box-shadow: 0 0 6px #00ffff;
  animation: floatBtnDot linear infinite;
}


/* Better floating animation (more cosmic feel) */
@keyframes floatBtnDot {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(8px, -10px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-6px, -4px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(4px, 8px) rotate(270deg);
    opacity: 0.9;
  }
}

.hero-roles {
  display: flex;
  font-family: 'Manrope', sans-serif;
  font-size: 1.9rem;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 25px;
}

h1:hover { animation: glitch 0.3s ease-in-out; }
@keyframes glitch {
  0% { text-shadow: 2px 0 #00ffff, -2px 0 #ff00ff; }
  20% { text-shadow: -2px 0 #00ffff, 2px 0 #ff00ff; }
  100% { text-shadow: none; }
}

.role {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 2px solid #9b59b6; /* purple border */
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Manrope', monospace;
  color: #fff;
  background: rgba(155, 89, 182, 0.1); /* subtle purple background */
}

.role-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
}




/* ---------- About Section ---------- */
/* Entire Section */
.about-section {
  background: #000; 
  padding: 120px 20px;
  overflow: hidden;                  /* prevents horizontal scroll */
}



.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;                   /* ← THIS IS KEY FOR MOBILE */
  justify-content: center;
}




/* Text side – full width on mobile */
.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.95;
}



.about-body {
  font-size: 1.3rem;
  font-family: 'Manrope', monospace;
  line-height: 1.7;
  color: #ffff;
}




/* IMAGE FRAME — LARGER NOW */
.about-frame .frame {
  position: relative;
  width: 400px;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  padding-left: 0px; /* adjust as needed */
  padding-top: 0px;
  border: 2px solid rgba(0, 255, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.25);
}

/* IMAGE */
.profile-photo {
  width: 120%;
  height: 120%;
/* IMPORTANT — prevents cutting! */
  display: block;
  
  object-fit: cover;

  /* Move image slightly right or down if needed */
  object-position: center center;

}

/* CANVAS (if animated artwork is added later) */
.artwork-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* NAME + TITLE TEXT */
.photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 12px;
  font-family: 'RussoOne', monospace;
  font-size: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.photo-label span {
  opacity: 1;
  font-size: 0.9rem;
  font-family: 'Manrope', monospace;
  color: #ffff;
}

/* CANVAS (if animated artwork is added later) */
.artwork-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}



/* CANVAS UNDER IMAGE */
.artwork-canvas {
  width: 110%;
  height: 300px;
  margin-top: 15px;
}


/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
  }

  .about-image, 
  .about-text {
    width: 100%;
  }

  .about-frame {
    width: 100%;
    height: auto;
  }

  .profile-photo,
  .artwork-canvas {
    width: 100%;
    height: auto;
  }
}


/* canvas overlay for moving artwork (absolute on top) */
.artwork-canvas {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  pointer-events:none; z-index:2; mix-blend-mode:screen; opacity:0.9;
}

/* Responsive */
@media (max-width:980px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-frame { order:-1; display:flex; justify-content:center; }
  .about-frame .frame { width:320px; height:320px; margin: 0 auto 20px;}
}


.experience-section {
  padding: 100px 20px;
  background: #0a001a;
  text-align: left;
}
/* EXPERIENCE SECTION IMPROVEMENTS */
/* Thin rectangle border around each card */

/* CARD LAYOUT — LOGO RIGHT, TEXT LEFT */
.experience-card {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 15px;
  border-radius: 19px;
  background: rgba(0,0,0,0.35);
  transition: 0.3s ease;
  
  display: flex;
  justify-content: space-between;   /* push logo right */
  align-items: center;
  gap: 15px;                        /* spacing between text + logo */
}

/* Make the text container stay on the left */
.exp-content {
  flex: 1;
}


.experience-card:hover {
  border-color: #a56bff;
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(165,107,255,0.3);
}





/* Green gradient text – looks INSANE */
.gradient-text-green {
  background: linear-gradient(120deg, #00f260, #0575e6, #00c853, #64dd17);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Title + artwork blend */
.experience-header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.experience-artwork {
  margin-top: -60px;                    /* pulls image UP into the title */
  pointer-events: none;
}

.experience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(100, 0, 255, 0.08), transparent 70%);
  pointer-events: none;
}




/* Grid for jobs */
.experience-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Mobile perfection */
@media (max-width: 768px) {
  .gradient-text-green {
    font-size: 2.8rem;
  }
  
  .experience-artwork {
    margin-top: -40px;
  }
  

}


.container { max-width: 1100px; margin: 0 auto; position: relative; }

/* TITLE — PUSHED UP & CLEAN */
/* Title */


/* TITLE */
.experience-title {
  font-size: 1.4rem;
  margin-bottom: 40px;
  text-align: left;
  color: #fff;
}

/* ARTWORK — SMALLER & CLEAN ON MOBILE */
.work-art {
  width: 80px;
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
}

.work-art:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* TIMELINE — SUPER THIN & ELEGANT */
.experience-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}



.experience-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #9b59b6, #00ffff, transparent);
  border-radius: 2px;
}


.experience-item {
  position: relative;
  margin-bottom: 80px;
  padding-left: 0;
}



.exp-role {
  font-size: 1.4rem;
  color: #00ffff;
  margin: 10px 0;
}



/* Smaller logos */
/* LOGO ON THE RIGHT */
.company-logo {
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Make logos smaller */






.exp-content h2 {
  font-size: 1.8rem;
  color: white;
  margin: 0 0 8px 0;
  font-weight: 700;
  font-family: 'Manrope', Courier;
}

.exp-content h3 {
  font-size: 1.3rem;
  color: #faedcd;
  margin: 0 0 8px 0;
  font-weight: 600;
  font-family: 'Manrope', Courier;
}

.exp-company {
  font-family: 'Manrope', Courier;
  font-size: 1.2rem;
  color: #faedcd;
}


.exp-years {
  position: relative;
  font-weight: 600;
  color: #faedcd;
  font-size: 1rem;
  white-space: nowrap;
  padding-right: 18px;              /* space for the line */
  margin-left: auto; 
  font-family: 'Manrope', Courier;               /* pushes the whole thing to the far right */
}

/* This creates the beautiful small vertical line on the right */
.exp-years::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 4px;                       /* thickness of the line */
  height: 32px;                     /* height of the line – looks perfect */
  background: #9b59b6;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(155, 89, 182, 0.3);  /* optional soft glow */
}
.hero-roles {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 25px;
}



.role {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 2px solid #9b59b6; /* purple border */
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Manrope', monospace;
  color: #fff;
  background: rgba(155, 89, 182, 0.1); /* subtle purple background */
}

.exp-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  margin: 16px 0;
}

.visit-link {
  color: #480ca8;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Manrope', Courier;
}

/* MOBILE FIXES */
@media (max-width: 600px) {

  .experience-card {
    flex-direction: row;       /* keep layout horizontal */
    padding: 12px;
  }

  .company-logo {
    width: 50px;
    height: 50px;
  }

  .company-logo img {
    width: 45px;
  }

  .exp-role {
    font-size: 1.1rem;
  }

  .exp-company {
    font-size: 0.9rem;
  }

  .exp-desc {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

.visit-link::after {
  content: '↗';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.visit-link:hover {
  color: #9b59b6;
  transform: translateX(4px);
}

.visit-link:hover::after {
  transform: translate(4px, -4px);
}

.artwork-section {
  position: relative;
  padding: 160px 20px;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.artwork-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 50, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: floatOrb 20s infinite ease-in-out;
  pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: #9b59b6; top: 10%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 800px; height: 800px; background: #00ffff; bottom: -20%; right: -15%; animation-delay: 7s; }
.orb-3 { width: 500px; height: 500px; background: #39ff14; top: 60%; left: 50%; animation-delay: 14s; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, -100px) scale(1.2); }
}

.artwork-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.artwork-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #9b59b6, #00ffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.artwork-intro {
  font-size: 1.25rem;
  color: #b0a0ff;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* FILTER BUTTONS */
.art-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(155,89,182,0.3);
  color: #ccc;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(155,89,182,0.2);
  border-color: #9b59b6;
  color: white;
  box-shadow: 0 0 20px rgba(155,89,182,0.4);
  transform: translateY(-3px);
}

/* PROJECT GRID */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  padding: 20px;
}

.art-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(155,89,182,0.6));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.5s ease;
}

.art-overlay h3 {
  font-size: 1.8rem;
  color: white;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.art-overlay p {
  color: #00ffff;
  margin: 0 0 16px 0;
  font-size: 1rem;
}

.view-project {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.view-project:hover {
  border-color: #00ffff;
}

/* HOVER EFFECTS */
.art-card:hover img {
  transform: scale(1.1);
}

.art-card:hover .art-overlay {
  opacity: 1;
}

.art-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(155,89,182,0.3);
}






/* =============================== */
/* SKILLS SECTION                  */
/* =============================== */
.skills-section {
  padding: 140px 20px;
  background: #000000;
  text-align: center;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00ffff, #d4a5ff, #aacc00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 80px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.skill-box {
  background: rgba(20, 10, 50, 0.3);
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  /* This creates space for the thick moving border */
  padding: 33px 34px 36px 34px;
}

/* THICK, CLEAN, LOOPING BORDER – WORKS EVERYWHERE */
.skill-box::before {
  content: '';
  position: absolute;
  inset: -1px;                 /* extends outside the box */
  border-radius: 33px;
  padding: 6px;               /* thickness of the visible line */
  background: linear-gradient(90deg,
    var(--color) 0%,
    var(--color) 20%,
    transparent 35%,
    transparent 65%,
    var(--color) 80%,
    var(--color) 100%
  );
  background-size: 200% 100%;
  animation: loop 5s linear infinite;

  /* ======== Masking (cut the center out) ========
     We include both -webkit- prefixed and standard rules.
     WebKit expects `xor` for the composite operation, while the
     standard property uses `exclude`. Including both maximizes support.
  */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;

  z-index: -1;
}

/* Fallback glow so sections still look good in older browsers */
.skill-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 18px rgba(100, 60, 160, 0.06) inset;
  z-index: -2;
}



/* Text & icons stay perfectly readable */
.skill-box h2,
.skill-item,
.skill-item span,
.skill-item img {
  position: relative;
  z-index: 2;
}

.skill-box h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 30px;
  font-weight: 700;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  color: #e8e0ff;
  font-size: 1.15rem;
  font-weight: 500;
}

.skill-item img {
  width: 40px;
  height: 40px;
}

/* Hover lift */
.skill-box:hover {
  transform: translateY(-12px);
}

/* Individual colors */


/* Example 3 – Pure purple cosmic */
.skill-box[data-color="#00ffff"] { --color: #390099; }
.skill-box[data-color="#d4a5ff"] { --color: #008000; }
.skill-box[data-color="#39ff14"] { --color: #0096c7; }

@keyframes loop {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}



/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #040012 0%, #0a0018 100%);
  color: #eae6ff;
  padding: 60px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "Manrope";
  background: linear-gradient(90deg, #efe5dc, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 12px;
}

.footer-sub {
  margin-bottom: 18px;
  color: #dcd6ff;
  font-weight: 500;
  font-family: "Manrope";
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  font-family: "Manrope";
  color: #eae6ff;
}

.contact-item .icon {
  width: 20px;
  height: 20px;
  color: #9b59ff;
  flex: 0 0 20px;
}

.contact-item a {
  color: #eae6ff;
  text-decoration: none;
  font-family: "Manrope";
}

.footer-right {
  background: rgba(255,255,255,0.02);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(155,89,182,0.08);
}

/* contact form */
.contact-form .field {
  display: block;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
  font-family: "Manrope";
  outline: none;
  transition: box-shadow .18s ease, transform .12s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 18px rgba(155,89,182,0.18);
  border-color: rgba(155,89,182,0.28);
  transform: translateY(-2px);
}

.btn-send {
  margin-top: 6px;
  display: inline-block;
  padding: 12px 18px;
  background: linear-gradient(90deg,#9b59ff,#6f2bb0);
  color: white;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: "Manrope";
  box-shadow: 0 8px 24px rgba(155,89,182,0.18);
  transition: transform .12s ease, box-shadow .18s ease;
}

.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(155,89,182,0.28);
}

.form-message {
  margin-top: 20px;
  text-align: center;
  font-size: 1.1rem;
  min-height: 30px;
}

.footer-bottom {
  text-align: center;
  font-family: "Manrope";
  margin-top: 30px;
  color: rgba(234,230,255,0.6);
  font-size: 13px;
}

/* MOBILE FIX — Stack footer properly */
@media (max-width: 768px) {

  .footer-inner {
    grid-template-columns: 1fr;   /* Stack columns */
    gap: 25px;
  }

  .footer-right {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }
}




/* =============================== */
/* WHATSAPP BUTTON                 */
/* =============================== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}


/* --------------PRICING HTML PAGE---------------- */



/* --------------------------------------------------
   PRICING PAGE — COSMIC STYLE
-------------------------------------------------- */

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #06030f;
  color: #fff;
  overflow-x: hidden;
}

/* MAIN SECTION */
.pricing-section {
  position: relative;
  padding: 120px 10%;
  z-index: 5;
}

/* BACKGROUND ORBS */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatOrb 12s infinite ease-in-out;
  z-index: -1;
}

.orb-1 {
  width: 250px;
  height: 250px;
  background: #7a3cff;
  top: 10%;
  left: -5%;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #d76bff;
  bottom: 15%;
  right: -10%;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: #854bff;
  top: 60%;
  left: 40%;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) }
  50% { transform: translateY(-40px) }
}

/* HEADER AREA */
.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-title {
  font-family: 'Russo One', sans-serif;
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(90deg, #9b59ff, #d4a5ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.pricing-subtitle {
  font-size: 1.2rem;
  opacity: 0.75;
  width: 70%;
  margin: auto;
}

/* GRID LAYOUT */
.pricing-grid {
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
}

/* PRICE CARD BASE */
.price-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 22px;
  border: 1px solid rgba(150, 94, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(140, 68, 255, 0.08);
  transition: 0.35s ease;
  position: relative;
  text-align: center;
}

/* GLOW HOVER */
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(159, 79, 255, 0.35);
  border-color: #9b59ff;
}

/* CARD HEADERS */
.card-header h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  font-family: 'Russo One', sans-serif;
}

.tag {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* PRICE TEXT */
.price {
  font-size: 2.5rem;
  margin: 20px 0;
  font-weight: 900;
  color: #ffffff;
}

.desc {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 25px;
}

/* FEATURES LIST */
.features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li::before {
  content: "✔";
  color: #d4a5ff;
}

.features .highlight {
  color: #d4a5ff;
  font-weight: 600;
}

/* BUTTON */
.cta-btn {
  display: block;
  padding: 12px 0;
  border-radius: 14px;
  background: #7a3cff;
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: 0.3s;
  margin-top: 10px;
}

.cta-btn:hover {
  background: #9b59ff;
}

/* MOST POPULAR BADGE */
.popular {
  border: 2px solid #c792ff;
  box-shadow: 0 0 55px rgba(255, 210, 255, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #d4a5ff;
  color: #06030f;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(212, 165, 255, 0.5);
}

/* TRUST LINE */
.trust-line {
  text-align: center;
  margin-top: 40px;
  opacity: 0.6;
}

/* Pricing  */
/* INCLUDED SECTION */
.included-section {
  margin-top: -20px;
  padding: 80px 30px;

}

.included-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.included-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #a56bff, #d9b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* FIXES webkit issue */
  color: transparent;
}

.included-title span {
  color: #ffff;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.included-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(140, 82, 255, 0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 18px rgba(130, 55, 255, 0.15);
  transition: 0.3s ease;
}

.included-box:hover {
  transform: translateY(-6px);
  border-color: #b987ff;
  box-shadow: 0 0 25px rgba(171, 92, 255, 0.35);
}

.included-box h3 {
  font-size: 1.6rem;
  color: #ffff;
  margin-bottom: 18px;
  font-weight: 700;
}

.included-box ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  font-size: 1rem;
  color: #ffff;
  line-height: 1.7;
}

.included-box ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.included-box ul li::before {
  content: "✔";
  color: #c89dff;
  font-weight: bold;
  position: absolute;
  left: 0;
}


/* WRAPPER */
.payment-wrapper {
  padding: 1px 20px;
  position: relative;
  overflow: hidden;

  /* SAME LOOK AS BONUS BOX */
  background: rgba(0, 255, 255, 0.03);
  border-radius: 1px;
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);

  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.payment-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,255,255,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* INNER CONTAINER */
.payment-container {
  max-width: 800px;   /* tighter alignment */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* GLITCH TITLE */
.glitch-title {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  color: #00ffff;
  margin-bottom: 60px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  animation: glitch-text 4s infinite alternate-reverse;
}

.glitch-title span {
  position: relative;
  z-index: 3;
}

.glitch-title::before,
.glitch-title::after {
  content: 'Payment & Next Steps';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #00ffff;
  overflow: hidden;
}

.glitch-title::before {
  left: 2px;
  text-shadow: -2px 0 #ff00ff;
  animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch-title::after {
  left: -2px;
  text-shadow: 2px 0 #ff00ff;
  animation: glitch-2 3s infinite linear alternate-reverse;
}

/* TITLE BORDER */
.title-border {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ffff, #00ffff, transparent);
  border-radius: 2px;
  transition: width 0.6s ease;
  z-index: 1;
}

.glitch-title:hover .title-border {
  width: 120%;
  animation: border-pulse 2s infinite;
}

/* PAYMENT BLOCK — SAME LOOK AS BONUS BOX */
.payment-block {
  position: relative;

  margin-bottom: 40px;
  text-align: left;
}

/* HEADINGS IN BLOCK */
.payment-block h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: #aefaff;
}

/* LIST */
.payment-list {
  padding-left: 20px;
  color: #dffeff;
  line-height: 1.7;
  font-size: 1.15rem;
}

.payment-list li {
  margin-bottom: 12px;
}

/* BONUS BLOCK — ONLY THIS HAS DOTS */
.bonus {
  position: relative;
  overflow: hidden;
  text-align: center
}

/* floating dots wrapper */
.bonus .floating-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bonus .dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ffff;
  opacity: 0.6;
  animation: float-dot 12s infinite linear;
}

/* DOT ANIMATION */
@keyframes float-dot {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}

/* GLITCH ANIMATIONS */
@keyframes glitch-1 {
  0%,100% { clip: rect(0, 9999px, 0, 0); }
  20% { clip: rect(20px, 9999px, 40px, 0); }
  40% { clip: rect(80px, 9999px, 20px, 0); }
  60% { clip: rect(40px, 9999px, 80px, 0); }
  80% { clip: rect(60px, 9999px, 100px, 0); }
}

@keyframes glitch-2 {
  0%,100% { clip: rect(0, 9999px, 0, 0); transform: skew(0.1deg); }
  30% { clip: rect(50px, 9999px, 70px, 0); transform: skew(0.5deg); }
  70% { clip: rect(90px, 9999px, 30px, 0); transform: skew(-0.3deg); }
}

@keyframes glitch-text {
  0%,100% { text-shadow: 0 0 10px #00ffff; }
  50% { text-shadow: 0 0 20px #00ffff, 0 0 30px #ff00ff; }
}







