/* =====================================================
   DARK THEME BASE — GLOBAL (ORIGINAL)
===================================================== */
:root{
  --bg:#000000;
  --surface:#0b0b0b;
  --muted:#9494a5;
  --accent:#7F00FF;
  --accent2:#9b4dff;
  --glass: rgba(255,255,255,0.03);
  --radius:14px;
  --font: 'Poppins', sans-serif;
}

*{box-sizing:border-box}

body{
  font-family:var(--font);
  color:#e9e9ef;
  margin:0;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(circle at 50% 50%, #0a0a0a 0%, #000000 60%),
    #000000;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;

  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.14), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.13), transparent 40%);

  z-index:-1;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;

  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);

  background-size:120px 120px;

  z-index:-1;
}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:24px;
}
.section {
  margin: 60px 0;
}

.section-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.cta-section {
  text-align:center;
  background: linear-gradient(135deg,#0f0f0f,#1a1a1a);  
  border-radius:12px;
  padding:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.03);
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 10px 30px rgba(127,0,255,0.25);
}
/* NAVBAR */
.navbar{
  position: sticky;
  top: 0;
  z-index: 50;

  /* 💎 TRUE GLASS EFFECT */
  background: rgba(15, 10, 30, 0.35);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  /* ✨ LIGHT EDGE + DEPTH */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
}
.brand{
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 1px;

  text-decoration: none;

  /* 🔥 GRADIENT TEXT USING YOUR COLORS */
  background: linear-gradient(90deg, #6100c3, #a159ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* 💎 SUBTLE PREMIUM SHADOW */
  text-shadow: 0 6px 28px rgba(100, 1, 200, 0.9);

  transition: all 0.3s ease;
} 


.nav-toggle{
  display:none;
  font-size:1.5rem;
  background:transparent;
  border:none;
  color:var(--muted);
  cursor:pointer;
}
@media(max-width:700px){
  .nav-links{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:50%;
    transform: translateX(-50%);
    width:92%;

    /* 💎 GLASS BACKGROUND */
    background: rgba(22, 15, 40, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* ✨ PREMIUM BORDER */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;

    /* 🌌 DEPTH + FLOATING */
    box-shadow: 
      0 20px 60px rgba(0,0,0,0.6),
      inset 0 1px 0 rgba(255,255,255,0.08);

    padding:16px 0;
    z-index:100;

    /* 🔥 SMOOTH APPEAR */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.35s ease;
  }

  .nav-links.show{
    display:flex;
    opacity:1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-toggle{display:block;}

  .nav-links li{
    margin:8px 0;
    text-align:center;
  }
}

.nav-links{
  list-style:none;
  display:flex;
  gap:16px;
  margin:0;
  padding:0;
  align-items:center;
}

.nav-links a{
  position: relative;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;

  transition: color 0.3s ease;
}

/* 🔥 UNDERLINE (HIDDEN) */
.nav-links a::after{
  content: "";
  position: absolute;
  left: 10px;
  bottom: 2px;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, #6100c3, #a159ff);

  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ✨ HOVER EFFECT */
.nav-links a:hover{
  color: #fff;
}

.nav-links a:hover::after{
  width: calc(100% - 20px);
}
.nav-links a.active::after{
  width: calc(100% - 20px);
}
.nav-links a.active{
  color: #fff;
}
/* CTA */
.cta{
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  color:#fff;
  padding:8px 12px;
  border-radius:10px;
  text-decoration:none;
}


/* BUTTONS */
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  margin-right:8px;
}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(255, 255, 255, 0.395);
}
.view-btn{
  display:inline-block;
  margin-top:1rem;
  padding:10px 18px;
  background:#7F00FF;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:.3s ease;
}
.view-btn:hover{
  background:#a14cff;
  transform:translateY(-2px);
  box-shadow:0 5px 15px rgba(127,0,255,0.4);
}
.submit-btn{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:none;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}
.submit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(127,0,255,0.4);
}
/* GENERIC CARD GRID (base) */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2rem;
  margin-top:12px;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  border-radius:12px;
  padding:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.03);
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 10px 30px rgba(127,0,255,0.25);
}
.card:hover{
  transform:translateY(-8px);
    border-color:#444;
  box-shadow:0 10px 30px rgba(127,0,255,0.06);
}
.card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:8px;
}
.card-body h3{margin:6px 0}
.card-links a{
  margin-right:8px;
  color:var(--accent2);
  text-decoration:none;
}

/* CONTENT WRAPPER */
.content-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:20px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
}

