/* ============================================================
   BILLY.RONO Portfolio V2 — "Midnight Gold" Luxury Theme
   Complete redesign: new layouts, animations, visual identity
   ============================================================ */

/* ----- Design Tokens ----- */
:root {
  --gold: #CC5500;
  --gold-light: #FF7733;
  --gold-dark: #AA4400;
  --gold-glow: rgba(204, 85, 0, 0.35);
  --gold-subtle: rgba(204, 85, 0, 0.08);
  --gold-border: rgba(204, 85, 0, 0.15);
  --gold-border-hover: rgba(204, 85, 0, 0.45);
  --bg-deep: #0A0A0F;
  --bg-card: rgba(18, 18, 26, 0.6);
  --bg-card-hover: rgba(25, 25, 38, 0.8);
  --text-primary: #F0EDE6;
  --text-secondary: #8A8578;
  --text-muted: #5A5650;
  --glass-bg: rgba(15, 15, 22, 0.65);
  --glass-border: rgba(204, 85, 0, 0.12);
  --glass-blur: 20px;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s var(--ease-luxury);
  --transition-medium: 0.4s var(--ease-luxury);
  --transition-fast: 0.25s var(--ease-luxury);
  --font-display: 'Inter', 'Satoshi-Variable', sans-serif;
}

/* ----- Base ----- */
body {
  background-color: var(--bg-deep) !important;
  color: var(--text-primary);
  font-family: var(--font-display);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(204, 85, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(204, 85, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.main-bg {
  background: var(--bg-deep) !important;
}

.sub-bg {
  background: var(--bg-deep) !important;
  border-top: 1px solid var(--gold-border) !important;
  box-shadow: 0 -1px 30px rgba(204, 85, 0, 0.06) !important;
}

/* ----- Typography ----- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary) !important;
  letter-spacing: 0.01em;
}

p {
  color: var(--text-secondary) !important;
  line-height: 1.9;
}

.fw-200 {
  color: var(--gold) !important;
  font-weight: 200 !important;
  font-style: italic;
}

.main-color {
  color: var(--gold) !important;
}

.main-colorbg {
  background: var(--gold) !important;
}

.v2-section-title {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 500;
}

.v2-section-desc {
  color: var(--text-secondary) !important;
  font-size: 15px;
  line-height: 1.7;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
}

/* ----- Cursor ----- */
.cursor {
  background-color: var(--gold) !important;
}

/* ----- Selection ----- */
::selection {
  background: rgba(204, 85, 0, 0.3);
  color: var(--text-primary);
}

/* ----- Loader ----- */
.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.loader-wrap svg path {
  fill: var(--bg-deep) !important;
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
  color: #c50;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ----- Progress Button ----- */
.progress-wrap {
  border-color: var(--gold-border) !important;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════
   HERO — Cinematic with ambient glow
   ═══════════════════════════════════════════════════════ */
.v2-hero {
  position: relative;
  overflow: hidden;
}

.v2-hero-ambient {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(204, 85, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 6s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }

  100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.2);
  }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  animation: heroGlowPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
}

@keyframes heroGlowPulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.freelancer .caption h1 span {
  color: var(--gold) !important;
}

.freelancer .caption h1.stroke span {
  color: transparent !important;
  -webkit-text-stroke: 1px var(--gold) !important;
  text-shadow: none !important;
}

.freelancer .caption h1 span {
  color: var(--gold) !important;
}

.freelancer .caption h1.stroke span {
  color: transparent !important;
  -webkit-text-stroke: 1px var(--gold) !important;
  text-shadow: none !important;
}

/* Hero Tagline */
.v2-hero-tagline {
  text-align: center;
  margin-top: -40px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

.v2-tagline-text {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold) !important;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════
   MARQUEE — Infinite scrolling text
   ═══════════════════════════════════════════════════════ */
.v2-marquee-section {
  padding: 30px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
  background: rgba(204, 85, 0, 0.02);
}

.v2-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.v2-marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.v2-marquee-content span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 20px;
}

.v2-marquee-dot {
  color: var(--gold) !important;
  font-size: 10px !important;
}

/* ═══════════════════════════════════════════════════════
   SERVICES — Bento Grid Layout
   ═══════════════════════════════════════════════════════ */
.v2-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v2-bento-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-medium);
}

.v2-bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(204, 85, 0, 0.04), transparent);
  transition: left 0.8s ease;
}

