/* ====== CSS RESET ====== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth;}
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.6; background: #171625; color: #fff; font-family: 'Montserrat', Arial, sans-serif; }

/* ====== VARIABLES ====== */
:root {
  --accent: #ae7aff;
  --accent-dark: #7a36e8;
  --bg: #171625;
  --header-bg: rgba(18, 16, 35, 0.92);
  --section-bg: transparent;
  --radius: 1.1em;
  --max-width: 1120px;
  --nav-height: 68px;
  --font-main: 'Montserrat', Arial, sans-serif;
  --font-logo: 'Montserrat', Arial, sans-serif;
  --transition: 0.16s cubic-bezier(.45, .14, .36, 1);
  --shadow: 0 6px 36px 0 rgba(30,12,56,0.16);
}


a,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
  outline: none;
  box-shadow: none;
}

a, a:visited, a:hover, a:active {
    text-decoration: none;
  }
  

  /* Contact Form - White Inputs */
#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.75em 1em;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: On focus or hover */
#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact textarea:focus {
  border-color: #b98eff;
  box-shadow: 0 0 0 2px rgba(185, 142, 255, 0.3);
  outline: none;
}

/* ========== PARTICLES ========== */
/* Don't touch! Only layout beneath it. */
#particles-js {
  position: fixed;
  width: 100vw;
  height: 100vh;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ========== HEADER / NAV ========== */
/* header {
  position: sticky;
  top: 0;
  width: 100vw;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--header-bg);
  z-index: 100;
  box-shadow: var(--shadow);
  padding: 0 3vw;
} */

section.banner .content,
section.spotlight .content {
  background: rgba(23, 19, 38, 0.65); /* semi-transparent dark */
  padding: 1.5em 1.2em;
  border-radius: 14px;
  backdrop-filter: blur(4px); /* optional: makes background feel glassy */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* soft depth */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--header-bg);
    z-index: 999; /* higher than content */
    box-shadow: var(--shadow);
    padding: 0 3vw;
  }
  
.logo {
  display: flex;
  align-items: center;
  gap: 0.66em;
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1.23rem;
}
.logo-circle {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  font-weight: 700;
  margin-right: 6px;
  letter-spacing: 0.01em;
}
.logo-text {
  font-size: 1.07em;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Side name & up-arrow on desktop only */
.vertical-name {
	position: absolute;
	left: 50px;           /* Adjust to push away from the edge */
	top: 280px;           /* Adjust for vertical position */
	writing-mode: vertical-lr;   /* Flipped upwards */
	text-orientation: mixed;
	font-family: 'Montserrat', Arial, sans-serif;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 12px;
	font-size: 1.5rem;
	font-weight: 500;
	user-select: none;
	pointer-events: none;
	z-index: 10;
	transform: rotate(180deg);
  }
  .vertical-name {
    background: linear-gradient(top, #ae7aff, #ffffff);
   
  }
  .vertical-name {
    color: #fff;
    text-shadow: 0 0 4px #ae7aff,
                 0 0 8px #ae7aff,
                 0 0 12px #7a36e8;
    font-weight: 700;
    letter-spacing: 12px;
  }
  
  
  .vertical-arrow {
    position: absolute;        /* use fixed for scroll-to-top buttons */
    left: 53px;
    top: 700px;           /* use bottom for fixed positioning */
    font-size: 3.4rem;
    opacity: 0.70;
    z-index: 2000;          /* big number, just to be safe */
    cursor: pointer;
    color: #ffffff;
    transition: opacity .15s;
    text-decoration: none;
    background: none;
    border: none;
    display: none;
  }
  .vertical-arrow.visible { display: block;}
  .vertical-arrow:hover { opacity: 1;}
  .vertical-arrow.visible {
    opacity: 1;
    pointer-events: auto;
  }

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 120;
  padding: 10px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.burger span {
  display: block;
  height: 3px;
  width: 22px;
  background: #fff;
  border-radius: 2px;
  margin: 0;
  transition: all .17s;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.7vw;
  position: static;
  background: none;
}
nav a, nav .btn {
  color: #fff;
  text-decoration: none;
  font-size: 1.06rem;
  padding: 7px 0;
  border-radius: 7px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
nav .btn,
nav a.btn {
  background: var(--accent);
  color: #fff;
  padding: 9px 19px;
  font-size: 0.8em;
  font-weight: 700;
  margin-left: 14px;
  border-radius: 8px;
  transition: background var(--transition);
}
nav .btn:hover,
nav a:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* Slide in from right */
/* @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .image img {
    opacity: 0;
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 0.3s; /* Optional delay */
  /* } */
 
  .slide-in-section {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideIn 1.1s ease-out forwards;
  }

  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .slide-delay-1 { animation-delay: 0.3s; }
  .slide-delay-2 { animation-delay: 0.6s; }
  .slide-delay-3 { animation-delay: 0.9s; }

  .faq-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(193, 192, 194, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .button {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
  }
  
  .button::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    border-radius: 100%;
    transition: width 0.4s ease, height 0.4s ease;
  }
  
  .button:hover::after {
    width: 220%; height: 500%;
  }
  .image img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .image img:hover {
    filter: grayscale(0%);
  }
  
/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 68vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-bg);
  padding: 80px 5vw 60px 5vw;
  z-index: 2;
}
.hero .content {
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0.02em;
}
.bold-p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #e8e7fb;
  margin-bottom: 30px;
  margin-top: 4px;
  line-height: 1.45;
}
.pulse { animation: pulseColor 2.3s infinite alternate; }
@keyframes pulseColor {
  from { color: #e8e7fb; }
  to { color: var(--accent); }
}
.hero .actions {
  margin-top: 18px;
}

/* ========== SECTIONS ========== */
#wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0 1vw 40px 1vw;
}

