/* ===== VIJAY BHARWAD - CUSTOM STYLES ===== */
:root {
  --primary: #6c63ff;
  --primary-dark: #5a52d5;
  --secondary: #ff6584;
  --bg-dark: #0a0a1a;
  --bg-card: #12122a;
  --bg-card-hover: #1a1a3e;
  --text: #e0e0e0;
  --text-muted: #8888aa;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #6c63ff, #ff6584);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(108, 99, 255, 0.15);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== NAVBAR ===== */
.vb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.vb-navbar.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.vb-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vb-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.vb-logo span { color: var(--primary); }

.vb-nav-links {
  display: flex;
  gap: 32px;
}

.vb-nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.vb-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.vb-nav-links a:hover,
.vb-nav-links a.active {
  color: var(--white);
}

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

.vb-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.vb-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.vb-btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

.vb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.6);
  color: var(--white);
}

.vb-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.vb-btn-outline:hover {
  border-color: var(--primary);
  background: rgba(108, 99, 255, 0.1);
  color: var(--white);
}

/* ===== HERO ===== */
.vb-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.vb-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 101, 132, 0.1) 0%, transparent 50%);
}

.vb-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vb-hero-tag {
  display: inline-block;
  background: rgba(108, 99, 255, 0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(108, 99, 255, 0.3);
}

.vb-hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.vb-gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vb-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vb-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.vb-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.vb-stat-item { text-align: center; }

.vb-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.vb-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vb-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.vb-hero-scroll a {
  color: var(--text-muted);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION COMMON ===== */
.vb-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.vb-section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.vb-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

/* ===== ABOUT ===== */
.vb-about {
  padding: 100px 0;
  background: var(--bg-dark);
}

.vb-about-image {
  position: relative;
  margin-bottom: 30px;
}

.vb-about-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(108, 99, 255, 0.3);
}

.vb-about-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.vb-about-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.vb-about-content h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.vb-about-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.vb-about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.vb-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vb-detail-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.vb-detail-item strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.vb-detail-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== SERVICES ===== */
.vb-services {
  padding: 100px 0;
  background: var(--bg-card);
}

.vb-service-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.vb-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 99, 255, 0.3);
  box-shadow: var(--shadow);
}

.vb-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--white);
}

.vb-service-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.vb-service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== PORTFOLIO ===== */
.vb-portfolio {
  padding: 100px 0;
  background: var(--bg-dark);
}

.vb-portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.vb-portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.vb-portfolio-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.vb-portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.vb-portfolio-card:hover .vb-portfolio-img img {
  transform: scale(1.05);
}

.vb-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(108, 99, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.vb-portfolio-card:hover .vb-portfolio-overlay {
  opacity: 1;
}

.vb-portfolio-overlay a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.vb-portfolio-info {
  padding: 20px;
}

.vb-portfolio-info h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.vb-portfolio-info span {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== CONTACT ===== */
.vb-contact {
  padding: 100px 0;
  background: var(--bg-card);
}

.vb-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vb-contact-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.vb-contact-card:hover {
  border-color: rgba(108, 99, 255, 0.3);
}

.vb-contact-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.vb-contact-card h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.vb-contact-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.vb-contact-form {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px;
}

.vb-contact-form input,
.vb-contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

.vb-contact-form input:focus,
.vb-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.vb-contact-form input::placeholder,
.vb-contact-form textarea::placeholder {
  color: var(--text-muted);
}

.vb-contact-form textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.vb-footer {
  padding: 60px 0 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vb-footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0;
}

.vb-social-links {
  display: flex;
  gap: 12px;
}

.vb-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vb-social-links a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.vb-footer-links h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.vb-footer-links li { margin-bottom: 10px; }

.vb-footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.vb-footer-links a:hover { color: var(--primary); }

.vb-footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.vb-footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== SCROLL TOP ===== */
.vb-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.vb-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.vb-scroll-top:hover {
  transform: translateY(-3px);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .vb-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .vb-nav-links.active { right: 0; }
  .vb-menu-toggle { display: block; }

  .vb-hero-title { font-size: 2.8rem; }
  .vb-hero-stats { gap: 24px; }
  .vb-about-details { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .vb-hero-title { font-size: 2.2rem; }
  .vb-hero-actions { flex-direction: column; align-items: center; }
  .vb-hero-stats { flex-direction: column; gap: 16px; }
  .vb-section-title { font-size: 2rem; }
  .vb-contact-form { padding: 24px; }
}