.v2-bento-item:hover {
  border-color: var(--gold-border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(204, 85, 0, 0.08);
}

.v2-bento-item:hover::before {
  left: 100%;
}

.v2-bento-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 50px 45px;
}

.v2-bento-wide {
  grid-column: span 2;
}

.v2-bento-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(204, 85, 0, 0.08);
  border: 1px solid var(--gold-border);
  margin-bottom: 25px;
  transition: all var(--transition-medium);
}

.v2-bento-item:hover .v2-bento-icon {
  background: rgba(204, 85, 0, 0.15);
  box-shadow: 0 0 25px rgba(204, 85, 0, 0.15);
}

.v2-bento-icon i {
  font-size: 26px;
  color: var(--gold) !important;
}

.v2-bento-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 64px;
  font-weight: 800;
  color: rgba(204, 85, 0, 0.06);
  line-height: 1;
  pointer-events: none;
}

.v2-bento-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.v2-bento-item p {
  font-size: 14px;
  line-height: 1.7;
}

.v2-bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.v2-bento-tags span {
  padding: 6px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.v2-bento-item:hover .v2-bento-tags span {
  border-color: var(--gold-border-hover);
  background: rgba(204, 85, 0, 0.05);
}

/* ═══════════════════════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════════════════════ */
.v2-stats-section {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: rgba(204, 85, 0, 0.015);
}

.v2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.v2-stat-item {
  text-align: center;
  padding: 50px 30px;
  position: relative;
  border-right: 1px solid var(--gold-border);
}

.v2-stat-item:last-child {
  border-right: none;
}

.v2-stat-number {
  font-size: 72px;
  font-weight: 800;
  color: var(--gold) !important;
  line-height: 1;
  margin-bottom: 15px;
  font-family: var(--font-display);
}

.v2-stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
}

.v2-stat-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   ABOUT — Override base colors
   ═══════════════════════════════════════════════════════ */
.about-crev .info h3 {
  color: var(--gold) !important;
}

.about-crev .info p {
  color: var(--text-primary) !important;
}

.about-crev .mz-shap svg path {
  fill: var(--gold) !important;
  opacity: 0.3;
}

.about-crev .content h6 {
  color: var(--gold) !important;
}

.about-crev .line-overlay svg path {
  stroke: var(--gold-border) !important;
}

.info-author .fz-14 {
  color: var(--text-secondary) !important;
}

.info-author .fz-16 {
  color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════
   TECH STACK — Orbit Layout
   ═══════════════════════════════════════════════════════ */
.v2-tech-orbit {
  position: relative;
  width: 550px;
  height: 550px;
  margin: 0 auto;
}

.v2-tech-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 60px rgba(204, 85, 0, 0.25);
}

.v2-tech-center span {
  font-size: 14px;
  font-weight: 800;
  color: var(--bg-deep);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
}

.v2-tech-items {
  position: absolute;
  inset: 0;
  animation: orbitSlow 60s linear infinite;
}

@keyframes orbitSlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.v2-tech-item {
  --total: 12;
  --angle: calc(360deg / var(--total) * var(--i));
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin: -35px;
  transform: rotate(var(--angle)) translateX(230px) rotate(calc(-1 * var(--angle)));
  animation: counterRotate 60s linear infinite;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: all var(--transition-medium);
  cursor: default;
}

@keyframes counterRotate {
  0% {
    transform: rotate(var(--angle)) translateX(230px) rotate(calc(-1 * var(--angle) - 0deg));
  }

  100% {
    transform: rotate(calc(var(--angle) - 360deg)) translateX(230px) rotate(calc(-1 * var(--angle) + 360deg));
  }
}

