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

/* === VERCEL / ODOO PREMIUM SAAS AESTHETIC === */

:root {
  --accent: #4285F4;
  /* Vibrant blue accent */
  --vercel-bg: #000000;
  --vercel-card: #0a0a0a;
  --vercel-border: #222222;
  /* Slightly softer than 333 to let colors pop */
  --vercel-border-hover: rgba(255, 255, 255, 0.4);
  --r: 12px;
  /* Slightly softer corners for a modern feel */
  --t: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --max-w: 1100px;
}

::selection {
  background: rgba(66, 133, 244, 0.99);
  /* Colorful selection */
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif !important;
  background-color: var(--vercel-bg) !important;
  color: #ededed !important;
  -webkit-font-smoothing: antialiased !important;
  /* Smooth, not crispy */
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}

/* === UTILITIES & OVERRIDES === */
/* Apply smooth text rendering to EVERY element */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.color-changer {
  display: none !important;
}

/* Remove theme selector noise */
.cursor,
.cursor-small {
  display: none !important;
}

/* Native cursor feels more professional */
/* Selective shadow reset — don't nuke hover card shadows */
a,
button,
input,
textarea,
img {
  box-shadow: none;
}

.wow {
  animation: none !important;
  visibility: visible !important;
}

/* Simplify animations */
.social-media-links {
  display: none !important;
}

/* Hide old floating social icons */
.logo img,
#navigation-bar img {
  filter: grayscale(1) brightness(2) !important;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Professionalize logo */

/* === NAVBAR === */
#navigation-bar {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--vercel-border);
  height: 64px !important;
}

.navigation-links a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  color: #888 !important;
  transition: color var(--t) !important;
}

.navigation-links a:hover {
  color: #ededed !important;
}

.navigation-links a::after {
  display: none !important;
}

/* Strip red hover line */

/* === SECTION HEADERS === */
.about-header,
.services-heading,
.skills-header,
.portfolio-header,
.blog-header,
.contact-header {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 36px !important;
  letter-spacing: -0.04em !important;
  color: #ededed !important;
  text-align: center !important;
  margin-bottom: 48px !important;
}

/* Strip red glowing underline */
.about-header::after,
.services-heading::after,
.skills-header::after,
.portfolio-header::after,
.blog-header::after,
.contact-header::after {
  display: none !important;
}

.header-caption {
  display: block;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #888 !important;
  margin-top: 8px !important;
}

/* Section header accent colors now use vibrant blue */
.header-caption .color {
  color: var(--accent) !important;
}

/* Global .color accent — applies everywhere the class is used */
.color {
  color: var(--accent) !important;
}

/* Apply elegant Playfair Display to main section highlights */
.about-header>.color,
.services-heading>.color,
.skills-header>.color,
.portfolio-header>.color,
.blog-header>.color,
.contact-header>.color {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 110% !important;
  /* Playfair renders slightly smaller than Inter */
  letter-spacing: -0.02em !important;
}

/* ============================================================
   HERO — HYPER IMPRESSIVE ENTRANCE & EFFECTS
   ============================================================ */

