@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors - Sleek Brightened Dark Mode iOS Styling */
  --bg-primary: #0b1329;       /* Rich Deep Navy */
  --bg-secondary: #121d3b;     /* Vibrant Midnight Navy */
  
  /* iPhone Glassmorphic Card Settings */
  --bg-card: rgba(255, 255, 255, 0.05);       /* Brighter Frosted Glass */
  --bg-card-hover: rgba(255, 255, 255, 0.10);
  --border-color: rgba(255, 255, 255, 0.14);  /* Sharper Glass Outlines */
  --border-hover: rgba(255, 255, 255, 0.32);
  
  /* Core Brand Colors - Blue, Green, Light Pink */
  --primary: #1a75ff;         /* Electric Blue */
  --accent-green: #00ffaa;    /* Neon Green / Cyan */
  --accent-pink: #ff8ec6;     /* Bright Pink */
  
  /* Shared Gradients */
  --gradient-blue-green: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
  --gradient-green-pink: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
  --gradient-pink-blue: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary) 100%);
  --gradient-mix: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 50%, var(--accent-pink) 100%);
  
  --text-white: #ffffff;
  --text-light: #f8fafc;
  --text-muted: #cbd5e1;      /* Bright Muted Slate Text */
  
  /* Fonts */
  --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout & Animations */
  --header-height: 85px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 24px;
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  touch-action: pan-y; /* Locks touchscreens to vertical scrolling only */
}

img, svg, video, iframe, canvas {
  max-width: 100% !important;
  height: auto;
}

section, header, footer, main, nav, .hero-section, .breadcrumbs-banner, .stats-banner, .footer-marquee, .site-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p, span, a, li, label, strong {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

mark {
  background: transparent;
  color: var(--accent-green);
}

/* Text Gradients */
.text-gradient-cyan {
  background: var(--gradient-blue-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

/* Grid & Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Interactive Canvas Background Layer */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Radial Glow Circles (Blue, Green, Light Pink mix) */
.glow-blur {
  position: fixed;
  width: 500px;
  height: 500px;
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 98, 255, 0.28) 0%, rgba(0, 255, 170, 0.18) 35%, rgba(255, 142, 198, 0.12) 70%, rgba(0,0,0,0) 100%);
  filter: blur(100px);
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.glow-blur.one {
  top: 0;
  right: 0;
  transform: translate(15%, -15%);
  background: radial-gradient(circle, rgba(0, 98, 255, 0.32) 0%, rgba(255, 142, 198, 0.18) 50%, rgba(0,0,0,0) 100%);
}

.glow-blur.two {
  bottom: 0;
  left: 0;
  transform: translate(-15%, 15%);
  background: radial-gradient(circle, rgba(0, 255, 170, 0.25) 0%, rgba(0, 98, 255, 0.18) 50%, rgba(0,0,0,0) 100%);
}

/* Header / Navbar */
.site-header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.sticky {
  background: rgba(11, 19, 41, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  height: 75px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 50px;
  width: 150px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(8, 16, 35, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap !important;
}

/* Transparent iOS-style Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  white-space: nowrap !important;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.btn_label {
  white-space: nowrap !important;
  display: inline-block;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-mix);
  opacity: 0.15;
  z-index: -1;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 98, 255, 0.2), 0 0 15px rgba(0, 245, 160, 0.15);
}

.btn-primary:hover::before {
  opacity: 0.35;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
  transition: var(--transition);
}

.btn:hover .btn-arrow {
  transform: translate(3px, -3px);
}

body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-nav-toggle:hover, .mobile-nav-toggle:active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-cta-btn,
#btn-mobile-started {
  display: none !important;
}

/* Breadcrumbs Section */
.breadcrumbs-banner {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, rgba(8, 16, 35, 0.4) 0%, rgba(4, 8, 21, 0.7) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.breadcrumbs-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.breadcrumbs-banner h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.breadcrumbs-list {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumbs-list a:hover {
  color: var(--accent-green);
}

.breadcrumbs-list i {
  font-size: 12px;
}

/* Glassmorphism Cards (Frosted iPhone Panels) */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  /* A colorful spotlight light combining green, blue, and pink with a slight increase in intensity */
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 245, 160, 0.08) 0%, rgba(0, 98, 255, 0.05) 35%, rgba(255, 126, 185, 0.03) 70%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

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

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 160, 0.05);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h4 {
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-content h4::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent-green);
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-bullets {
  margin-bottom: 40px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-bullets li i {
  color: var(--accent-green);
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hotline-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hotline-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 16px;
  backdrop-filter: blur(10px);
}

.hotline-text small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hotline-text strong {
  color: var(--text-white);
  font-size: 15px;
}

/* Stats Counter Grid */
.stats-banner {
  background: rgba(8, 16, 35, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  position: relative;
  backdrop-filter: blur(10px);
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 24px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 36px;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--text-white);
}

.stat-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: -4px;
}

/* Approach / Work Process Accordion */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--accent-green);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title h2 {
  font-size: 38px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(15px);
}

.accordion-item.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
}

.accordion-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--text-white);
  transition: var(--transition);
}