.v2-tech-item:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  box-shadow: 0 0 30px rgba(204, 85, 0, 0.15);
  transform: rotate(var(--angle)) translateX(230px) rotate(calc(-1 * var(--angle))) scale(1.15);
}

.v2-tech-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%) brightness(0.9);
  transition: filter var(--transition-fast);
}

.v2-tech-item:hover img {
  filter: grayscale(0%) brightness(1.1);
}

.v2-tech-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.v2-tech-item:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO — Enhanced hover overlays
   ═══════════════════════════════════════════════════════ */
.portfolio-carsouel .sec-head h6 {
  color: var(--gold) !important;
}

.v2-portfolio-img {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.v2-portfolio-img img {
  transition: transform 0.8s var(--ease-luxury);
}

.v2-portfolio-img:hover img {
  transform: scale(1.06);
}

.v2-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 15, 0.85) 0%,
      rgba(204, 85, 0, 0.08) 40%,
      transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 2;
}

.v2-portfolio-img:hover .v2-img-overlay {
  opacity: 1;
}

.v2-view-project {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold-border-hover);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.v2-view-project:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.portfolio-carsouel .item .cont h5 {
  color: var(--text-primary) !important;
  transition: color var(--transition-fast);
}

.portfolio-carsouel .item:hover .cont h5 {
  color: var(--gold) !important;
}

.portfolio-carsouel .item .cont p {
  color: var(--text-secondary) !important;
}

.portfolio-carsouel .item .cont {
  border-color: var(--gold-border) !important;
}

/* Swiper arrows */
.swiper-arrow-control .swiper-button-prev,
.swiper-arrow-control .swiper-button-next {
  border-color: var(--gold-border) !important;
  color: var(--gold) !important;
  transition: all var(--transition-fast);
}

.swiper-arrow-control .swiper-button-prev:hover,
.swiper-arrow-control .swiper-button-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--bg-deep) !important;
}