/* SKILLS (base) */
.skills-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.skill{
  background:rgba(255,255,255,0.02);
  padding:10px 14px;
  border-radius:10px;
}

/* FOOTER */
.site-footer{
  padding:18px 0;
  margin-top:40px;
  color:var(--muted);
  font-size:0.9rem;
  text-align:center;
  border-top:1px solid rgb(118,118,118);
}

@media(max-width:700px){
  .nav-links{display:none}
  .hero-title{font-size:1.6rem}
  .container{padding:16px}
}

/* =====================================================
   MERGED EXTENDED PAGE-SPECIFIC STYLES
===================================================== */

/* ----------------------------------------------------
   HOME PAGE — HERO SECTION
----------------------------------------------------*/
/* HERO BASE */
.hero-pro {
  padding: 80px 0;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-sub {
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--accent2);
}

.hero-desc {
  margin-top: 15px;
  color: var(--muted);
  max-width: 500px;
}

.hero-socials {
  margin-top: 20px;
}

.hero-socials a {
  margin-right: 15px;
  color: var(--muted);
  text-decoration: none;
}

.hero-socials a:hover {
  color: var(--accent);
}

.stat-card {
  background: #111;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #222;
}

.stat-card h2 {
  color: var(--accent);
}
.hero-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2.5rem;
  padding:2rem 0;
}

.hero-image-wrap{flex-shrink:0;}

.hero-image{
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:20%;
  border:4px solid #7F00FF;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
  transition:0.3s ease;
  opacity:.85;
  box-shadow:0 8px 30px rgba(128,0,255,.57);
}

.hero-image:hover{transform:scale(1.05);}

/* Buttons */
.hover-grow{transition:.25s ease;}
.hover-grow:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}
.ghost:hover{background-color:#7F00FF;}

/* Home Projects (large grid) */
.project-large-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2rem;
  margin-top:1.5rem;
}

.project-large-card {
  background: linear-gradient(145deg, #0a0a0a, #111);
  border-radius: 20px;
  padding: 1rem;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.project-large-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, #7F00FF, transparent);
  opacity: 0;
  transition: 0.5s;
}

.project-large-card:hover::before {
  opacity: 0.08;
}

.project-large-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.project-img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:14px;
}

.project-content{margin-top:1rem;}

.project-links a{
  margin-right:1rem;
  color:var(--accent2);
  font-weight:600;
}

@media(max-width:768px){
  .hero-flex{flex-direction:column-reverse;text-align:center;}
  .hero-image{width:200px;height:200px;}
  .project-large-grid{grid-template-columns:1fr;}
}

/* ----------------------------------------------------
   SKILLS PAGE
----------------------------------------------------*/
.skills-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
  margin-top:1.5rem;
}

.skill-card{
  background:#111;
  color:#fff;
  padding:1.5rem;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  font-size:1.05rem;
  transition:.3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:0 10px 30px rgba(127,0,255,0.25);
}

.skill-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(127,0,255,0.4);
}

@media(max-width:768px){
  .skill-card{padding:1rem;font-size:1rem;}
}
/* ----------------------------------------------------
   PROJECT DETAIL PAGE
----------------------------------------------------*/
.project-image-wrapper{
  display:flex;
  justify-content:center;
  width:100%;
  margin:20px 0;
}
/* ================= BANNER ================= */
.project-banner img{
  width:100%;
  max-height:400px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:40px;
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:0 8px 30px rgba(128,0,255,.57);
}

