/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ========================================
   CUSTOM CONTAINER WIDTH
======================================== */

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1300px;
}

/* ========================================
   SECTION TITLES SYSTEM
======================================== */

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-divider {
  width: 100px;
  height: 2px;
  margin: 15px auto 50px auto;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0),
    rgba(207,163,159,0.6),
    rgba(216,183,178,0.8),
    rgba(207,163,159,0.6),
    rgba(0,0,0,0)
  );

  background-size: 200% 100%;
  animation: dividerFlow 8s ease infinite;
}
@keyframes dividerFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========================================
   GLOBAL
======================================== */
body {
  font-family: 'Barlow', sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


img {
  max-width: 100%;
  display: block;
}

/* ========================================
   SECTION SPACING SYSTEM
======================================== */

section {
  padding: 90px 0;
}

@media (max-width: 768px){
  section {
    padding: 60px 30px;
  }
}



/* ========================================
   HEADER (HERO BLOCK)
======================================== */

header {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    180deg,
    #000000,
    #111111,
    #1a1a1a,
    #0d0d0d,
    #000000
  );

  background-size: 100% 300%;
  animation: gradientShift 18s ease-in-out infinite;
}
/* ========================================
   QUIDDITI LOGO
======================================== */

.quidditi-logo{
  width:420px;
  height:420px;
  margin:auto;

  background:linear-gradient(
    120deg,
    #ff2d75,
    #7b61ff,
    #3aa7ff,
    #00e5c3,
    #ff8a00
  );

  background-size:600% 600%;
  animation:quidditiLiquid 18s ease-in-out infinite;

  mask:url("../images/logo.png") no-repeat center;
  mask-size:contain;

  -webkit-mask:url("../images/logo.png") no-repeat center;
  -webkit-mask-size:contain;
}

@keyframes quidditiLiquid{
  0%{background-position:0% 50%;}
  25%{background-position:100% 0%;}
  50%{background-position:100% 100%;}
  75%{background-position:0% 100%;}
  100%{background-position:0% 50%;}
}

/* ========================================
   HERO
======================================== */

.hero {
text-align: center;
padding: 40px 0 60px;
}

.hero h1 {
font-size: 44px;
font-weight: 800;
letter-spacing: 0.02em;
margin-bottom: 12px;
}

.hero p {
font-size: 18px;
color: #555;
max-width: 700px;
margin: auto;
}

/* ========================================
   SERVICES
======================================== */

.service-card {
    text-align: center;
    height: 100%;
    padding: 45px 35px;
    border-radius: 12px;

    /* softer border */
    border: 1px solid #e7d0cf;

    /* shadow (very important for depth) */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);

    /* smooth interaction */
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    border-color: #c98282;
    background: #faf7f6;
}
.service-icon{
  font-size:38px;
  margin-bottom:22px;
}
.service-icon svg {
    font-size: 38px;

    /* THIS is what controls duotone */
    --fa-primary-color: #c98282;
  --fa-primary-opacity: 0.55; /*  add this */
    --fa-secondary-color: #cfc7bd;
    --fa-secondary-opacity: 0.4;

    transition: all 0.3s ease;
}

.service-icon:hover svg {
    transform: translateY(-3px) scale(1.05);
    --fa-secondary-opacity: 0.5;
}
.service-card h3{
  font-size:18px;
  margin-bottom:12px;
}

.service-card p{
  font-size:14px;
  color:#444;
  line-height:1.6;
}

/* ========================================
   PROJECT SECTION
======================================== */

.project-section{
  background:#f5f5f5;
}

.project-section h2{
  margin-bottom:15px;
}


.project-lead {
  max-width: 700px;
  margin: 0 auto 25px auto;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}
/* ========================================
   FORM
======================================== */

form .form-control{
  padding:18px;
  font-size:15px;
}

/* ========================================
   FOOTER
======================================== */

footer{
  background:#000;
  
  color:#fff;
}

footer p{
  font-size:13px;
  letter-spacing:0.04em;
}
/* ========================================
   SPACING SYSTEM
======================================== */

/* Padding - Y (top + bottom) */
.py-20 { padding-top: 20px; padding-bottom: 20px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-120 { padding-top: 120px; padding-bottom: 120px; }
.py-160 { padding-top: 160px; padding-bottom: 160px; }

/* Padding - Top */
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }
.pt-120 { padding-top: 120px; }
.pt-160 { padding-top: 160px; }