.swiper-arrow-control .swiper-button-prev span,
.swiper-arrow-control .swiper-button-next span {
  color: inherit !important;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testim-crev .item {
  background: var(--bg-card) !important;
  border: 1px solid var(--gold-border) !important;
  backdrop-filter: blur(12px);
  transition: all var(--transition-medium);
}

.testim-crev .item:hover {
  border-color: var(--gold-border-hover) !important;
  box-shadow: 0 8px 30px rgba(204, 85, 0, 0.06);
}

.testim-crev .item .tag {
  color: var(--gold) !important;
}

.testim-crev .item .text p {
  color: var(--text-secondary) !important;
  font-style: italic;
}

.testim-crev .item .info h6 {
  color: var(--text-primary) !important;
}

.testim-crev .item .info span {
  color: var(--text-muted) !important;
}

.testim-crev .qout-svg path {
  stroke: var(--gold) !important;
  opacity: 0.25;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-crev {
  border-color: var(--gold-border) !important;
}

.contact-crev .sec-head h6 {
  color: var(--gold) !important;
}

.contact-crev .phone a {
  color: var(--gold) !important;
  position: relative;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
}

.contact-crev .phone a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.contact-crev .phone a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-crev .social-text a span {
  color: var(--text-secondary) !important;
  transition: color var(--transition-fast);
}

.contact-crev .social-text a:hover span {
  color: var(--gold) !important;
}

/* Form */
.contact-crev input,
.contact-crev textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0 !important;
  color: var(--text-primary) !important;
  padding: 15px 0 !important;
  font-family: var(--font-display);
  font-size: 16px;
  transition: all var(--transition-medium);
}

.contact-crev input::placeholder,
.contact-crev textarea::placeholder {
  color: var(--text-muted) !important;
  font-weight: 300;
  letter-spacing: 1px;
}

.contact-crev input:focus,
.contact-crev textarea:focus {
  border-bottom-color: var(--gold) !important;
  box-shadow: 0 10px 20px -10px rgba(204, 85, 0, 0.15) !important;
  outline: none !important;
  transform: translateY(-2px);
}

.contact-crev input:hover,
.contact-crev textarea:hover {
  border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}

/* Submit button */
.contact-crev .butn.butn-bord {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.contact-crev .butn.butn-bord:hover {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
  box-shadow: 0 4px 20px rgba(204, 85, 0, 0.25) !important;
}

.contact-crev .butn.butn-bord span {
  color: var(--gold) !important;
  transition: color var(--transition-fast);
}

.contact-crev .butn.butn-bord:hover span {
  color: var(--bg-deep) !important;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer.min-footer {
  background: var(--bg-deep) !important;
  border-top: 1px solid var(--gold-border) !important;
  box-shadow: 0 -1px 20px rgba(204, 85, 0, 0.04) !important;
}

footer p {
  color: var(--text-muted) !important;
}

footer .links a {
  color: var(--gold) !important;
}

footer .links a:hover {
  color: var(--gold-light) !important;
}

/* ═══════════════════════════════════════════════════════
   BORDERS & DIVIDERS
   ═══════════════════════════════════════════════════════ */
.bord-thin-top {
  border-color: var(--gold-border) !important;
}

.bord-thin-bottom {
  border-color: var(--gold-border) !important;
}

.bord {
  border-color: var(--gold-border) !important;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.butn.butn-bord {
  border-color: var(--gold) !important;
  transition: all var(--transition-medium);
}

.butn.butn-bord:hover {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
}

.butn.butn-bord:hover span {
  color: var(--bg-deep) !important;
}

.btn-circle {
  border-color: var(--gold-border) !important;
}

.btn-circle:after {
  background: var(--gold) !important;
}

.btn-circle:hover {
  border-color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════
   NOISE
   ═══════════════════════════════════════════════════════ */
.noise {
  opacity: 0.12 !important;
}

/* ═══════════════════════════════════════════════════════
   ALERT BOX (contact form)
   ═══════════════════════════════════════════════════════ */
.alert-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.alert-title {
  color: var(--text-primary);
  font-weight: 600;
}

.alert-desc {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .v2-tech-orbit {
    width: 450px;
    height: 450px;
  }

  .v2-tech-item {
    width: 60px;
    height: 60px;
    margin: -30px;
    padding: 12px;
  }

  .v2-tech-item {
    transform: rotate(var(--angle)) translateX(185px) rotate(calc(-1 * var(--angle)));
  }
}

@media (max-width: 992px) {
  .v2-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .v2-bento-wide {
    grid-column: span 2;
  }

  .v2-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-stat-item:nth-child(2) {
    border-right: none;
  }

  .v2-stat-item:nth-child(1),
  .v2-stat-item:nth-child(2) {
    border-bottom: 1px solid var(--gold-border);
  }

  .v2-tech-orbit {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .v2-tech-items {
    animation: none;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 80px 20px 20px;
  }

  .v2-tech-item {
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
    transform: none !important;
    animation: none;
  }

  .v2-tech-center {
    top: 0;
    transform: translate(-50%, 0);
  }

  .navbar {
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
  }

  .v2-bento-item:hover {
    transform: none;
  }

  .v2-section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .v2-bento-grid {
    grid-template-columns: 1fr;
  }

  .v2-bento-large,
  .v2-bento-wide {
    grid-column: span 1;
  }

  .v2-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-stat-number {
    font-size: 48px;
  }

  .v2-stat-item {
    padding: 30px 15px;
  }

  .hero-glow {
    width: 130%;
    height: 130%;
    filter: blur(50px);
  }

  .v2-hero-tagline {
    margin-top: -20px;
  }

  .v2-tagline-text {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .v2-section-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .v2-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-stat-number {
    font-size: 40px;
  }

  ::-webkit-scrollbar {
    width: 3px;
  }

  .v2-marquee-content span {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Override remaining inline orange */
[style*="color: #cc5500"],
[style*="color: #CC5500"],
[style*="color: #c50"] {
  color: var(--gold) !important;
}

[style*="color: #888"] {
  color: var(--text-secondary) !important;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE SECTION (Experience & Education)
   ═══════════════════════════════════════════════════════ */
.v2-timeline-section {
  position: relative;
  border-top: 1px solid var(--gold-border);
  background: radial-gradient(circle at center, rgba(204, 85, 0, 0.02) 0%, transparent 70%);
}

.v2-timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.v2-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}

.v2-timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
  padding-right: 50px;
  text-align: right;
}

.v2-timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 50px;
  text-align: left;
}

.v2-timeline-item:last-child {
  margin-bottom: 0;
}

.v2-timeline-dot {
  position: absolute;
  top: 0;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--bg-deep);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 15px rgba(204, 85, 0, 0.5);
  transition: all var(--transition-fast);
}

.v2-timeline-item:nth-child(even) .v2-timeline-dot {
  right: auto;
  left: -8px;
}

.v2-timeline-item:hover .v2-timeline-dot {
  background: var(--gold);
  box-shadow: 0 0 25px rgba(204, 85, 0, 0.8);
  transform: scale(1.2);
}

.v2-timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-medium);
}

.v2-timeline-item:hover .v2-timeline-content {
  border-color: var(--gold-border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(204, 85, 0, 0.08);
}

.v2-timeline-date {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.v2-timeline-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.v2-timeline-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-style: italic;
}

.v2-timeline-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   STICKY PORTFOLIO
   ═══════════════════════════════════════════════════════ */
.v2-sticky-portfolio {
  position: relative;
  background: var(--bg-deep);
  z-index: 10;
}

.v2-sticky-container {
  position: relative;
  padding-bottom: 100px;
}

.v2-sticky-panel {
  position: sticky;
  top: 100px;
  /* Offset for navbar */
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-border);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  overflow: hidden;
}

.v2-sticky-panel:nth-child(1) {
  top: 100px;
  z-index: 1;
}

.v2-sticky-panel:nth-child(2) {
  top: 140px;
  z-index: 2;
}

.v2-sticky-panel:nth-child(3) {
  top: 180px;
  z-index: 3;
}

.v2-sticky-content {
  padding: 40px;
}

.v2-sticky-tag {
  color: var(--gold) !important;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.v2-sticky-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.v2-sticky-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s var(--ease-luxury);
}

.v2-sticky-panel:hover .v2-sticky-img {
  transform: perspective(1000px) rotateY(0deg);
}

.v2-sticky-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .v2-timeline-line {
    left: 20px;
  }

  .v2-timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .v2-timeline-item:nth-child(even) {
    margin-left: 0;
  }

  .v2-timeline-dot {
    left: 12px;
    right: auto;
  }

  .v2-timeline-item:nth-child(even) .v2-timeline-dot {
    left: 12px;
  }

  .v2-sticky-panel {
    height: auto;
    padding: 60px 0;
    top: auto !important;
    position: relative;
  }

  .v2-sticky-content {
    padding: 0 0 40px 0;
  }

  .v2-sticky-img {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO TEXT FIX (Transparent stroke text)
   ═══════════════════════════════════════════════════════ */
.freelancer .caption h1 span {
  color: var(--gold) !important;
}

.freelancer .caption h1.stroke span {
  color: transparent !important;
  -webkit-text-stroke: 1px var(--gold) !important;
  text-shadow: none !important;
}

/* Navbar Link Hover Colors */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover .rolling-text .letter,
.navbar .navbar-nav .nav-link.active .rolling-text .letter {
  color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION V2
   ═══════════════════════════════════════════════════════ */
.v2-about-section {
  position: relative;
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-border);
}

.v2-about-img-wrap {
  position: relative;
  padding: 30px;
}

.v2-about-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.v2-about-img img {
  width: 100%;
  display: block;
  filter: contrast(1.1) brightness(0.9);
}

.v2-about-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 30px;
  z-index: 1;
  opacity: 0.3;
}

.v2-about-experience {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--gold-border);
  padding: 25px 35px;
  border-radius: 20px;
  z-index: 3;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.v2-about-experience h2 {
  font-size: 48px;
  color: var(--gold) !important;
  line-height: 1;
  margin-bottom: 5px;
}

.v2-about-experience p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.v2-about-content {
  padding-left: 20px;
}

.v2-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.v2-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}

.v2-about-text {
  margin-bottom: 40px;
}

.v2-about-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--gold-border);
}

.v2-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.v2-info-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v2-info-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.v2-info-value a {
  color: inherit;
  transition: color var(--transition-fast);
}

.v2-info-value a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   TECH STACK GRID V2
   ═══════════════════════════════════════════════════════ */
.v2-tech-stack-grid {
  background: var(--bg-deep);
}

.v2-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.v2-tech-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.v2-tech-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(204, 85, 0, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.v2-tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.v2-tech-card:hover .v2-tech-card-glow {
  opacity: 1;
}

.v2-tech-card-content {
  position: relative;
  z-index: 2;
}

.v2-tech-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
}

.v2-tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
  transition: filter var(--transition-fast);
}