/* ================= LAYOUT ================= */
.project-layout{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

/* LEFT */
.project-main{
  flex:2;
}

/* RIGHT */
.project-sidebar{
  flex:1;
  background:#111;
  padding:20px;
  border-radius:16px;
  border:1px solid #222;
  height:fit-content;
}

/* TECH STACK */
.tech-stack{
  margin-top:10px;
}

.tech-stack span{
  display:inline-block;
  background:#1a1a1a;
  padding:6px 12px;
  border-radius:8px;
  margin:5px;
  font-size:0.9rem;
}

/* ACTION BUTTONS */
.project-actions{
  margin-top:15px;
}

.project-actions a{
  display:block;
  margin-bottom:10px;
  text-align:center;
}

/* RESPONSIVE */
@media(max-width:768px){
  .project-layout{
    flex-direction:column;
  }
}
.projects-header {
  text-align:center;
  max-width:700px;
  margin:auto;
}

.project-filters {
  text-align:center;
  margin:30px 0;
}

.project-filters button {
  margin:5px;
  padding:8px 16px;
  border:none;
  border-radius:20px;
  background:#111;
  color:#fff;
  cursor:pointer;
}

.project-filters .active {
  background:var(--accent);
}


/* TAG */
.tag {
  background:var(--accent);
  padding:5px 10px;
  border-radius:8px;
  font-size:0.8rem;
}

.project-body {
  padding-top:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .featured-project{
    flex-direction:column;
    text-align:center;
  }

  .featured-image img{
    width:100%;
  }
}
.project-image{
  width:100%;
  max-width:850px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:0 8px 30px rgba(128,0,255,.57);
  background:var(--glass);
  transition:.25s ease;
}
.badge {
  display:inline-block;
  background:var(--accent);
  padding:6px 12px;
  border-radius:20px;
  font-size:0.75rem;
  margin-bottom:10px;
}
/* spacing between each project */
.project-item{
  margin-bottom:50px;
}

/* alternate layout (zig-zag like Apple sites) */
.project-item:nth-child(even){
  flex-direction:row-reverse;
}
.project-image:hover{
  transform:scale(1.015);
  box-shadow:0 12px 40px rgba(128,0,255,0.8);
}

/* GRID */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

.project-card-pro {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid #222;
}

.project-card-pro:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(127,0,255,0.3);
}
.project-hero {
  text-align: center;
  margin-bottom: 30px;
}

.project-details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.project-main {
  flex: 2;
}

.project-sidebar {
  flex: 1;
  background: #111;
  padding: 20px;
  border-radius: 12px;
}
/* ================= PAGE ================= */
.center{text-align:center;}
.page-title{font-size:2.5rem;font-weight:700;}
.page-sub{color:var(--muted);margin-top:10px;}

.section{margin:60px 0;}
.section-title{margin-bottom:25px;}

