:root {
  --color-background: #0a0a0a;
  --color-text: #e0e0e0;
  --color-link-hover: #ffffff;
  --color-primary: #00aaff;
  --font-family-sans-serif: "Lora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family-heading: "Playfair Display", -apple-system, BlinkMacSystemFont, "Segoe UI", serif;
  --navbar-height: 80px;
  --border-radius: 8px;
  --transition-speed: 0.6s;
}

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

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

body {
  margin: 0;
  font-family: var(--font-family-sans-serif);
  background-color: var(--color-background);
  color: var(--color-text);
}

.content {
  min-height: 150vh;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  padding-top: calc(var(--navbar-height) + 2rem);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* ========================================
   Navbar Styles
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  transition: transform 0.3s ease;
  background-color: var(--color-background);
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar__brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo {
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar__logo:hover {
  transform: scale(1.1);
}

.logo-image {
  width: 50px;
  height: 50px;
  display: block;
}

.navbar__nav {
  display: none;
}

/* Mobile Hamburger Menu */
.navbar__mobile-toggle {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}

.mobile-menu-pane {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #141414;
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.mobile-menu-pane.is-open {
  transform: translateX(0);
}

.mobile-menu-pane ul {
  margin-top: 4rem;
}

.mobile-menu-pane .nav-link {
  display: block;
  font-size: 1.2rem;
  padding: 1rem 0;
}

.animated-border-svg {
  display: none;
}

/* ========================================
   Desktop & SVG Border Styles
   ======================================== */
@media (min-width: 992px) {

  .navbar__mobile-toggle,
  .mobile-menu-pane {
    display: none;
  }

  .navbar__nav {
    display: block;
  }

  .nav-list {
    display: flex;
    gap: 2rem;
  }

  .nav-link {
    position: relative;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
  }

  /* Glass morphism effect for nav links */
  .nav-link::before,
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: all .4s;
  }

  .nav-link::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
  }

  .nav-link::after {
    transform: translate(8px, 8px);
    width: 25px;
    height: 25px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
  }

  .nav-link:hover::before,
  .nav-link--active::before {
    transform: translate(3%, 15%);
    width: 105%;
    height: 105%;
  }

  .nav-link:hover::after,
  .nav-link--active::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
  }

  .nav-link:active::after {
    transition: 0s;
    transform: translate(0, 3%);
  }

  .nav-link--active {
    color: #f0f0f0;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    color: #f0f0f0;
  }

  :focus-visible {
    outline: 2px solid var(--color-primary);
    border-radius: var(--border-radius);
  }

  .nav-link:focus-visible {
    outline: none;
  }

  /* The SVG container */
  .animated-border-svg {
    display: none;
  }

  @media (prefers-reduced-motion: reduce) {

    .nav-link::before,
    .nav-link::after {
      transition: none;
    }
  }
}

/* ========================================
   Additional Styles
   ======================================== */
img.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: 20px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Footer Styles
   ======================================== */
:root {
  --cta-bg: #f0f2f5;
  --cta-heading-color: #1c1e21;
  --cta-link-color: #00aaff;
  --cta-link-hover-color: #0056b3;
  --footer-bg: #1c1e21;
  --footer-text: #adb5bd;
  --footer-link-hover: #ffffff;
}

.footer-agency {
  text-align: center;
  margin-top: auto;
}

/* Bottom Bar Section */
.footer-agency__bottom {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 2rem 0;
}

.footer-agency__bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-agency__nav ul,
.footer-agency__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-agency__nav a,
.footer-agency__social a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-agency__nav a:hover,
.footer-agency__social a:hover {
  color: #0056b3;
}

