/* Vishal Studio – Dark Premium Static Site (No PHP)
   -------------------------------------------------- */

:root {
  --bg: #020617;
  --surface: rgba(15, 23, 42, 0.98);
  --surface-soft: rgba(15, 23, 42, 0.9);
  --accent: #6366f1;
  --accent-2: #ec4899;
  --accent-3: #22c55e;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-strong: 0 30px 90px rgba(15, 23, 42, 0.95);
  --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.9);
  --max-width: 1180px;
  --transition: 0.25s ease;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
    "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.28) 0, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.28) 0, transparent 55%),
    radial-gradient(circle at 50% 110%, rgba(34, 197, 94, 0.18) 0, transparent 60%),
    var(--bg);
  background-attachment: fixed;
  font-family: var(--font-main);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  flex: 1;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* PRELOADER */

#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 0 0, #111827 0, #020617 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: var(--text-main);
  transition: opacity 0.4s ease;
}

#preloader.fade-out {
  opacity: 0;
}

.preloader-logo {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: conic-gradient(from 180deg, #6366f1, #22c55e, #ec4899, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.9);
  margin-bottom: 16px;
}

.preloader-logo-inner {
  width: 82%;
  height: 82%;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 0, #020617 0, #020617 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.preloader-spinner {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid rgba(148, 163, 184, 0.5);
  border-top-color: #a5b4fc;
  animation: spin 1s linear infinite;
  margin-top: 6px;
}

.preloader-text {
  margin-top: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.16) 0, transparent 55%),
    radial-gradient(circle at 100% 0, rgba(236, 72, 153, 0.16) 0, transparent 55%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.88), transparent);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  background-image: url("../video/WhatsApp\ Image\ 2025-12-09\ at\ 2.08.10\ PM.jpeg");
  padding: 3px;
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle at 15% 0, #111827 0, #020617 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  position: relative;
  color: white;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: #f9fafb;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.5) 0, transparent 65%);
  color: #f9fafb;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  transition: var(--transition);
}

.nav-cta::after {
  content: "•";
  color: #22c55e;
  font-size: 18px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(249, 250, 251, 0.9);
  background:
    radial-gradient(circle at 100% 0, rgba(236, 72, 153, 0.6) 0, transparent 60%);
}

/* MOBILE NAV */

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* HERO VIDEO */

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 760px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 18px 40px;
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  margin-bottom: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.9);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: -100px;
}

.hero-title {
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 50px;
}

.hero-title span {
  display: block;
  background: linear-gradient(120deg, #a5b4fc, #f9a8d4, #4ade80);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-typing {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  margin-bottom: 12px;
  font-weight: 800;
}

.hero-typing span {
  color: white;
}

.hero-subtitle {
  font-size: 15px;
  color:white;
  max-width: 520px;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: #cbd5f5;
}

/* Animated buttons */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.btn,
a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary {
  background: radial-gradient(circle at 0 0, rgba(148, 163, 253, 0.6) 0, transparent 60%),
    linear-gradient(135deg, #6366f1, #ec4899);
  color: #f9fafb;
  box-shadow: 0 22px 65px rgba(79, 70, 229, 0.95);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.45) 0, transparent 55%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.btn-primary:hover::before {
  opacity: 1;
  transform: translateX(10%);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.06);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.94);
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0 0, rgba(148, 163, 253, 0.4) 0, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: #a5b4fc;
}

.hero-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-meta strong {
  color: #e5e7eb;
}

/* HERO RIGHT PANEL */

.hero-panel {
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.3) 0, transparent 60%),
    radial-gradient(circle at 100% 0, rgba(236, 72, 153, 0.36) 0, transparent 65%),
    radial-gradient(circle at 50% 120%, rgba(34, 197, 94, 0.3) 0, transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-pill-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-pill {
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  font-size: 10px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  font-size: 11px;
}

.hero-stat {
  border-radius: 15px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 8px 9px;
}

.hero-stat .value {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.hero-stat .label {
  color: var(--text-muted);
}

.hero-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-note strong {
  color: #a5b4fc;
}

/* SECTIONS */

section.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 18px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
}

/* CARDS & GRID */

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 16px 15px 18px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
  border-color var(--transition), background var(--transition);
  opacity: 0.9;
}



.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.32) 0, transparent 55%),
    radial-gradient(circle at 100% 0, rgba(236, 72, 153, 0.28) 0, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 1);
}

.card:hover::before {
  opacity: 1;
}

.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.card-chip {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

/* PORTFOLIO GRID */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  
   background: linear-gradient(
    135deg,
    rgba(13, 56, 175, 0.6),
    rgba(83, 10, 126, 0.6)
  );
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  height: 200px;
  padding: 13px 7px;
}

.portfolio-thumb1 {
  height: 160px;
  background-image: url("../video/WhatsApp\ Image\ 2025-12-10\ at\ 7.51.45\ PM.jpeg");
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.portfolio-thumb2 {
  height: 160px;
  background-image: url("../video/WhatsApp\ Image\ 2025-12-10\ at\ 8.12.59\ PM.jpeg");
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.portfolio-thumb3 {
  height: 160px;
  background-image: url("../video/WhatsApp\ Image\ 2025-12-10\ at\ 8.11.50\ PM.jpeg");
  display: flex;
  align-items: flex-end;
  padding: 10px;
}

.portfolio-pill {
  padding: 5px 20px;
  margin: 30px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.65);
  font-size: 15px;
}

.portfolio-body {
  padding: 10px 11px 12px;
}

.portfolio-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.portfolio-meta {
  color: #cbd5f5;
  font-size: 15px;
}

/* CONTACT FORM */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-strong);
  padding: 18px 18px 20px;
  font-size: 13px;
}

.contact-card h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}

input,
textarea,
select {
  border-radius: 11px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  font-family: var(--font-main);
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition), transform 0.1s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

input:focus,
textarea:focus,
select:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.7);
  background: #020617;
  transform: translateY(-0.5px);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.submit-btn {
  margin-top: 12px;
  width: 100%;
  border-radius: 11px;
  border: none;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #f9fafb;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 20px 55px rgba(79, 70, 229, 0.95);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.submit-btn:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.06);
}

.contact-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.contact-details {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
  font-size: 13px;
}

.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.contact-details li + li {
  margin-top: 8px;
}

.contact-value {
  font-weight: 500;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  background: #020617;
  font-size: 11px;
  color: var(--text-muted);
  padding: 14px 18px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* FLOAT BUTTONS */

.float-rail {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  z-index: 70;
}

.float-rail a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: #22c55e;
  color: #f9fafb;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.95);
  transition: var(--transition);
  white-space: nowrap;
}

.float-rail a:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.back-to-top {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  border: none;
  background: #020617;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-1px);
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .card-grid-3,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-video-overlay {
    padding-top: 72px;
  }

  section.section {
    padding: 44px 18px;
  }
}

@media (max-width: 640px) {
  .card-grid-3,
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .float-rail {
    right: 12px;
    bottom: 12px;
  }

  .hero-video {
    max-height: none;
  }
}

/* KEYFRAMES */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