.accordion-item.active .accordion-header {
  color: var(--accent-green);
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.approach-layers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-layer-tab {
  padding: 20px 30px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-family: var(--font-headings);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.approach-layer-tab.active, .approach-layer-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-green);
  color: var(--text-white);
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.1);
}

/* Technology Stack Filtering Section */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tech-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.tech-tab-btn.active, .tech-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 5px 15px rgba(0, 98, 255, 0.1);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.tech-card {
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-name {
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 16px;
  color: var(--text-white);
}

/* Services Page Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 28px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .service-learn-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 14px;
  color: var(--accent-green);
}

.service-card:hover .service-learn-more i {
  transform: translateX(4px);
}

/* Inclusions Grid on Services Page */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.inclusion-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.inclusion-number {
  font-size: 32px;
  font-weight: 800;
  color: rgba(255, 126, 185, 0.25);
  font-family: var(--font-headings);
  line-height: 1;
}

.inclusion-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.inclusion-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Portfolio Grid */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

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

.portfolio-item {
  display: flex;
  flex-direction: column;
}

.portfolio-img-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-color);
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 8, 21, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-item-title {
  font-size: 20px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.portfolio-tech-list {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.portfolio-tech-list span {
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  color: var(--text-light);
}

/* Pricing Page Styles */
.pricing-card {
  text-align: center;
}

.pricing-card.popular {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 98, 255, 0.1), 0 0 25px rgba(255, 126, 185, 0.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-mix);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-plan {
  font-size: 24px;
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-headings);
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.pricing-features li i {
  color: var(--accent-green);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  padding: 24px;
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  backdrop-filter: blur(5px);
}

.team-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Founder Details Page (tanmay.html) */
.founder-profile-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.founder-info-card {
  text-align: center;
  position: sticky;
  top: 100px;
}

.founder-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 98, 255, 0.3), 0 0 20px rgba(255, 126, 185, 0.15);
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-meta-list {
  text-align: left;
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.founder-meta-list li {
  margin-bottom: 16px;
  font-size: 15px;
}

.founder-meta-list li strong {
  color: var(--text-white);
  width: 140px;
  display: inline-block;
}

.founder-bio-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.founder-bio-section p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.skills-wrapper {
  margin-top: 40px;
}

.skill-bar-container {
  margin-bottom: 20px;
}

.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 15px;
  margin-bottom: 8px;
}

.skill-bar-bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.skill-bar-fill {
  height: 100%;
  background: var(--gradient-mix);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease-out;
}

.timeline {
  margin-top: 40px;
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -32px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--accent-green);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 10px var(--accent-green);
}

.timeline-year {
  color: var(--accent-pink);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 20px;
  backdrop-filter: blur(10px);
}

.contact-info-text h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 15px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 14px;
  color: var(--text-white);
}

.form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.form-control:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

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

/* Footer Section */
.footer-marquee {
  background: var(--gradient-mix);
  padding: 20px 0;
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: nowrap;
  contain: paint layout;
  box-sizing: border-box !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
  display: inline-block;
  will-change: transform;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--text-white);
  margin-right: 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.site-footer {
  background: #060c1c;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget h3 {
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-pink);
}

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-green);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form .form-control {
  flex-grow: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--accent-green);
}

/* Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Hide Rule for Mobile CTA Button */
@media (min-width: 992px) {
  .mobile-cta-btn,
  .nav-menu .mobile-cta-btn,
  #btn-mobile-started {
    display: none !important;
  }
}