.footer-agency__social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.footer-agency__copyright {
  font-size: 0.875rem;
  margin: 0;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .footer-agency__bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Body flexbox layout for sticky footer */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

/* ========================================
   Button Styles
   ======================================== */
.button-86 {
  all: unset;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-86::after,
.button-86::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.button-86::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

/* ========================================
   Hero Section / Home Page
   ======================================== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.05) 0%, rgba(0, 109, 179, 0.03) 100%);
  border-radius: 20px;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00aaff 0%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1rem 0;
  text-align: center;
  animation: slideInDown 0.8s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #e0e0e0;
  margin: 0 0 1.5rem 0;
  text-align: center;
  animation: slideInUp 0.8s ease 0.1s backwards;
}

.hero-description {
  font-size: 1.1rem;
  color: #adb5bd;
  text-align: center;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: slideInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideInUp 0.8s ease 0.3s backwards;
}

.button-86 {
  min-width: 200px;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   About Page Styles
   ======================================== */
.about-section {
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
  animation: slideInUp 0.8s ease backwards;
}

.about-content {
  text-align: left;
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #00aaff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1.15rem;
  color: #b0b0b0;
  margin: 1rem 0;
  line-height: 1.7;
  font-weight: 500;
}

.about-profile {
  display: flex;
  justify-content: center;
  animation: slideInUp 0.8s ease 0.2s backwards;
}

.profile-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #00aaff, #00ffcc);
  padding: 3px;
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 170, 255, 0.4);
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.3s ease;
  animation: slideInUp 0.8s ease backwards;
  cursor: pointer;
}

.about-card:nth-child(1) {
  animation-delay: 0.1s;
}

.about-card:nth-child(2) {
  animation-delay: 0.15s;
}

.about-card:nth-child(3) {
  animation-delay: 0.2s;
}

.about-card:nth-child(4) {
  animation-delay: 0.25s;
}

.about-card:nth-child(5) {
  animation-delay: 0.3s;
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 170, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 170, 255, 0.15);
}

.about-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #00aaff;
  transition: color 0.3s ease;
}

.about-card:hover h2 {
  color: #00ffcc;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .button-86 {
    width: 100%;
    min-width: unset;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .profile-image {
    width: 220px;
    height: 220px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .about-card h2 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }
}


/* ========================================
   Premium Portfolio Cursor
   Awwwards / Locomotive style
   ======================================== */

/* ── Hide native cursor (desktop only) ── */
@media (pointer: fine) {

  *,
  *::before,
  *::after {
    cursor: none !important;
  }
}

/* ── Dot: sharp, exact, no lag ─────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000000;
  mix-blend-mode: difference;
  will-change: transform;
  /* NO transition – snap-to-cursor */
}

/* ── Ring: large, smooth lag ───────────────────────────────────────────── */
#cursor-ring {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;

  /* Use mix-blend-mode so the ring inverts whatever colour is underneath.
     Works perfectly on BOTH the dark site bg and lighter cards. */
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 50%;
  mix-blend-mode: difference;

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

  pointer-events: none;
  z-index: 999999;
  will-change: transform;

  /* Smooth shape transitions only – position is handled by JS */
  transition:
    width 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    left 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.35s ease;
}

/* ── Label inside ring ─────────────────────────────────────────────────── */
#cursor-ring-text {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  /* black on top of the inverted white fill */
  letter-spacing: -0.5px;
  line-height: 1;
  user-select: none;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ── Hover state: ring expands + fills ─────────────────────────────────── */
#cursor-ring.is-hovering {
  width: 80px;
  height: 80px;
  top: -40px;
  left: -40px;
  background: #fff;
  /* fills white – mix-blend-mode inverts it below */
  border-color: transparent;
}

#cursor-ring.is-hovering #cursor-ring-text {
  opacity: 1;
  transform: scale(1);
}

/* ── Click state: ring shrinks + pulses ────────────────────────────────── */
#cursor-ring.is-clicking {
  width: 24px;
  height: 24px;
  top: -12px;
  left: -12px;
  background: #fff;
  border-color: transparent;
  transition:
    width 0.1s ease,
    height 0.1s ease,
    top 0.1s ease,
    left 0.1s ease,
    background 0.1s ease;
}

/* ── Disable on touch/mobile ──────────────────────────────────────────── */
@media (pointer: coarse) {

  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }
}