/* --- Entrance keyframes --- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(52, 168, 83, 0);
  }
}

@keyframes shimmer-name {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

@keyframes scroll-line {
  0% {
    height: 0;
    opacity: 1;
  }

  80% {
    height: 48px;
    opacity: 1;
  }

  100% {
    height: 48px;
    opacity: 0;
  }
}

/* --- Staggered entrance for every hero child --- */
.header-content-box>* {
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-content-box>*:nth-child(1) {
  animation-delay: 0.05s;
}

.header-content-box>*:nth-child(2) {
  animation-delay: 0.15s;
}

.header-content-box>*:nth-child(3) {
  animation-delay: 0.25s;
}

.header-content-box>*:nth-child(4) {
  animation-delay: 0.35s;
}

.header-content-box>*:nth-child(5) {
  animation-delay: 0.45s;
}

.header-content-box>*:nth-child(6) {
  animation-delay: 0.55s;
}

.header-content-box>*:nth-child(7) {
  animation-delay: 0.65s;
}

/* --- Status badge --- */
.hero-status {
  display: flex;
  width: max-content;
  margin: 0 auto 32px auto;
  /* 32px bottom margin forces separation */
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(52, 168, 83, 0.35);
  border-radius: 20px;
  background: rgba(52, 168, 83, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #34a853;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34a853;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}

.header-content .firstline {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.name-first {
  font-family: 'Playfair Display', serif !important;
  font-size: 96px !important;
  font-style: italic;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  background: linear-gradient(180deg, #f0f0f0 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 8px;
}

.name-last {
  font-family: 'Inter', sans-serif !important;
  font-size: 80px !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  background: linear-gradient(180deg, #f0f0f0 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.name-underline-svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 18px;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-underline 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

@keyframes draw-underline {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- Stats strip --- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  padding: 20px 32px;
  border: 1px solid var(--vercel-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  /* Slightly smaller = less harsh */
  font-weight: 700;
  /* Softer than 800 */
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #e0e0e0 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--vercel-border);
  flex-shrink: 0;
}

/* --- Scroll indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  background: linear-gradient(to bottom, #444, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* === HERO SECTION === */
#header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--vercel-border);
  position: relative;
  overflow: hidden;
}

#header::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background:
    radial-gradient(circle at 40% 40%, rgba(66, 133, 244, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(234, 67, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(251, 188, 5, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 60%, rgba(52, 168, 83, 0.1) 0%, transparent 50%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.header-content {
  text-align: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
  /* Let clicks pass through to particles where there is no text */
}

.header-content-box {
  pointer-events: auto;
  /* Enable clicks on the actual content box */
}

.header-content .firstline {
  font-family: 'Inter', sans-serif !important;
  font-size: 80px !important;
  font-weight: 700 !important;
  /* Softer than 800 — less jagged */
  letter-spacing: -0.04em !important;
  /* Slightly tighter = more refined */
  line-height: 1.1 !important;
  background: linear-gradient(180deg, #f0f0f0 0%, #888 100%);
  /* Softer gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Keep the gradient on the whole name — accent handled separately via .color below */
.header-content .firstline .color {
  -webkit-text-fill-color: var(--accent) !important;
  background: none;
}

.header-content .secondline {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #888 !important;
  margin-top: 20px !important;
  letter-spacing: -0.02em;
}

.header-content .secondline .color {
  color: var(--accent) !important;
  -webkit-text-fill-color: unset;
}

.tagline {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  color: #888 !important;
  max-width: 600px;
  margin: 16px auto 0 !important;
  line-height: 1.6 !important;
}

/* Hero Badges */
.hero-badges {
  margin-top: 32px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  background: var(--vercel-card);
  border: 1px solid var(--vercel-border);
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #aaa;
  border-radius: 20px;
  /* pill shape */
  transition: all var(--t);
  cursor: default;
}

.hero-badge:hover {
  border-color: var(--accent);
  color: #ededed;
}

.hero-badge i {
  color: var(--accent);
  margin-right: 5px;
}

/* Hero CTAs */
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #000 !important;
  border: 1px solid #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.15);
}

.hero-btn-primary:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3), 0 0 20px rgba(66, 133, 244, 0.4);
  transform: translateY(-2px);
}

.hero-btn-primary i {
  margin-right: 6px;
}

.hero-btn-secondary {
  background: var(--vercel-card);
  color: #ededed !important;
  border: 1px solid var(--vercel-border);
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--t);
}

.hero-btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(66, 133, 244, 0.08);
  color: #fff !important;
  transform: translateY(-1px);
}

.hero-btn-secondary i {
  margin-right: 6px;
}

.hero-btn-icon {
  background: var(--vercel-card);
  border: 1px solid var(--vercel-border);
  color: #888 !important;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color var(--t), color var(--t);
}

.hero-btn-icon i {
  font-size: 18px !important;
}

/* Force icon size so it doesn't blow up */
.hero-btn-icon:hover {
  border-color: var(--vercel-border-hover);
  color: #ededed !important;
  background: #111;
}

.header-content-box .contact {
  display: none !important;
}

/* === COMMON CARD STYLES (VERCEL LOOK) === */
.service,
.skill-group,
.portfolio,
.blogs,
.demo-container,
.contact-form,
.contact-info,
.about-first-paragraph {
  background: var(--vercel-card) !important;
  border: 1px solid var(--vercel-border) !important;
  border-radius: var(--r) !important;
  transition: all var(--t) !important;
  backdrop-filter: none !important;
  transform: none !important;
  /* Stop hover translations */
  position: relative;
  overflow: hidden;
}

.service:hover,
.skill-group:hover,
.portfolio:hover,
.blogs:hover,
.demo-container:hover {
  border-color: var(--vercel-border-hover) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(66, 133, 244, 0.05) !important;
  transform: translateY(-4px) !important;
}

/* === ABOUT SECTION === */
#about {
  padding: 80px 0 !important;
  border-top: 1px solid var(--vercel-border);
}

#about-content {
  padding: 0 40px !important;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-first-paragraph {
  padding: 48px !important;
}

.about-first-line {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: #ededed !important;
}

.about-first-line .color {
  color: var(--accent) !important;
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 28px !important;
}

.about-second-line {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #888 !important;
  line-height: 1.7 !important;
  margin-top: 16px !important;
  display: block;
}

.cv {
  margin-top: 32px !important;
  display: flex;
  gap: 12px;
}

.cv a button {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  padding: 10px 24px !important;
  transition: background var(--t), border-color var(--t) !important;
  border: 1px solid var(--vercel-border) !important;
  background: var(--vercel-card) !important;
  color: #ededed !important;
  cursor: pointer;
}

.cv a:first-child button {
  background: #ededed !important;
  color: #000 !important;
  border: 1px solid #ededed !important;
}

.cv a:first-child button:hover {
  background: #fff !important;
}

.cv a:last-child button:hover {
  background: #111 !important;
  border-color: var(--vercel-border-hover) !important;
}

.about-img img {
  border-radius: var(--r) !important;
  border: 1px solid var(--vercel-border);
}

.about-img img:hover {
  transform: none !important;
}

/* === SERVICES SECTION === */
#services {
  padding: 80px 0 !important;
  border-top: 1px solid var(--vercel-border);
}

.services-content {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  padding: 0 40px !important;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service {
  width: 100% !important;
  padding: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.service-icon-fa {
  width: 40px;
  height: 40px;
  background: #111;
  border: 1px solid var(--vercel-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-fa i {
  color: #ededed;
  font-size: 16px;
}

.service-icon-colorful {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-description h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ededed !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em;
}

.service-description p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #888 !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  border: 1px solid var(--vercel-border);
  background: transparent;
  color: #aaa;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--t), border-color var(--t);
}

.service:hover .service-tags span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.service-img {
  display: none !important;
}

/* Fallback hide */

/* === SKILLS SECTION === */
#skills {
  padding: 80px 0 !important;
  border-top: 1px solid var(--vercel-border);
}

.skills-tags-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 40px !important;
  max-width: var(--max-w);
  margin: 0 auto;
}

.skill-group {
  padding: 32px;
}

.skill-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ededed;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-group-label i {
  color: #888;
  font-size: 14px;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  border: 1px solid var(--vercel-border);
  background: #000;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--t);
  cursor: default;
}

.skill-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(66, 133, 244, 0.08);
}

.demo-container {
  margin: 40px auto 0;
  max-width: calc(var(--max-w) - 80px);
  padding: 32px;
  text-align: center;
}

.demo-container-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #ededed !important;
  margin-bottom: 24px;
}

/* === PORTFOLIO & STARTUPS === */
#portfolio,
#achievements,
#startups {
  padding: 80px 0 !important;
  border-top: 1px solid var(--vercel-border);
}

.portfolio-content-grid,
#portfolio-content {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  padding: 0 40px !important;
  max-width: var(--max-w);
  margin: 0 auto;
}

.portfolio {
  padding: 0 !important;
  margin: 0 !important;
  flex-direction: column !important;
  overflow: hidden;
  align-items: stretch !important;
  justify-content: flex-start !important;
}

.portfolio-image {
  height: 240px !important;
  width: 100% !important;
  border-bottom: 1px solid var(--vercel-border);
}

.portfolio-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

.portfolio-text {
  padding: 32px !important;
  width: 100% !important;
  margin: 0 !important;
}

.portfolio-text h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ededed !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em;
}

.portfolio-text h2 span {
  color: #888 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.portfolio-text p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #888 !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.portfolio-text button {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #ededed !important;
  background: var(--vercel-card) !important;
  border: 1px solid var(--vercel-border) !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  transition: border-color var(--t), background var(--t) !important;
  margin: 0 !important;
  cursor: pointer;
}

.portfolio-text button:hover {
  border-color: var(--vercel-border-hover) !important;
  background: #111 !important;
}

.button {
  text-align: left !important;
}

/* === BLOGS & CERTIFICATES === */
#blog,
#cert {
  padding: 80px 0 !important;
  border-top: 1px solid var(--vercel-border);
}

#cert .cv {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-bottom: 40px !important;
  margin-top: 0 !important;
}