section, .wrapper.align-center {
  width: 100%;
  margin: 0 auto 60px auto;
  padding: 48px 5vw 32px 5vw;
  background: var(--section-bg);
  border-radius: var(--radius);
  box-shadow: none;
}

.faq-heading h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
section.banner,
section.spotlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 44px;
  margin-bottom: 60px;
}
section.banner .content, section.spotlight .content {
  flex: 1 1 350px;
  min-width: 260px;
}
section.banner .image, section.spotlight .image, #personal-img {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.banner img, section.spotlight img, #personal-img {
  width: 100%;
  max-width: 340px;
  border-radius: 1.2em;
  box-shadow: 0 10px 44px 0 rgba(40,24,80,0.10);
  object-fit: cover;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem;}
h2 { font-size: 1.6rem; margin-bottom: 10px;}
h3 { font-size: 1.1rem; margin-bottom: 8px;}

/* ========== LISTS, ULs, FAQs, BLOCKQUOTES ========== */
ul, .actions {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.bold-l {
  font-weight: 600;
}
blockquote {
  font-size: 1.13rem;
  font-style: italic;
  color: #cbbffa;
  background: rgba(174,122,255,0.08);
  border-left: 4px solid var(--accent);
  padding: 16px 22px;
  border-radius: 0.7em;
  margin: 24px 0;
}

/* ========== BUTTONS ========== */
.button, input[type=submit], .btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 14px;
  font-size: 0.8em;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  margin: 6px 0;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  outline: none;
  display: inline-block;
}
.button:hover, input[type=submit]:hover, .btn:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 8px 28px 0 rgba(90,40,160,0.10);
}
.button.primary, .btn.primary { background: var(--accent); }
.button.big, .btn.big { font-size: 1.16em; padding: 15px 32px;}
.button.wide, .btn.wide { min-width: 180px;}
.actions.stacked { display: flex; flex-direction: column; gap: 13px; align-items: center; }

/* ========== SLIDER ========== */
.basic-slider {
  margin: 0 auto 60px auto;
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  z-index: 1;
}
.slider-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}
.slide {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #201b32;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-right: 12px;
  padding: 22px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 330px;
}
.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #110e18;
  border-radius: 0.8em;
  overflow: hidden;
  margin-bottom: 16px;
}
.video-container iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.caption {
  text-align: center;
  margin-top: 6px;
}

/* ========== FAQS, FEEDBACK, CONTACT, FOOTER ========== */
.items.style1.medium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
}
.items.style1.medium section {
  background: #201b32;
  padding: 24px 18px;
  border-radius: 1em;
  box-shadow: var(--shadow);
  min-width: 230px;
  flex: 1 1 230px;
  text-align: left;
  color: #e3e2fa;
  max-width: 320px;
}