.v2-tech-card:hover .v2-tech-icon img {
  filter: brightness(1) invert(0);
}

.v2-tech-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--gold);
}

.v2-tech-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION V2
   ═══════════════════════════════════════════════════════ */
.v2-contact-section {
  border-top: 1px solid var(--gold-border);
  background: radial-gradient(ellipse at bottom, rgba(204, 85, 0, 0.03) 0%, transparent 60%);
}

.v2-contact-info-block {
  padding-right: 30px;
}

.v2-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.v2-contact-link i {
  color: var(--gold);
  font-size: 20px;
}

.v2-contact-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.v2-contact-form-wrap {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.v2-form-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(204, 85, 0, 0.05), transparent 70%);
  border-radius: 30px;
  pointer-events: none;
}

.v2-input-group {
  position: relative;
}

.v2-input-group input,
.v2-input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 15px 0;
  font-size: 16px;
  outline: none;
}

.v2-input-group label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.v2-input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-border);
}

.v2-input-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.v2-input-group input:focus~label,
.v2-input-group input:valid~label,
.v2-input-group textarea:focus~label,
.v2-input-group textarea:valid~label {
  top: -15px;
  font-size: 12px;
  color: var(--gold);
}

.v2-input-group input:focus~.v2-input-line::after,
.v2-input-group textarea:focus~.v2-input-line::after {
  transform: scaleX(1);
}