.blog-content {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  padding: 0 40px !important;
  max-width: var(--max-w);
  margin: 0 auto;
}

.blogs {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden;
}

.blogs .img {
  height: 240px !important;
  border-bottom: 1px solid var(--vercel-border);
}

.blogs .img img {
  border-radius: 0 !important;
}

.blog-text {
  padding: 32px !important;
  background: transparent !important;
  text-align: left !important;
}

.blog-text h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ededed !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.01em;
}

.blog-text p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #888 !important;
  line-height: 1.6 !important;
}

.blog-date {
  top: 12px;
  left: 12px;
  bottom: auto;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--vercel-border);
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #ededed !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

/* === CONTACT SECTION === */
#contact {
  padding: 80px 0 !important;
  border-top: 1px solid var(--vercel-border);
}

.contact-content {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px !important;
  padding: 0 40px !important;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: flex-start !important;
}

.contact-form {
  width: 60% !important;
  padding: 40px !important;
  text-align: left !important;
}

.form-header {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ededed !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.01em;
  padding: 0 !important;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch !important;
  width: 100%;
}

.input-name,
.input-subject,
.input-textarea {
  background: #000 !important;
  border: 1px solid var(--vercel-border) !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #ededed !important;
  padding: 12px 16px !important;
  width: 100% !important;
  margin: 0 !important;
  transition: border-color var(--t) !important;
}