form {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: #221e37;
  padding: 32px 20px 28px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fields { display: flex; flex-wrap: wrap; gap: 18px;}
.field { flex: 1 1 180px; display: flex; flex-direction: column; }
.field.half { flex-basis: 48%; }
label { font-size: 1.06em; color: #e3e2fa; margin-bottom: 7px;}
input[type="text"], input[type="email"], textarea {
  border: none;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 1em;
  margin-bottom: 10px;
  background: #191530;
  color: #fff;
  outline: none;
  transition: box-shadow .15s;
  box-shadow: 0 1px 8px rgba(60,38,110,0.11);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  box-shadow: 0 2px 14px rgba(110,90,210,0.14);
}
input[type=submit] { margin: 10px auto 0 auto;}

footer {
  width: 100vw;
  background: none;
  border-top: 1px solid #232044;
  margin-top: 44px;
  padding: 44px 0 24px 0;
}
footer .icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 18px 0 2px 0;
}
footer .icons a {
  color: var(--accent);
  font-size: 1.34em;
  background: #201b32;
  border-radius: 50%;
  padding: 14px;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .icons a:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .18s;
  }
  
  a:hover, a:focus {
    color: var(--accent-dark);
    text-decoration: underline;
  }

  #contact .inner {
    text-align: center;
  }
  #contact h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 0.02em;
    font-weight: 800;
  }
  
  
  #contact form {
    background: rgba(42, 33, 72, 0.96); /* Lighter and more glassy */
    border-radius: 22px;
    box-shadow: 0 8px 40px 0 rgba(80,45,150,0.13);
    padding: 38px 30px 28px 30px;
    border: 1.5px solid rgba(174,122,255,0.11);
    margin: 0 auto 25px auto;
    max-width: 540px;
  }
  
  #contact .fields {
    gap: 18px;
  }
  
  #contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  background: rgba(28, 25, 40, 0.96);
  color: #fff;
  border: 1.5px solid #312051;
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 1.13em;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border 0.18s, background 0.18s;
  margin-bottom: 15px;
  outline: none;
  box-shadow: 0 1px 7px 0 rgba(120,60,160,0.08);
  font-weight: 500;
}
#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact textarea:focus {
  border: 2px solid var(--accent);
  background: rgba(34, 23, 58, 0.98);
}
#contact textarea {
  min-height: 120px;
  resize: vertical;
}
#contact input::placeholder,
#contact textarea::placeholder {
  color: #c0b9d9;
  opacity: 0.93;
  font-weight: 400;
}

  
  #contact label {
    font-size: 1.1em;
    color: #eee;
    margin-bottom: 7px;
    font-weight: 600;
    text-align: left;
    display: block;
  }
  
  #contact input[type="text"]:focus,
  #contact input[type="email"]:focus,
  #contact textarea:focus {
    box-shadow: 0 0 0 2px var(--accent), 0 2px 12px rgba(174,122,255,0.09);
  }
  