/* ================= FEATURED ================= */
.featured{
  display:flex;
  gap:40px;
  align-items:center;
  background:linear-gradient(135deg,#0f0f0f,#1a1a1a);
  padding:30px;
  border-radius:16px;
  margin-bottom:50px;
  box-shadow:0 4px 15px rgba(128,0,255,.57);
}
.featured-project {
  display:flex;
  gap:40px;
  align-items:center;
  background:linear-gradient(135deg,#0f0f0f,#1a1a1a);
  padding:30px;
  border-radius:16px;
  margin-bottom:50px;
}
.featured-content h2 {
  margin:10px 0;
}
.featured-image img {
  width:320px;
  border-radius:12px;
}
.featured-text h2{
  margin:10px 0;
}
.featured-img {
  width: 300px;
  border-radius: 12px;
}
.featured-img img{
  width:320px;
  border-radius:12px;
}
/* ================= GRID ================= */
.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

/* ================= CARD ================= */
.project-card{
  background:#111;
  border-radius:16px;
  overflow:hidden;
  transition:0.3s ease;
  border:1px solid #222;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.project-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(127,0,255,0.2);
}

.project-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.project-content{
  padding:15px;
}

/* ================= LINKS ================= */
.links{
  margin:10px 0;
}

.links a{
  margin-right:12px;
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}
/* ================= EMPTY ================= */
.empty{
  text-align:center;
  padding:40px;
  background:#111;
  border-radius:12px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .featured{
    flex-direction:column;
    text-align:center;
  }

  .featured-img img{
    width:100%;
  }
}
/* ----------------------------------------------------
   PROJECT LIST PAGE
----------------------------------------------------*/


@media(max-width:768px){
  .grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .project-item{
    flex-direction: column !important;
  }

  /* 🔥 FORCE TEXT FIRST, IMAGE BELOW */
  .featured-text{
    order: 1;
  }

  .featured-img{
    order: 2;
  }
  .featured{
    text-align:center;
    gap:20px;
  }

  .featured-img img{
    width:100%;
    max-width:350px;
    margin:auto;
  }
}
/* ----------------------------------------------------
   CERTIFICATES PAGE
----------------------------------------------------*/
.card-body h3{margin:0 0 0.3rem;}
.card-body p{margin:0 0 0.5rem;color:var(--muted);}
.card-body small{color:var(--muted);}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cert-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid #222;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(127,0,255,0.3);
}

.cert-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cert-content {
  padding: 15px;
}

.cert-date {
  color: var(--accent);
  font-size: 0.9rem;
}
/* ================= CERTIFICATE ================= */

.cert-item{
  display:flex;
  gap:40px;
  align-items:center;
  background:#111;
  padding:25px;
  border-radius:16px;
  margin-bottom:40px;
  border:1px solid #222;
  transition:0.3s ease;
  box-shadow:0 4px 15px rgba(128,0,255,.57);
}

/* IMAGE */
.cert-image img{
  width:300px;
  border-radius:12px;
  object-fit:cover;
}

/* DETAILS */
.cert-details h2{
  margin-bottom:10px;
}

.issuer{
  color:var(--accent);
  font-weight:600;
}

.date{
  color:var(--muted);
  margin-top:5px;
}

/* ACTION */
.cert-actions{
  margin-top:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cert-item{
    flex-direction:column;
    text-align:center;
  }

  .cert-image img{
    width:100%;
  }
}
/* ----------------------------------------------------
   CONTACT PAGE
----------------------------------------------------*/
.contact-card{
  max-width:600px;
  margin:2rem auto;
  background:#111;
  padding:2rem;
  border-radius:16px;
  border:1px solid #222;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
}
.contact-wrapper{
  max-width:1000px;
  margin:60px auto;
  padding:40px;
  border-radius:20px;
  background:linear-gradient(135deg,#050505,#0f0f0f);
  border:1px solid #222;
  box-shadow:
    0 0 80px rgba(127,0,255,0.15),
    inset 0 0 40px rgba(127,0,255,0.08);
}

/* HEADER */
.contact-header{
  text-align:center;
  margin-bottom:40px;
}

.contact-header h2{
  font-size:2.2rem;
}

.contact-header p{
  color:var(--muted);
}

/* GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
}

/* LEFT PANEL */
.contact-left{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.contact-box{
  background:#111;
  padding:20px;
  border-radius:14px;
  border:1px solid #222;
  margin-bottom:15px;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(127,0,255,0.25);
}

.contact-box:hover{
  transform:translateY(-5px);
}

.contact-box span{
  color:var(--accent);
  font-weight:600;
}

/* RIGHT FORM */
.contact-form{
  background:#111;
  padding:25px;
  border-radius:16px;
  border:1px solid #222;
  box-shadow:0 10px 40px rgba(127,0,255,0.25);
}

/* INPUT */
.input-field{
  position:relative;
  margin-bottom:20px;
}

.input-field input,
.input-field textarea{
  width:100%;
  padding:12px 14px;
  background:#0b0b0b;
  border-radius:10px;
  border:1px solid #333;
  color:#fff;
  outline:none;
}

.input-field input:focus,
.input-field textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 10px rgba(127,0,255,0.4);
}

/* BUTTON */
.submit-btn{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:none;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}

.submit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(127,0,255,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}
.success-popup{
  position: fixed;
  top: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border: 1px solid rgba(127,0,255,0.4);

  padding: 12px 16px;
  border-radius: 12px;

  color: #fff;
  font-size: 0.9rem;

  box-shadow: 0 10px 30px rgba(127,0,255,0.3);

  animation: slideIn 0.5s ease, fadeOut 0.5s ease 3s forwards;
  z-index: 999;
}

.success-popup i{
  width: 18px;
  height: 18px;
  stroke: #7F00FF;
}

/* ANIMATION */
@keyframes slideIn{
  from{
    opacity:0;
    transform:translateX(50px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeOut{
  to{
    opacity:0;
    transform:translateX(50px);
  }
}
.contact-pro {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
}
.contact-right {
  flex: 1;
  background: #111;
  padding: 20px;
  border-radius: 16px;
}
.contact-info p {
  margin-top: 10px;
  color: var(--muted);
}
.contact-card h2{
  text-align:center;
  margin-bottom:1.5rem;
  font-size:1.8rem;
  color:var(--accent);
}
.success{
  color:#4caf50;
  text-align:center;
  margin-bottom:1rem;
  font-weight:600;
}
.form-group{
  display:flex;
  flex-direction:column;
  margin-bottom:1rem;
}
.form-group label{
  margin-bottom:.5rem;
  color:#e0e0e0;
  font-weight:600;
}
.form-group input,
.form-group textarea{
  padding:10px 14px;
  background:#0b0b0b;
  border-radius:10px;
  border:1px solid #444;
  color:#fff;
  transition:.3s ease;
}
.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 8px rgba(127,0,255,0.4);
}
@media(max-width:768px){
  .contact-card{padding:1.5rem;}
}

/* ----------------------------------------------------
   ABOUT PAGE
----------------------------------------------------*/
.about-card{
  max-width:900px;
  margin:2rem auto;
  background:#111;
  padding:2rem;
  border-radius:16px;
  border:1px solid #222;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
}

.about-card h2{
  text-align:center;
  margin-bottom:1.5rem;
  color:var(--accent);
}

.about-flex{
  display:flex;
  gap:2rem;
  align-items:flex-start;
}

.about-image{
  width:200px;
  height:300px;
  object-fit:cover;
  border-radius:10%;
  border:4px solid var(--accent);
  box-shadow:0 10px 20px rgba(127,0,255,0.3);
  transition:.3s ease;
}

.about-image:hover{transform:scale(1.05);}

.about-info p{
  margin-bottom:.8rem;
  color:#e0e0e0;
}

.about-info h3{
  margin-top:1rem;
  margin-bottom:.8rem;
  color:var(--accent);
}

.about-info ul{
  list-style:disc inside;
  color:#ccc;
}

@media(max-width:768px){
  .about-flex{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }
}
.about-hero {
  text-align: center;
  margin-bottom: 40px;
}

.about-tagline {
  color: var(--muted);
}

.about-card-pro {
  background: #111;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #222;
}

.about-highlights {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about-highlights div {
  background: #1a1a1a;
  padding: 10px 14px;
  border-radius: 10px;
}
/* ----------------------------------------------------
   FUTURISTIC FOOTER
----------------------------------------------------*/
/* ================= PREMIUM FOOTER ================= */
.site-footer{
  margin-top:100px;
  padding:60px 20px 25px;

  background: radial-gradient(circle at top, #0a0a0a, #000);
  border-top: 1px solid rgba(255,255,255,0.06);

  position: relative;
  overflow: hidden;
}

/* 🔥 GLOW LINE */
.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:60%;
  height:2px;

  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow:0 0 25px var(--accent);
}

/* GRID */
.footer-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:40px;
}

/* BRAND */
.footer-brand{
  font-size:1.6rem;
  font-weight:800;

  background: linear-gradient(90deg, #7F00FF, #9b4dff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  margin-bottom:6px;
}

.footer-tagline{
  color:var(--muted);
  font-size:0.9rem;
}

/* HEADINGS */
.footer-center h4,
.footer-right h4{
  font-size:0.9rem;
  color:#fff;
  margin-bottom:10px;
}

/* LINKS */
.footer-center a,
.footer-right a{
  display:flex;
  align-items:center;
  gap:8px;

  color:var(--muted);
  text-decoration:none;
  font-size:0.9rem;

  margin:6px 0;
}

/* SUBTLE PREMIUM HOVER */
.footer-center a:hover,
.footer-right a:hover{
  color:#fff;
}

/* ICON */
.footer-right i{
  width:16px;
  height:16px;
  stroke: var(--accent);
}

/* BOTTOM */
.footer-bottom{
  margin-top:40px;
  padding-top:15px;

  border-top:1px solid rgba(255,255,255,0.05);
  text-align:center;

  color:var(--muted);
  font-size:0.8rem;
}
.footer-left,
.footer-center,
.footer-right{
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* 👈 KEY FIX */
}
.footer-center h4,
.footer-right h4{
  margin: 0 0 12px 0;   /* 👈 remove default spacing issues */
  font-size: 0.95rem;
  color: #fff;
}
.footer-center a,
.footer-right a{
  display: flex;
  align-items: center;

  gap: 8px;

  margin: 4px 0;      /* 👈 tighter + equal spacing */
  padding: 2px 0;

  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-center,
.footer-right{
  gap: 2px;
}
/* RESPONSIVE */
@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-center a,
  .footer-right a{
    justify-content:center;
  }
}
/* ----------------------------------------------------
   PAGE ANIMATIONS
----------------------------------------------------*/
/* DEFAULT (hidden state) */
.page-animate{
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s ease;
}

/* FADE UP */
.fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

/* FADE DOWN */
.fade-down{
  transform: translateY(-40px);
}
.fade-down.show{
  opacity: 1;
  transform: translateY(0);
}

/* FADE LEFT */
.fade-left{
  transform: translateX(-60px);
}
.fade-left.show{
  opacity: 1;
  transform: translateX(0);
}

/* FADE RIGHT */
.fade-right{
  transform: translateX(60px);
}
.fade-right.show{
  opacity: 1;
  transform: translateX(0);
}

/* SIMPLE APPEAR */
.fade-in{
  transform: scale(0.95);
}
.fade-in.show{
  opacity: 1;
  transform: scale(1);
}
/* FIXED LUCIDE ICON SIZE */
.lucide{
  width: 1.5em;
  height: 1.5em;

  stroke: #fff;
  stroke-width: 2;

  margin-right: 6px;

  vertical-align: middle;
  transform: translateY(-1px); /* fine alignment */
}


