@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
:root {
  --bg-dark: #05050a;
  --bg-darker: #020204;
  --text-primary: #ebf0f5;
  --text-secondary: #94a3b8;
  --accent-primary: #00f2fe;
  --accent-secondary: #4facfe;
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --font-main: 'Outfit', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(79, 172, 254, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 242, 254, 0.08), transparent 25%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
}
/* Cinematic Film Grain Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* Glassmorphism Utilities with Spotlight Support */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.glass.spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 242, 254, 0.06),
    transparent 40%
  );
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.glass.spotlight:hover::before {
  opacity: 1;
}
/* Text Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  color: #000;
  border: none;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}
/* Header Component Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: padding 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  padding: 0.8rem 0;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 50px;
}
.logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 101;
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(2, 2, 4, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.active {
  transform: translateY(0);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.mobile-nav-link {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.mobile-nav-link:hover {
  color: var(--accent-primary);
}
/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}
/* -------------------------------------
   SECTION UTILITIES
-------------------------------------- */
.section-padding {
  padding: 6rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
/* -------------------------------------
   HERO SECTION
-------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
}
.hero-image-wrapper {
  position: relative;
  border-radius: 50%;
  padding: 1.5rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-image-inner:hover .profile-img {
  transform: scale(1.1) rotate(1deg);
}
/* Common Card Image Parallax */
.project-img-wrapper, .service-img-wrapper, .feature-icon-wrapper {
  overflow: hidden;
  border-radius: inherit;
}
.project-img, .service-img, .feature-img {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-card:hover .project-img,
.service-card:hover .service-img,
.feature-card:hover .feature-img {
  transform: scale(1.1) translateY(-5px);
}
.glass-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.6;
}
.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-primary);
  top: -10%;
  right: -10%;
}
.blob-2 {
  width: 250px;
  height: 250px;
  background: var(--accent-secondary);
  bottom: -10%;
  left: -10%;
}
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-subtitle {
    margin: 0 auto 2.5rem auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}
/* -------------------------------------
   STATS SECTION
-------------------------------------- */
.stats-section {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.01);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
/* -------------------------------------
   FEATURES / WHY CHOOSE ME
-------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.1);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  position: relative;
  z-index: 2;
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.feature-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* -------------------------------------
   CTA BANNER
-------------------------------------- */
.cta-banner {
  padding: 4rem;
  border-radius: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.2);
}
.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 242, 254, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.cta-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 3rem 2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
}
/* -------------------------------------
   ABOUT PAGE STYLES
-------------------------------------- */
.page-header {
  padding: 180px 0 60px;
  text-align: center;
  position: relative;
}
.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
/* Profile Section */
.profile-section {
  padding: 4rem 0;
}
.profile-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.profile-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.profile-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.profile-bio {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.profile-bio p {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .profile-img-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
/* Skills Section */
.skills-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.skill-item {
  margin-bottom: 2rem;
}
.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.skill-name {
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.skill-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-primary);
}
.skill-percent {
  font-weight: 700;
  color: var(--text-secondary);
  font-family: monospace;
  font-size: 1.1rem;
}
.skill-bar-container {
  width: 100%;
  height: 10px;
  background: var(--glass-bg);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.skill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  border-radius: 5px;
  width: 0; /* Animated by GSAP */
  position: relative;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}
@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .skill-item {
    margin-bottom: 2.5rem;
  }
}
/* Timeline Section */
.timeline-section {
  padding: 6rem 0;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 60px;
}
.timeline-dot {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--accent-primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
  z-index: 2;
}
.timeline-content {
  padding: 2rem;
  border-radius: 20px;
  position: relative;
}
.timeline-date {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.timeline-company {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}
.timeline-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }
  .timeline-item {
    padding-left: 40px;
  }
  .timeline-dot {
    left: 1px;
  }
  .timeline-content {
    padding: 1.5rem;
  }
}
/* -------------------------------------
   PROJECTS PAGE STYLES
-------------------------------------- */
/* Filters */
.projects-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-primary);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}
.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.1);
}
.project-img-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.project-card:hover .project-img {
  transform: scale(1.08);
}
.project-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}
.project-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tech-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-secondary);
}
.project-actions {
  display: flex;
  gap: 1rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}