/* Padding - Bottom */
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }
.pb-120 { padding-bottom: 120px; }
.pb-160 { padding-bottom: 160px; }

/* Margin - Bottom (most commonly used) */
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mb-120 { margin-bottom: 120px; }

/* ========================================
   FORM CLEAN STYLE
======================================== */

.form-control {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: none;
  padding: 18px;
}

.form-control:focus {
  border-color: #000;
  box-shadow: none;
  outline: none;
}
/* ========================================
   FORM MESSAGE
======================================== */

.form-message {
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.form-success {
  background: #e6f7ec;
  color: #1e7e34;
  border: 1px solid #b7e4c7;
}

.form-error {
  background: #fdecea;
  color: #c82333;
  border: 1px solid #f5c6cb;
}
/* ========================================
   RESPONSIVE SPACING
======================================== */

@media (max-width: 768px) {
 
  .py-md-80 { padding-top: 80px; padding-bottom: 80px; }
  .py-md-120 { padding-top: 120px; padding-bottom: 120px; }

  .pt-md-80 { padding-top: 80px; }
  .pb-md-80 { padding-bottom: 80px; }

  .quidditi-logo {
    width: 320px;
    height: 320px;
    
}
   header {
    background: #000;
    height: auto;
    padding: 100px 20px 40px;
    display: block;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
  .hero {
    text-align: center;
    padding: 60px 30px; 
}
  .project-lead {
    max-width: auto;
    margin: 0 auto 25px auto;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}
   .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo-text {
    color: #fff;
    font-family: "quicksand", sans-serif;
    font-size: 12.5px!important;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
   .top-nav {
    position: relative;
    z-index: 1000;
    padding:0 20px;
  }
  nav {
    display: flex;
    gap: 20px!important;
}
  .ai-assistant {
  position: fixed;
  top: 62%!important;
  left: 20px;
  transform: translateY(-50%);
  z-index: 9999;
}
  .ai-assistant.minimized {
    opacity: 0.2;
    pointer-events: auto; /* FIX */
    transition: all 0.3s ease;
}

}
/* AI Assistant Wrapper */
.ai-assistant {
  position: fixed;
  top: 50%;
  left: 65px;
  transform: translateY(-50%);
  z-index: 9999;
}

/* Card */
.ai-card {
  border: 2px solid #e5e5e5;
  border-radius: 15px;
  width: 90px;
  height: 90px;
  padding: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  opacity: 0;
  transform: translateY(20px);
  animation: aiFadeIn 0.6s ease forwards;
}
/* Avatar */
.ai-avatar {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.ai-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.ai-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.ai-card p {
  font-size: 14px;
  color: #555;
}

/* Animations */
@keyframes aiFadeIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes aiFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.ai-card h3,
.ai-card p {
  display: none;
}
.ai-card {
  animation: aiFadeIn 0.6s ease forwards, aiPulse 2.5s ease-in-out infinite;
}
@keyframes aiPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  50% {
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
  }
}
/* Chat panel */
.ai-chat-panel {
  position: fixed;
  top: 50%;
  left: -45px;
  transform: translateY(-50%) scale(0.9);

  width: 320px;
  height: 420px;

  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e5e5;

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

  opacity: 0;
  pointer-events: none;

  transform-origin: left center;
  transition: all 0.3s ease;
}

/* Active state */
.ai-chat-panel.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* Header */
.ai-chat-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* Body */
.ai-chat-body {
  padding: 15px;
  font-size: 14px;
  color: #444;

  height: calc(100% - 110px);
  overflow-y: auto;
}
.ai-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ai-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.ai-chat-title {
  font-size: 14px;
  font-weight: 600;
}
.ai-chat-input {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  gap: 10px;

  padding: 12px;
  border-top: 1px solid #eee;
  background: #fff;
}

.ai-chat-input input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}

.ai-chat-input button {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 8px;

  background: #000;
  color: #fff;

  cursor: pointer;
  transition: all 0.2s ease;
}

.ai-chat-input button:hover {
  background: #222;
}
.ai-attach {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 16px;
  colour:#ddd;
}
.ai-user-msg {
  background: #222222;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  max-width: 80%;
  margin-left: auto;
  font-size: 13px;
}

.ai-bot-msg {
  background: #f5f5f5;
  color: #222;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  max-width: 80%;
  font-size: 13px;
}
.ai-options ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.ai-options li {
  margin-bottom: 6px;
}
.ai-lead {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-lead-text {
  font-size: 14px;
  margin-bottom: 6px;
}

.ai-input-field {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 13px;
}

.ai-submit-btn {
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.ai-avatar-wrap {
  position: relative;
  display: inline-block;
}

.ai-badge-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;

  width: 42px;
  height: 42px;

  background: 
    #ff8a00;
 

  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  border: 2px solid #fff;
   animation: badgeFloat 4s ease-in-out infinite,
             gradientShift 8s ease infinite;
}
@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* FULL SCREEN CENTER */
.access-wrapper {
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  position: relative;
}

.access-wrapper::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  background: radial-gradient(
    circle,
    rgba(123, 97, 255, 0.12),
    rgba(0, 0, 0, 0) 70%
  );

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  filter: blur(80px);
  z-index: 0;
}
/* CARD */
.access-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TITLE */
.access-card h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.access-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* INPUT */
.access-card input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 14px;
}

/* BUTTON */
.access-card button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* ERROR */
.error {
  color: #c00;
  margin-bottom: 15px;
}
.access-nav {
  width: 100%;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.access-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left img {
  height: 40px;
}

.nav-right a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  opacity: 0.7;
  transition: 0.3s;
}

.nav-right a:hover {
  opacity: 1;
}
/* =========================
   TOP NAV OVER HEADER
========================= */

.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SMALL LOGO (optional) */

.nav-logo-small {
  width: 120px;
  height: 40px;

  background: linear-gradient(
    120deg,
    #ff2d75,
    #7b61ff,
    #3aa7ff,
    #00e5c3,
    #ff8a00
  );

  background-size: 600% 600%;
  animation: quidditiLiquid 18s ease-in-out infinite;

  mask: url("../images/logo.png") no-repeat center;
  mask-size: contain;

  -webkit-mask: url("../images/logo.png") no-repeat center;
  -webkit-mask-size: contain;
}

/* NAV LINKS */

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}
/* DEFAULT (all pages) */
.nav-logo-text {
  display: none;
}