@media (max-width: 992px) {
  .v2-about-img-wrap {
    padding: 0 0 50px 0;
  }

  .v2-about-content {
    padding-left: 0;
  }

  .v2-tech-grid {
    grid-template-columns: 1fr;
  }

  .v2-contact-form-wrap {
    padding: 30px;
    margin-top: 50px;
  }

  .v2-title {
    font-size: 32px;
  }
}

/* ═══════════════════════════════════════════════════════
   SKILLS GRID - Gold theme override for original layout
   ═══════════════════════════════════════════════════════ */
.my-skills2 .box-bord {
  border-color: var(--gold-border) !important;
  background: var(--bg-card) !important;
  transition: all var(--transition-medium);
}

.my-skills2 .box-bord:hover {
  border-color: var(--gold-border-hover) !important;
  box-shadow: 0 8px 25px rgba(204, 85, 0, 0.1);
  transform: translateY(-3px);
}

.my-skills2 .item .value {
  color: var(--gold) !important;
}

.my-skills2 .item h6 {
  color: var(--text-secondary) !important;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION - Elegant Minimalist Luxury
   ═══════════════════════════════════════════════════════ */
.about-crev {
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Image styling - Luxurious Glow */
.about-crev .img.fit-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(204, 85, 0, 0.15);
  overflow: hidden;
}

.about-crev .img.fit-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.about-crev .img.fit-img img {
  filter: contrast(1.05) saturate(1.1);
  transition: transform var(--transition-slow);
}

.about-crev .img.fit-img:hover img {
  transform: scale(1.03);
}

/* Vector Graphics (mz-shap & line-overlay) */
.about-crev .mz-shap {
  z-index: 0;
  opacity: 0.8;
  filter: drop-shadow(0 0 40px rgba(204, 85, 0, 0.2));
  animation: float 6s ease-in-out infinite;
}

.about-crev .mz-shap svg path {
  fill: var(--gold) !important;
  opacity: 0.5;
}

.about-crev .line-overlay {
  z-index: 0;
  opacity: 0.2;
}

.about-crev .line-overlay svg path {
  stroke: var(--gold) !important;
  opacity: 0.4;
}

/* Typography Overhaul - Editorial Elegance */
.about-crev .content h6 {
  color: var(--gold) !important;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  border-bottom: 1px solid rgba(204, 85, 0, 0.3);
  padding-bottom: 5px;
}

.about-crev .content h2 {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 35px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.about-crev .content h2 span.fw-200 {
  font-style: italic;
  color: var(--gold);
}

.about-crev .content .text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* Author Info - Premium Glass Plaque */
.about-crev .info-author {
  margin: 30px 0 !important;
  padding: 30px 25px !important;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
}

.about-crev .info-author .row>div {
  margin-bottom: 0;
}

.about-crev .info-author .d-flex {
  margin-bottom: 20px;
}

.about-crev .info-author .d-flex:last-child {
  margin-bottom: 0;
}

.about-crev .info-author .fz-16 {
  font-family: var(--font-display);
  color: var(--gold) !important;
  font-weight: 400;
  font-size: 17px;
  font-style: italic;
  min-width: 65px;
}

.about-crev .info-author .fz-14 {
  color: var(--text-primary) !important;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: none;
  white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1250px) {
  .about-crev .info-author {
    padding: 20px 15px !important;
  }

  .about-crev .info-author .fz-16 {
    min-width: 60px;
    font-size: 16px;
  }

  .about-crev .info-author .fz-14 {
    font-size: 13.5px;
    letter-spacing: 0;
  }

  .about-crev .info-author .ml-20 {
    margin-left: 10px !important;
  }
}

.info-author .d-flex {
  padding: 8px 0;
}

/* ═══════════════════════════════════════════════════════
   STICKY PORTFOLIO VISIBILITY FIX
   ═══════════════════════════════════════════════════════ */
.v2-sticky-portfolio {
  position: relative;
  background: var(--bg-deep);
  z-index: 10;
  padding-top: 100px;
}

.v2-sticky-container {
  position: relative;
  padding-bottom: 100px;
}

.v2-sticky-panel {
  position: sticky;
  top: 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-border);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  overflow: hidden;
  padding: 60px 0;
}

.v2-sticky-panel:nth-child(1) {
  top: 100px;
  z-index: 1;
}

.v2-sticky-panel:nth-child(2) {
  top: 140px;
  z-index: 2;
}

.v2-sticky-panel:nth-child(3) {
  top: 180px;
  z-index: 3;
}

.v2-sticky-content {
  padding: 40px;
}

.v2-sticky-tag {
  color: var(--gold) !important;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.v2-sticky-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.v2-sticky-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s var(--ease-luxury);
}

.v2-sticky-panel:hover .v2-sticky-img {
  transform: perspective(1000px) rotateY(0deg);
}

.v2-sticky-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   BUTTON FIX - Proper padding for View Project buttons
   ═══════════════════════════════════════════════════════ */
.v2-sticky-content .butn.butn-bord {
  padding: 14px 35px !important;
  display: inline-block;
}

.v2-sticky-content .butn.butn-bord .text {
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE FOR STICKY PORTFOLIO
   ═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .v2-sticky-panel {
    position: relative;
    top: auto !important;
    min-height: auto;
    padding: 60px 0;
  }

  .v2-sticky-content {
    padding: 0 0 40px 0;
  }

  .v2-sticky-img {
    transform: none;
  }

  .v2-sticky-title {
    font-size: 32px;
  }
}

/* Hamenu Headings Color */
.hamenu .menu-text h2,
.hamenu .cont-info .sub-title {
  color: rgba(204, 85, 0, 0.3) !important;
  opacity: 1 !important;
}

/* ----- Tech Orbit Luxury Layout ----- */
.tech-orbit-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 750px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.tech-orbit-center {
  position: absolute;
  width: 140px;
  height: 140px;
  background: #0f1013;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 40px rgba(204, 85, 0, 0.4), inset 0 0 20px rgba(204, 85, 0, 0.2);
}

.tech-orbit-center span {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(204, 85, 0, 0.5);
}

.tech-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.inner-orbit {
  width: 350px;
  height: 350px;
  animation: orbit-spin 35s linear infinite;
}

.inner-orbit .orbit-item {
  --radius: 175px;
}

.inner-orbit .item-content {
  animation: item-counter-spin 35s linear infinite;
}

.outer-orbit {
  width: 650px;
  height: 650px;
  animation: orbit-spin-reverse 55s linear infinite;
}

.outer-orbit .orbit-item {
  --radius: 325px;
}

.outer-orbit .item-content {
  animation: item-counter-spin-reverse 55s linear infinite;
}

/* Pause on hover */
.tech-orbit-container:hover .tech-orbit,
.tech-orbit-container:hover .item-content {
  animation-play-state: paused;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
  z-index: 5;
  pointer-events: auto;
}

.item-content {
  width: 100%;
  height: 100%;
  background: #0f1013;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.item-content img {
  width: 40px;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.4s ease;
}

.item-content:hover {
  border-color: var(--gold);
  background: #15161a;
  box-shadow: 0 0 30px rgba(204, 85, 0, 0.6), inset 0 0 10px rgba(204, 85, 0, 0.2);
  z-index: 20;
}

.item-content:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.2);
}