::-webkit-scrollbar { width: 8px; background: #232044;}
::-webkit-scrollbar-thumb { background: #391c44; border-radius: 8px;}

/* ========== RESPONSIVENESS ========== */

/* ----------- TABLET ----------- */
@media (max-width: 980px) {
    header {
      padding: 0 3vw;
      height: 62px;
    }
    .logo-circle { width: 32px; height: 32px; }
    .logo-text { font-size: 0.96em; }
    nav { gap: 1.4vw; }
    .hero { padding: 48px 5vw 24px 5vw; }
    .hero h1 { font-size: 2rem; }
    .bold-p { font-size: 1.07rem; }
    #wrapper, section, .wrapper.align-center {
      padding: 0 3vw 12px 3vw;
      margin-bottom: 32px;
      max-width: 94vw;
    }
    section.banner, section.spotlight {
      flex-direction: column;
      gap: 22px;
      padding: 26px 5vw 18px 5vw;
      text-align: center;
    }
    section.banner img, section.spotlight img, #personal-img {
      max-width: 320px;
      width: 85vw;
      border-radius: 0.96em;
      margin: 0 auto;
    }
    .basic-slider {
      max-width: 92vw;
      margin: 0 auto 30px auto;
      padding: 0 1vw;
    }
    .slider-track {
      gap: 10px;
      padding-bottom: 8px;
    }
    .slide { min-width: 270px; max-width: 86vw; }
    .video-container { width: 95%; }
    .items.style1.medium { gap: 16px; }
    form { padding: 20px 8vw; }
  }
  
  /* MOBILE & SMALL TABLET RESPONSIVENESS */

  @media (max-width: 680px) {
    /* BURGER MENU */
    .burger {
      display: flex !important;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 999;
    }
  
    .burger span {
      width: 25px;
      height: 3px;
      background: #fff;
      transition: all 0.3s ease-in-out;
    }
  
    nav#mainNav {
      display: none;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      background-color: #1b1122;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 10px;
      z-index: 998;
    }
  
    nav#mainNav.active {
      display: flex !important;
    }
    
    nav#mainNav a {
      display: block;
      padding: 12px 16px;
      width: 100%;
      text-align: left;
    }
  
    /* HEADER REPOSITIONING */
    header {
      flex-direction: row;
      justify-content: space-between;
      padding: 10px 16px;
    }
  
    .logo {
      font-size: 1.2rem;
    }
  
    .vertical-name,
    .vertical-arrow {
      display: none;
    }
  
    /* HERO SECTION */
    .hero .content h1 {
      font-size: 2rem;
      margin-top: 100px;
    }
  
    .hero .content p {
      font-size: 1rem;
    }
  
    .actions.stacked .button {
      width: 100%;
      font-size: 1rem;
    }
  
    /* IMAGE + TEXT SECTIONS */
    .orient-left,
    .orient-right {
      flex-direction: column-reverse !important;
      text-align: center;
    }
  
    .image img {
      width: 100%;
      height: auto;
    }
  
    .content {
      padding: 0 16px;
    }
  
    /* SLIDER ADJUSTMENT */
    .basic-slider {
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      display: flex;
    }
  
    .slide {
      min-width: 90%;
      margin: 0 5%;
      scroll-snap-align: start;
    }
  
    .video-container iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
    }

    .swipe-indicator {
        display: none;
        font-size: 14px;
        color: #ccc;
        text-align: center;
        margin-top: 10px;
        animation: swipeHint 2s ease-in-out infinite;
      }
      
      @keyframes swipeHint {
        0%, 100% { opacity: 0.2; transform: translateX(0); }
        50% { opacity: 1; transform: translateX(-6px); }
      }
      
      @media (max-width: 680px) {
        .swipe-indicator {
          display: block;
        }
      }
      
  
    .caption h3 {
      font-size: 1rem;
    }
  
    /* FORM FIELDS */
    .fields {
      flex-direction: column !important;
    }
  
    .field.half {
      width: 100% !important;
    }
  
    textarea,
    input[type="text"],
    input[type="email"] {
      font-size: 1rem;
    }
  
    /* FAQ + QUOTES GRID */
    .items.style1.medium {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
  
    blockquote {
      font-size: 1rem;
      padding: 12px 18px;
    }
  
    /* FOOTER ICONS */
    footer .icons {
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }
  
    /* SECTION PADDING */
    section,
    .wrapper {
      padding: 2em 1em !important;
    }
  
    .inner {
      padding: 0 !important;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    p.bold-p {
      font-size: 1rem;
      line-height: 1.5;
    }
  
    .button.big.wide,
    .button.small {
      font-size: 1rem;
      padding: 0.75em 1.5em;
    }

  }
  @media (max-width: 680px) {
    /* Burger Icon */
    .burger {
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1000;
      padding: 4px;
    }
  
    .burger span {
      width: 20px;
      height: 2px;
      background: #fff;
      transition: all 0.3s ease;
    }
  
    /* Compact Dropdown Menu */
    nav#mainNav {
      display: none;
      position: absolute;
      top: 48px; /* aligns just under burger */
      right: 8px;
      background-color: #1b1122;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      flex-direction: column;
      align-items: flex-start;
      padding: 8px 12px;
      gap: 3px;
      width: fit-content;
      min-width: 140px;
      max-width: 180px;
      z-index: 999;
    }
  
    nav#mainNav.active {
      display: flex !important;
    }
  
    nav#mainNav a {
      width: 100%;
      padding: 6px 0;
      font-size: 0.85rem;
      text-align: left;
      white-space: nowrap;
    }
  
    /* Make header not overlap */
    header {
      position: relative;
      z-index: 1001;
    }
  }
  @media (max-width: 680px) {
    /* Fix 'Work With Me' button inside dropdown */
    nav#mainNav .btn {
      all: unset; /* Reset any inherited global styles */
      display: block;
      width: 100%;
      background-color: #b98eff;
      color: #fff;
      text-align: center;
      padding: 3px 3px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }
  
    nav#mainNav .btn:hover {
      background-color: #a774f3;
    }
  }
  @media (max-width: 680px) {
    section#first {
      padding-top: 1px !important;
      margin-top: 0 !important;
    }
  
    section#first .image {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
    
    #desk-image {
      width: 90%;
      max-width: 320px;
      height: auto;
      display: block;
      margin: 8px auto 0 auto; /* very small top margin, centered */
    }
  }
  
  @media (max-width: 680px) {
    section#about {
      padding-bottom: 1.5em !important;
      margin-bottom: 0 !important;
    }
  
    section#about .actions {
      margin-bottom: 0 !important;
    }

    /* GLOBAL: Improve FAQ card styling */