.input-name:focus,
.input-subject:focus,
.input-textarea:focus {
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15) !important;
}

.input-textarea {
  min-height: 120px !important;
  resize: vertical;
}

.input-line {
  display: flex;
  gap: 16px;
  width: 100%;
  margin: 0 !important;
}

form button {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: #ededed !important;
  color: #000 !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  margin: 8px 0 0 0 !important;
  width: auto !important;
  align-self: flex-start;
  cursor: pointer;
  transition: background var(--t) !important;
}

form button:hover {
  background: #fff !important;
}

.contact-info {
  width: 40% !important;
  padding: 40px !important;
  background: var(--vercel-card) !important;
  background-image: none !important;
}

.contact-info::before {
  display: none !important;
}

.contact-info-header {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ededed !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.01em;
  padding: 0 !important;
  text-align: left !important;
}

.contect-info-content-line {
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.contact-info-icon-text {
  padding: 0 0 0 16px !important;
}

.contact-info-icon-text h6 {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #888 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 4px !important;
}

.contact-info-icon-text p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #ededed !important;
}

.icon {
  filter: grayscale(1) brightness(2);
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--vercel-border) !important;
  background: #000 !important;
  padding: 32px 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: var(--max-w) !important;
  margin: 0 auto !important;
}

.footer-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #888 !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: #555;
  font-size: 16px;
  transition: color var(--t);
  text-decoration: none;
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {

  .services-content,
  .skills-tags-wrapper,
  #portfolio-content,
  .portfolio-content-grid,
  .blog-content {
    grid-template-columns: 1fr !important;
  }

  .contact-content {
    flex-direction: column !important;
  }

  .contact-form,
  .contact-info {
    width: 100% !important;
  }

  .input-line {
    flex-direction: column;
  }

  .header-content .firstline {
    font-size: 48px !important;
  }

  .header-content .secondline {
    font-size: 20px !important;
  }
}

@media (max-width: 480px) {
  .header-content .firstline {
    font-size: 36px !important;
  }

  .header-content .secondline {
    font-size: 16px !important;
  }

  .about-first-paragraph {
    padding: 24px !important;
  }

  .service,
  .skill-group,
  .portfolio-text,
  .blog-text,
  .contact-form,
  .contact-info {
    padding: 24px !important;
  }

  .cv {
    flex-direction: column;
    width: 100%;
  }
}

/* === PREMIUM LOADER === */
#loader {
  background: var(--vercel-bg) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-name {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loader-name .color {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 32px;
}

.loader-name .name-last {
  font-family: 'Inter', sans-serif;
  color: #ededed;
}

.loader-bar-container {
  width: 140px;
  height: 2px;
  background: var(--vercel-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: load-bar 1s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

@keyframes load-bar {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}