/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 4, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: none; /* toggled via JS */
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.modal-content {
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.8);
}
/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.02);
}
.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: var(--accent-primary);
  color: #000;
  transform: rotate(90deg);
}
.modal-body {
  padding: 3rem;
}
.modal-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.modal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.modal-desc-full {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .modal-body {
    padding: 2rem 1.5rem;
  }
  .modal-title {
    font-size: 2rem;
  }
}
/* -------------------------------------
   SERVICES PAGE STYLES
-------------------------------------- */
/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.service-card {
  padding: 3rem 2rem;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(0, 242, 254, 0.1), transparent);
  transition: height 0.4s ease;
  z-index: 0;
}
.service-card:hover::before {
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 254, 0.2);
}
.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-primary);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrapper {
  background: var(--accent-primary);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
}
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.service-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.pricing-card {
  padding: 3rem 2rem;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.4s ease;
}
.pricing-card.popular {
  border-color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.05);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.15);
  z-index: 2;
}
.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.pricing-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 0.2rem;
  color: var(--text-secondary);
}
.pricing-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 0.5rem;
}
.pricing-features {
  margin-bottom: 2.5rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}
.feature-check {
  color: var(--accent-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.feature-x {
  color: #ef4444;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.5;
}
.pricing-card .btn {
  width: 100%;
  text-align: center;
}
/* Animations */
.pulse-btn {
  animation: pulse-glow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 242, 254, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
  }
}
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pricing-card.popular {
    transform: scale(1);
  }
}
/* -------------------------------------
   CONTACT PAGE STYLES
-------------------------------------- */
.contact-section {
  padding: 4rem 0 8rem;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
/* Contact Info */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-primary);
  flex-shrink: 0;
}
.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.contact-details p {
  color: var(--text-secondary);
  font-size: 1rem;
}
/* Social Icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-icon:hover {
  background: var(--accent-primary);
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}
/* Contact Form */
.contact-form-wrap {
  padding: 3rem;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.contact-form-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.03);
  box-shadow: 0 0 0 4px rgba(0, 242, 254, 0.1);
}
/* Let JS handle the transition of the label color */
.form-group.focused .form-label {
  color: var(--accent-primary);
}
textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.submit-btn {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 2rem;
  }
}
/* -------------------------------------
   FOOTER STYLES
-------------------------------------- */
.site-footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(2, 2, 4, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6rem 0 3rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0.3;
}
.footer-cta {
  margin-bottom: 5rem;
  padding: 3rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, transparent 100%);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-cta-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.footer-cta-text p {
  color: var(--text-secondary);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand {
  max-width: 320px;
}
.footer-logo {
  font-size: 2.2rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.footer-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--accent-primary);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-link {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-link:hover {
  color: var(--accent-primary);
  transform: translateX(8px);
}
.footer-link i {
  font-size: 0.8rem;
  opacity: 0.5;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
}
.contact-item svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}
.wa-btn {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25D366;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.wa-btn:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .footer-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
/* -------------------------------------
   SVARIYA SHOWCASE STYLES
-------------------------------------- */
.gold-gradient {
  background: linear-gradient(135deg, #FFD700, #B8860B, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Taj Chess specific gradient */
.wood-gradient {
  background: linear-gradient(135deg, #D4A373, #8B5A2B, #3E2723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svariya-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.05), transparent 60%);
}
.svariya-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.svariya-product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.svariya-product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.1);
}
.svariya-product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svariya-product-card:hover .svariya-product-img {
  transform: scale(1.08);
}
.svariya-product-info {
  padding: 1.5rem;
  text-align: center;
}
.svariya-product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.svariya-product-price {
  color: #B8860B;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.category-pill {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--text-primary);
  margin: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}
.category-pill:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #B8860B;
  transform: translateY(-2px);
}
.review-card {
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0.5));
  border: 1px solid var(--glass-border);
}
.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
/* -------------------------------------
   CUSTOM ANIMATED CURSOR
-------------------------------------- */
body {
  cursor: none; /* Hide default cursor */
}
a, button, input, textarea, select, .project-card, .service-card, .feature-card, .pricing-card {
  cursor: none !important;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #00f2fe;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px #00f2fe, 0 0 20px rgba(0,242,254,0.6);
}
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0,242,254,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
}
/* -------------------------------------
   ADVANCED INTERACTIONS (RIPPLE)
-------------------------------------- */
.click-ripple {
  position: fixed;
  width: 20px;
  height: 20px;
  background: rgba(0,242,254,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  animation: rippleAnim 0.6s ease-out;
}
@keyframes rippleAnim {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
  }
}
/* -------------------------------------
   SCROLL PROGRESS BAR
-------------------------------------- */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 100000;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
  transition: width 0.1s ease-out;
}
/* -------------------------------------
   GLITCH TEXT EFFECT
-------------------------------------- */
.scramble-text {
  display: inline-block;
  min-height: 1.2em;
}
.glitch-char {
  color: var(--accent-primary);
  opacity: 0.8;
  text-shadow: 0 0 5px var(--accent-primary);
}
/* -------------------------------------
   PRELOADER
-------------------------------------- */
#global-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
.preloader-content {
  text-align: center;
  color: #fff;
}
.preloader-glow {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(0,242,254,0.6);
  animation: pulsePreloader 1.5s infinite alternate;
}
@keyframes pulsePreloader {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}
/* -------------------------------------
   INFINITE MARQUEE
-------------------------------------- */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  display: flex;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-content span {
  font-size: 2.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  margin: 0 1.5rem;
  letter-spacing: 2px;
}
.marquee-content span.marquee-dot {
  color: var(--accent-primary);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 10px var(--accent-primary);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* -------------------------------------
   PROJECT ARCHIVE (IMAGE REVEAL ON HOVER)
-------------------------------------- */
.archive-list {
  display: flex;
  flex-direction: column;
}
.archive-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.archive-item:hover {
  padding-left: 20px;
  color: var(--accent-primary);
}
.archive-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  flex: 2;
  pointer-events: none;
}
.archive-role, .archive-year {
  color: var(--text-secondary);
  font-size: 1.1rem;
  flex: 1;
  text-align: right;
  transition: color 0.3s ease;
  pointer-events: none;
}
.archive-item:hover .archive-role,
.archive-item:hover .archive-year {
  color: #fff;
}
@media(max-width: 768px) {
  .archive-role, .archive-year { display: none; }
}
/* The Floating Hover Image */
.hover-reveal-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0, 242, 254, 0.2);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 100000;
  transform: translate(-50%, -50%) scale(0.8) rotate(-5deg);
  object-fit: cover;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hover-reveal-img.active {
  opacity: 1;
  visibility: visible;
}
.back-nav {
  position: fixed;
  top: 130px;
  left: 3rem;
  z-index: 999;
  margin: 0;
  pointer-events: none; /* Let clicks pass to the button itself */
}
@media (max-width: 1200px) {
  .back-nav {
    left: 1.5rem;
  }
}
@media (max-width: 768px) {
  .back-nav {
    top: 100px;
    left: 1rem;
  }
}
.back-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--glass-border);
  background: rgba(10, 10, 15, 0.8); /* Stronger background for fixed position */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.back-btn:hover {
  color: var(--accent-primary);
  border-color: rgba(0, 242, 254, 0.4);
  transform: translateX(-8px);
  background: var(--glass-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.back-btn svg {
  transition: transform 0.4s ease;
}
.back-btn:hover svg {
  transform: scale(1.1);
}