.item-content .tooltip {
  position: absolute;
  top: -30px;
  background: #15161a;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
  z-index: 30;
}

.item-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -45px;
}

@keyframes orbit-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes item-counter-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes item-counter-spin-reverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsiveness for Orbit */
@media screen and (max-width: 768px) {
  .tech-orbit-container {
    height: 500px;
    transform: scale(0.6);
  }
}

/* ----- Quantitative Stack ----- */
.quant-stack-container {
  padding: 40px 0;
}

.quant-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all var(--transition-medium);
  height: 100%;
}

.quant-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(204, 85, 0, 0.05);
}

.quant-card .icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 25px;
}

.quant-card h5 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.quant-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
/* Fix vertical alignment */
.about-crev .left-block { margin-top: 0 !important; }


/* ========================================================= */
/* MOBILE RESPONSIVE FIXES                                   */
/* ========================================================= */





/* Fix loader misbehaving on phones */
@media screen and (max-width: 545px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 24px !important;
    letter-spacing: 10px !important;
  }
}

@media screen and (max-width: 430px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 18px !important;
    letter-spacing: 6px !important;
  }
  
  /* Additional orbit scaling to prevent blowout on small screens */
  .tech-orbit-container {
    transform: scale(0.4) !important;
    height: 350px !important;
  }
}


.my-skills2 { overflow: hidden; max-width: 100vw; }


/* Contact Section Mobile Sizing */
@media screen and (max-width: 768px) {
  .contact-crev .sec-head h2 {
    font-size: 40px !important;
  }
  .contact-crev .phone, .contact-crev .phone.fz-30, .contact-crev .phone a {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 480px) {
  .contact-crev .sec-head h2 {
    font-size: 32px !important;
  }
  .contact-crev .phone, .contact-crev .phone.fz-30, .contact-crev .phone a {
    font-size: 20px !important;
  }
}

