/* =========================================
   SANDEEP KUMAR — PORTFOLIO CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&family=Fira+Code:wght@400;500&display=swap');
:root {
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #161616;
  --gold: #c8a96e;
  --gold-light: #e8c98e;
  --gold-dim: rgba(200, 169, 110, 0.15);
  --white: #f5f0e8;
  --white-dim: rgba(245, 240, 232, 0.6);
  --white-faint: rgba(245, 240, 232, 0.08);
  --accent: #4a9eff;
  --accent2: #ff6b6b;
  --border: rgba(200, 169, 110, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}
/* ---- SELECTION ---- */
::selection {
  background: var(--gold);
  color: #000;
}
/*=========================================
  NAVIGATION
  ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
  margin-right: 2rem;
}
.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--gold);
  color: #000 !important;
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  font-weight: 600 !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  padding: 2rem 5%;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  animation: slideDown 0.3s ease;
}
.nav-mobile.open {
  display: block;
}
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.nav-mobile a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--gold);
}
.nav-mobile .nav-cta {
  display: inline-block;
  margin-top: 0.5rem;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   PAGE WRAPPER
   ========================================= */
.page {
  padding-top: var(--nav-h);
  min-height: 100vh;
}
/* =========================================
   HERO — HOME
   ========================================= */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200, 169, 110, 0.06) 0%, transparent 70%),
  radial-gradient(ellipse 40% 60% at 20% 80%, rgba(74, 158, 255, 0.04) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
  linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-text {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .line-gold {
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.hero-image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}
/*.hero-img-frame {
  position: relative;
  width: 380px;
  height: 480px;
}*/
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  /*background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold));*/
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.5;
}
.hero-img-frame img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  z-index: 1;
  display: block;
}
.hero-img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(160deg, #1e1e1e, #111);*/
  border-radius: var(--radius-lg);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-img-placeholder::after {
  content: 'SK';
  font-family: 'DM Sans', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(200, 169, 110, 0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-size: 0.82rem;
  z-index: 2;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 {
  bottom: 30px;
  left: -30px;
  animation-delay: 0s;
}
.hero-float-card.card-2 {
  top: 40px;
  right: -30px;
  animation-delay: 1.5s;
}
.fc-label {
  color: var(--white-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fc-val {
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--white-faint);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}
/* =========================================
   SECTION COMMON
   ========================================= */
.section {
  padding: 3rem 5%;
}
.section-alt {
  background: var(--bg-card);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-desc {
  color: var(--white-dim);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
}
/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
/* =========================================
   HOME — FEATURED PROJECTS PREVIEW
   ========================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.project-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(200, 169, 110, 0.12);
}
.project-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.project-img img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 5s ease-in-out;
}
.project-card:hover .project-img img {
  transform: translateY(calc(300px - 100%));
}
.project-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-info {
  padding: 1.3rem;
}
.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.tag {
  background: var(--gold-dim);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.project-name a{
  text-decoration: none;
  color: #fff;
}
.project-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.6;
}
/* =========================================
   SERVICES GRID
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-icon i{
  font-size: 42px;
  color: var(--gold);
}
.service-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.service-desc {
  font-size: 0.83rem;
  color: var(--white-dim);
  line-height: 1.7;
}
/* =========================================
   SKILLS
   ========================================= */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.skill-cat-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
}
.skill-bar-item {
  margin-bottom: 1.2rem;
}
.skill-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--white-dim);
}
.skill-bar-track {
  height: 4px;
  background: var(--white-faint);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.services-grid .service-card {
  border: 1px solid var(--gold);
}
.skill-icon-item {
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.2rem 0.8rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.skill-icon-item:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}
.skill-icon-item .icon i{
    font-size: 38px;
    color: var(--gold);
}
.skill-icon-item .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.4rem;
}
.skill-icon-item .name {
  font-size: 0.72rem;
  color: var(--white-dim);
  font-weight: 500;
}
/* =========================================
   ABOUT PAGE
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1e1e1e, #111);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(200, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
}
.about-img-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%);
  opacity: 0.3;
  z-index: 0;
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(200, 169, 110, 0.4);
}
.exp-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}
.exp-text {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-greeting {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-bio {
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  margin-bottom: 0.2rem;
}
.detail-val {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}
.detail-val a{
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
}
.hobbies-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hobby-tag {
  background: var(--white-faint);
  border: 1px solid var(--border-subtle);
  color: var(--white-dim);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-subtitle {
  color: var(--white-dim);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  resize: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 240, 232, 0.25);
}
.form-textarea {
  min-height: 140px;
}
.form-select option {
  background: #1a1a1a;
}
.form-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}
.contact-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.ci-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.72rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.ci-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  color: var(--white-dim);
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}
#form-toast{
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  min-width: 280px;
  max-width: 90%;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
#form-toast.success{
    background: #22c55e;
}
#form-toast.error{
    background: #ef4444;
}
/* =========================================
   TESTIMONIALS / CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1505 50%, #0f0f0f 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 3%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.cta-desc {
  color: var(--white-dim);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* =========================================
   FAQ
   ========================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 1rem;
  user-select: none;
}
.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 1rem;
}
/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #050505;
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo span {
  color: var(--gold);
}
.footer-tagline {
  color: var(--white-dim);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--white-dim);
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.fsocial {
  width: 34px;
  height: 34px;
  background: var(--white-faint);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}
.fsocial:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}
/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: 3rem 5% 4rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.page-hero-desc {
  color: var(--white-dim);
  max-width: 550px;
  margin: 0 auto;
  font-size: 0.95rem;
}
/* =========================================
   ALL PROJECTS GRID
   ========================================= */
.filter-bar {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--white-dim);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.projects-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* =========================================
   SERVICES PAGE
   ========================================= */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-page-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-page-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-page-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.service-page-card:hover::after {
  width: 100%;
}
.spc-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}
.spc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.spc-desc {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.spc-features {
  list-style: none;
}
.spc-features li {
  font-size: 0.82rem;
  color: var(--white-dim);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.spc-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}
/* =========================================
   PROCESS STEPS
   ========================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 169, 110, 0.2));
}
.process-step {
  text-align: center;
}
.ps-num {
  width: 56px;
  height: 56px;
  background: var(--bg-card2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
}
.ps-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ps-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.7;
}
/* =========================================
   TOAST
   ========================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 320px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
/* =========================================
   BACK TO TOP
   ========================================= */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--gold);
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-img-frame {
    width: 280px;
    height: 360px;
  }
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-float-card.card-1 {
    left: 0;
  }
  .hero-float-card.card-2 {
    right: 0;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-all-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    max-width: 350px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .skill-icons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .projects-grid,
  .projects-all-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about-details {
    grid-template-columns: 1fr;
  }
  .skill-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section {
    padding: 2rem 5%;
  }
  .hero {
    padding: 3rem 5%;
  }
  .about-exp-badge {
    bottom: -20px;
    right: -10px;
  }
  .contact-form {
    padding: 1rem;
  }
  .contact-card {
    padding: 1rem;
  }
  .service-page-card {
    border: 1px solid var(--gold);
    padding: 1.5rem;
  }
}
@media (max-width: 768px){
  .pricing-card > div:last-child{
    display:flex !important;
    overflow-x:auto;
    overflow-y:hidden;
    gap:15px;
    padding:10px 0;
    scrollbar-width:thin;
    scrollbar-color:#c8a96e transparent;
    -ms-overflow-style:none;
  }
  .pricing-card > div:last-child::-webkit-scrollbar{
    display:none;
  }
  .pricing-card > div:last-child > div{
    flex:0 0 85%;
  }
}
.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 6px 15px rgba(0,0,0,.3);
    z-index: 9999;
    transition: .3s ease;
}
.whatsapp-float:hover{
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.08);
}