.items.style1.medium > section {
    background-color: #20162a; /* Slightly lighter than the section bg */
    border-radius: 12px;
    padding: 1em 0 0.25em 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: left;
    max-width: 600px;
    max-height: 180px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* FAQ Title */
  .items.style1.medium h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #ffffff;
  }
  
  /* FAQ Content */
  .items.style1.medium p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d2cbe4;
    margin-bottom: 0;
  }
  
  /* Center "FAQs" heading */
  .faq-heading h2 {
    text-align: center;
    margin: 1.5em auto 1em auto;
  }
  
  
  }
  
  @media (max-width: 680px) {
    .faq-cards {
      gap: 1em !important;
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
    }
  
.faq-cards .faq-item {
     
      margin-bottom: 0.5em;
      border-radius: 12px;
      background: #20162a;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    }
  
    .faq-cards .faq-item:last-child {
      margin-bottom: 0 !important;
    }
  
    .faq-cards .faq-item p {
      margin-bottom: 0 !important;
    }

#wrapper, section, .wrapper.align-center, .wrapper.faq-cards{
        margin-bottom: 10px;

    }

    .faq-heading{
        margin-bottom: 5px;
        padding-bottom: 1px !important;
      }
}

@media (max-width: 500px) {
    /* All main section images */
    .image img {
      width: 80%;
      height: auto;
      max-width: 95%;
      display: block;
      margin: 0 auto;
    }
  
    /* Optional: if individual control is needed */
    #desk-image,
    #personal-img {
      width: 75% !important;
      max-width: 95%;
      height: auto;
      margin-top: 0;
      margin-bottom: 1em;
    }
  
    /* Shrink spacing above/below image sections */
    .spotlight .image,
    .banner .image {
      margin-top: 0.5em;
      margin-bottom: 0.5em;
    }
  }
  
  @media (max-width: 680px) {
    /* Resize form wrapper */
    #contact .inner.medium {
      width: 100%;
      max-width: 90%;
      margin: 0 auto;
      padding: 0 1em;
    }
  
    /* Make fields stack */
    #contact .fields {
      flex-direction: column;
      gap: 1em;
    }
  
    #contact .field,
    #contact .field.half {
      width: 100% !important;
    }
  
    #contact input,
    #contact textarea {
      font-size: 1rem;
      padding: 0.75em 1em;
    }
  
    /* Adjust submit button */
    #contact .actions.special input[type="submit"] {
      font-size: 1rem;
      padding: 0.75em 1.5em;
      width: 100%;
    }
  
    #contact h2 {
      font-size: 1.5rem;
    }
  
    #contact label {
      font-size: 0.95rem;
    }
  }


/* === MOBILE: HIDE THEM UNDER 680PX === */
@media (max-width: 1200px) {
  .vertical-name,
  .vertical-arrow {
    display: none !important;
  }
}
@media (max-width: 380px) {
    footer .icons a {
      font-size: 1rem;         /* Smaller icon size */
      padding: 10px;           /* Less padding inside circle */
    }
  }
  