.nav-logo-icon {
  display: block;
}

/* HOMEPAGE ONLY */
.index .nav-logo-icon {
  display: none;
}

.index .nav-logo-text {
  display: block;
}

/* TEXT STYLING */
.nav-logo-text {
  color: #fff;
  font-family: "quicksand", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
body:not(.index) .quidditi-logo {
  display: none;
}

/* also shrink header on inner pages */
/* FIX HEADER ON INNER PAGES */
body:not(.index) header {
  height: auto;
  min-height: 130px;
  padding: 0;
}
.nav-logo-icon {
  height: 90px;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-chat-title {
  flex: 1;
}

#aiClose {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}
/* =========================
   ADMIN DASHBOARD
========================= */

body.admin {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
}

/* SIDEBAR */
.admin-sidebar {
    width: 220px;
    background: #1f2937;
    height: 100vh;
    color: #fff;
    padding: 20px;
}

.admin-sidebar h2 {
    font-size: 16px;
    margin-bottom: 20px;
}

.admin-sidebar a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 10px 0;
}

.admin-sidebar a:hover {
    color: #fff;
}

/* MAIN */
.admin-main {
    flex: 1;
    padding: 30px;
    background: #f5f5f5;
}

/* CARD */
.admin-card {
    background: #7fbdb6;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    width: 300px;
}

.admin-card a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
/* =========================
   GRADIENT SYSTEM
========================= */

/* Shared animation */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Base settings (optional helper if you want consistency) */
.gradient-soft,
.gradient-blush,
.gradient-stone {
    background-size: 300% 300%;
    animation: gradientFlow 28s ease infinite;
}

/* 1. Soft neutral (best for forms) */
.gradient-soft {
    background: linear-gradient(
        120deg,
        #f7f3ef,
        #efe7e2,
        #f3e9e6,
        #f7f3ef
    );
}

/* 2. Blush-led (more brand presence) */
.gradient-blush {
    background: linear-gradient(
        120deg,
        #f7f3ef,
        #f1e8e4,
        #eadfdb,
        #f3e9e6,
        #f7f3ef
    );
    background-size: 300% 300%;
    animation: gradientFlow 32s ease infinite;
}
/* 3. Stone / sand (editorial, calm) */
.gradient-stone {
    background: linear-gradient(
        120deg,
        #f7f3ef,
        #e8dfd5,
        #d9d0c7,
        #efe7e2,
        #f7f3ef
    );
    animation-duration: 30s;
}

/* =========================
   FORM WRAPPER (STONE PANEL)
========================= */



/* =========================
   INPUTS (refined Bootstrap)
========================= */

.project-form .form-control {
background: rgba(255, 255, 255, 0.35);
backdrop-filter: blur(6px);    border: 1px solid #ddd3ca;
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.25s ease;
}

.project-form .form-control:focus {
    border-color: #c98282;
    box-shadow: 0 0 0 2px rgba(201, 130, 130, 0.1);
    outline: none;
}

.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.project-form .btn-dark:hover .btn-arrow {
    transform: translateX(4px);
}
/* =========================
   BUTTON (GRADIENT OVERRIDE)
========================= */

.project-form .btn-dark {
    background: linear-gradient(
        120deg,
        #cfa39f,
        #d8b7b2,
        #e6cfc9
    );
    color: #ffffff;
    border: none;
    border-radius: 10px;
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.project-form .btn-dark:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}

.btn-brand {
    background: linear-gradient(
        120deg,
        #cfa39f,
        #b8a6c9,
        #8f7de8
    );
    color: #ffffff;
    border: none;
    border-radius: 10px;
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}
/* =========================
   BUTTON SYSTEM
========================= */

/* 1. Primary (what you already have) */
.btn-primary-soft {
    background: linear-gradient(
        120deg,
        #cfa39f,
        #d8b7b2,
        #e6cfc9
    );
    color: #ffffff;
    border: none;
    border-radius: 10px;
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.btn-primary-soft:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}


/* 2. Brand (blush → purple) */
.btn-brand {
    background: linear-gradient(
        120deg,
        #cfa39f,
        #b8a6c9,
        #8f7de8
    );
    color: #ffffff;
    border: none;
    border-radius: 10px;
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}


/* 3. Tech (blue → teal → green from logo) */
.btn-tech {
    background: linear-gradient(
        120deg,
        #3aa7ff,
        #00e5c3,
        #7ed6a5
    );
    color: #ffffff;
    border: none;
    border-radius: 10px;
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.btn-tech:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
}



/* =========================
   DIVIDER SYSTEM
========================= */

/* base animation */
@keyframes dividerFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* 1. Soft blush divider */
.divider-soft {
  width: 100px;
  height: 2px;
  margin: 15px auto 50px auto;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0),
    rgba(207,163,159,0.6),
    rgba(216,183,178,0.8),
    rgba(0,0,0,0)
  );

  background-size: 200% 100%;
  animation: dividerFlow 8s ease infinite;
}


/* 2. Brand divider (blush → purple hint) */
.divider-brand {
  width: 100px;
  height: 2px;
  margin: 15px auto 50px auto;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0),
    rgba(200,160,190,0.6),
    rgba(143,125,232,0.7),
    rgba(0,0,0,0)
  );

  background-size: 200% 100%;
  animation: dividerFlow 8s ease infinite;
}


/* 3. Tech divider (blue → teal → green) */
.divider-tech {
  width: 100px;
  height: 2px;
  margin: 15px auto 50px auto;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0),
    rgba(58,167,255,0.6),
    rgba(0,229,195,0.7),
    rgba(126,214,165,0.6),
    rgba(0,0,0,0)
  );

  background-size: 200% 100%;
  animation: dividerFlow 8s ease infinite;
}
/* =========================
   PREMIUM BLACK GRADIENT
========================= */

.bg-gradient-black {
    background: linear-gradient(
        180deg,
        #000000,
        #111111,
        #1a1a1a,
        #0d0d0d,
        #000000
    );
    background-size: 100% 300%;
    animation: gradientShift 18s ease-in-out infinite;
}


/* Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}