/* Responsive Media Queries - Optimized for PC, Tablets & Smartphones */
@media (max-width: 1200px) and (min-width: 992px) {
  .nav-menu {
    gap: 20px;
  }
  .nav-link {
    font-size: 14px;
  }
  .btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .approach-grid, .founder-profile-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .services-grid, .portfolio-grid, .inclusions-grid, .team-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .site-header {
    height: 72px;
  }
  .site-header.sticky {
    height: 64px;
  }
  .logo-wrapper {
    height: 40px;
    width: 130px;
    z-index: 1100;
  }
  .mobile-nav-toggle {
    display: flex;
    margin-right: 0;
    z-index: 1100;
  }
  .nav-actions {
    display: none;
  }

  /* Clean Mobile Glass Off-Canvas Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh;
    height: 100dvh;
    background: rgba(4, 8, 21, 0.97);
    backdrop-filter: blur(35px) saturate(190%);
    -webkit-backdrop-filter: blur(35px) saturate(190%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 90px 20px 40px;
    display: none; /* OFF-CANVAS HIDDEN COMPLETELY WHEN CLOSED */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1050;
    box-sizing: border-box !important;
  }

  .nav-menu.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-menu .nav-link {
    font-size: 19px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    padding: 10px 20px;
    border-radius: 14px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-green);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu.open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.open .nav-link:nth-child(1) { transition-delay: 0.08s; }
  .nav-menu.open .nav-link:nth-child(2) { transition-delay: 0.12s; }
  .nav-menu.open .nav-link:nth-child(3) { transition-delay: 0.16s; }
  .nav-menu.open .nav-link:nth-child(4) { transition-delay: 0.20s; }
  .nav-menu.open .nav-link:nth-child(5) { transition-delay: 0.24s; }
  .nav-menu.open .nav-link:nth-child(6) { transition-delay: 0.28s; }
  .nav-menu.open .nav-link:nth-child(7) { transition-delay: 0.32s; }

  /* Mobile CTA Button inside Drawer */
  .mobile-cta-btn {
    display: inline-flex !important;
    margin-top: 10px;
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu.open .mobile-cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.36s;
  }

  /* Mobile Dropdown Styling */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
    margin-top: 8px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .dropdown-menu.open-mobile {
    display: block;
  }
  .dropdown-item {
    font-size: 16px;
    padding: 8px 0;
    color: var(--text-muted);
  }
  .dropdown-item:hover {
    background: transparent;
    color: var(--accent-green);
  }
}

@media (max-width: 768px) {
  .glow-blur {
    width: 280px;
    height: 280px;
    filter: blur(70px);
    max-width: 80vw;
  }
  .glow-blur.one {
    top: -5%;
    right: -5%;
  }
  .glow-blur.two {
    bottom: 5%;
    left: -5%;
  }

  .container {
    padding: 0 16px;
  }

  .glass-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS safari input focus */
    padding: 12px 16px;
  }

  .services-grid, .portfolio-grid, .inclusions-grid, .team-grid, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hotline-cta {
    justify-content: center;
    width: 100%;
  }

  .founder-info-card {
    position: relative;
    top: 0;
  }

  .founder-meta-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .founder-meta-list li strong {
    width: auto;
    display: block;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Portfolio Case Modal Mobile Responsive */
  .modal-card {
    padding: 24px 16px !important;
    width: 94% !important;
    max-height: 88vh !important;
  }
  .modal-meta-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px 0 !important;
  }
}

/* Hero Glass Card Layout Adjustments */
.hero-glass-card-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
}

.hero-glass-card-logo {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

@media (max-width: 580px) {
  .hero-glass-card-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-glass-card-logo {
    align-self: center;
    width: 90px;
    height: 90px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 64px;
  }
  .site-header.sticky {
    height: 58px;
  }
  .logo-wrapper {
    height: 36px;
    width: 115px;
  }
  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
  }
  .container {
    padding: 0 14px;
  }
  .glass-card {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .breadcrumbs-banner {
    padding: 105px 0 35px;
  }
  .breadcrumbs-banner h1 {
    font-size: 26px;
  }
  .hero-section {
    padding: 100px 0 45px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .footer-marquee span {
    font-size: 18px;
    margin-right: 24px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  .glass-card {
    padding: 16px 12px;
  }
  .hero-content h1 {
    font-size: 23px;
  }
  .logo-wrapper {
    width: 100px;
    height: 32px;
  }
  .nav-menu .nav-link {
    font-size: 17px;
    padding: 8px 12px;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Touch screen micro-feedback */
@media (hover: none) and (pointer: coarse) {
  .glass-card:active {
    transform: scale(0.985);
    border-color: var(--border-hover);
  }
  .btn:active {
    transform: scale(0.97);
  }
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  animation: pulse-whatsapp 2.5s infinite;
  text-decoration: none !important;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  color: #ffffff !important;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(8, 16, 35, 0.94);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
}

