/* ==========================================================================
   Techgenix Infotech - Ultra High-Tech Style System (Mobile Menu Refinements)
   ========================================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --color-blue: #0052cc;
  --color-blue-dark: #003399;
  --color-cyan: #00a8ff;
  --color-cyan-glow: rgba(0, 168, 255, 0.35);
  --color-gold: #d99217;
  --color-gold-hover: #f5a623;
  --color-gold-light: #fef8ec;
  --color-navy: #061329;
  
  --text-white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --border-glow: rgba(0, 82, 204, 0.25);
  --border-gold: rgba(217, 146, 23, 0.4);
  --border-light: #e2e8f0;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 15px rgba(6, 19, 41, 0.04);
  --shadow-md: 0 12px 35px rgba(0, 82, 204, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 82, 204, 0.16);
  --shadow-glow: 0 0 35px rgba(0, 82, 204, 0.35);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(0, 82, 204, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(217, 146, 23, 0.05) 0%, transparent 45%),
    linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.2;
  font-weight: 700;
}

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

a:hover {
  color: var(--color-gold);
}

ul {
  list-style: none;
}

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

.text-gold { color: var(--color-gold) !important; }
.text-blue { color: var(--color-blue) !important; }
.font-accent { font-family: var(--font-heading); }
.mb-4 { margin-bottom: 1.5rem; }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #003399 0%, #0052cc 30%, #00a8ff 70%, #d99217 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 6s linear infinite;
  display: inline-block;
}

@keyframes shineText {
  to { background-position: 200% center; }
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 1.85rem;
}

.grid-2-col { grid-template-columns: repeat(2, 1fr); }
.grid-3-col { grid-template-columns: repeat(3, 1fr); }
.grid-4-col { grid-template-columns: repeat(4, 1fr); }
.grid-6-col { grid-template-columns: repeat(6, 1fr); }

/* Glassmorphic Tech Card Style */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan), var(--color-gold));
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

/* Section Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.section.bg-light {
  background-color: var(--bg-secondary);
}

.section-header {
  margin-bottom: 3.75rem;
  position: relative;
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-blue);
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(0, 168, 255, 0.04));
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 82, 204, 0.25);
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.75px;
  color: var(--color-navy);
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.68rem 1.45rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn:hover::after {
  left: 130%;
}

.btn-primary {
  background: linear-gradient(135deg, #0052cc 0%, #003399 100%);
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.45);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-secondary {
  background: linear-gradient(135deg, #d99217 0%, #b8780e 100%);
  color: var(--text-white);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(217, 146, 23, 0.25);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #e5a93b 0%, #c48a20 100%);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 146, 23, 0.4);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-navy);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: rgba(0, 82, 204, 0.06);
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   TOP BAR & ROUNDED STICKY FLOATING GLASS HEADER
   ========================================================================== */
.top-bar {
  background: #061329;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  color: #cbd5e1;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-info a {
  color: #cbd5e1;
}

.top-info a:hover {
  color: #38bdf8;
}

.divider {
  color: #475569;
}

.badge-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 168, 255, 0.18);
  color: #38bdf8;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-weight: 600;
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* Rounded Sticky Floating Header Pill System */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  width: calc(100% - 2rem);
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 82, 204, 0.18);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.35rem;
  box-shadow: 0 10px 35px rgba(6, 19, 41, 0.08);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  top: 8px;
  padding: 0.45rem 1.35rem;
  box-shadow: 0 15px 40px rgba(0, 82, 204, 0.14);
  border-color: rgba(0, 82, 204, 0.35);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 2px 8px rgba(0, 82, 204, 0.15));
  transition: all var(--transition-fast);
}

.site-header.scrolled .logo-img {
  height: 52px;
}

/* Nav Menu Items (Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
}

.mobile-drawer-header, .drawer-footer {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.88rem;
  position: relative;
  padding: 0.35rem 0.2rem;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan), var(--color-gold));
  border-radius: 2px;
}

.dropdown-parent {
  position: relative;
}

.nav-arrow {
  font-size: 0.72rem;
  margin-left: 0.15rem;
  transition: transform var(--transition-fast);
}

.dropdown-parent:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 190px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.dropdown-parent:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--color-navy);
  font-size: 0.86rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: rgba(0, 82, 204, 0.08);
  color: var(--color-blue);
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--color-navy);
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 5rem 0 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 168, 255, 0.05));
  border: 1px solid rgba(0, 82, 204, 0.25);
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3.4rem;
  margin-bottom: 1.25rem;
  letter-spacing: -1.25px;
  line-height: 1.12;
  color: var(--color-navy);
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 590px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-navy);
  font-weight: 600;
}

/* 3D Interactive Hero Card Visual */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 82, 204, 0.22);
  border: 4px solid #ffffff;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hero-img-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  padding: 0.9rem 1.35rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.floating-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-badge h4 {
  font-size: 0.95rem;
  color: var(--color-navy);
}

.floating-badge p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-tech-pill {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
  animation: float 5s ease-in-out infinite;
  z-index: 5;
}

.hero-tech-pill.pill-1 { top: -15px; left: 20px; animation-delay: 0s; }
.hero-tech-pill.pill-2 { top: 45%; right: -25px; animation-delay: 2s; }

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 2.5rem 0;
  position: relative;
  margin-top: -2.5rem;
  z-index: 10;
}

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

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.stat-icon {
  font-size: 2rem;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--color-navy);
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-gold);
  display: inline-block;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  font-weight: 600;
}

/* ==========================================================================
   WHY TECHGENIX SECTION
   ========================================================================== */
.feature-card {
  text-align: left;
  background: #ffffff;
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(0, 168, 255, 0.1));
  border: 1px solid rgba(0, 82, 204, 0.25);
  color: var(--color-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.35rem;
  transition: all var(--transition-fast);
}

.feature-icon-wrapper.gold {
  background: linear-gradient(135deg, rgba(217, 146, 23, 0.15), rgba(245, 166, 35, 0.1));
  border-color: var(--border-gold);
  color: var(--color-gold);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 82, 204, 0.25);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   ABOUT COMPANY SECTION
   ========================================================================== */
.about-container {
  padding: 3.5rem;
  background: #ffffff;
}

.about-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  color: var(--color-navy);
  background: var(--bg-secondary);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 168, 255, 0.05));
  color: var(--color-blue);
  border: 1px solid rgba(0, 82, 204, 0.25);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-text h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.highlight-item {
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-navy);
}

.about-graphic-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
}

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

.about-graphic-img:hover img {
  transform: scale(1.03);
}

.board-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.board-avatar.gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
}

.board-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
  color: var(--color-navy);
}

.board-role {
  font-size: 0.88rem;
  color: var(--color-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.mission-card {
  text-align: center;
  padding: 2.75rem;
  background: #ffffff;
}

.mission-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-showcase {
  margin-bottom: 3.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.services-showcase-grid {
  align-items: center;
  background: #ffffff;
}

.showcase-text {
  padding: 3rem;
}

.showcase-text h3 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.showcase-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1.35rem;
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.25);
}

.service-icon.gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
  box-shadow: 0 6px 18px rgba(217, 146, 23, 0.25);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.service-tags span {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 600;
}

.service-btn {
  background: transparent;
  border: none;
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0;
  transition: gap var(--transition-fast);
}

.service-btn:hover {
  gap: 0.85rem;
  color: var(--color-gold);
}

.service-btn.gold {
  color: var(--color-gold);
}

.highlight-card {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, var(--color-gold-light), #ffffff);
}

/* ==========================================================================
   TECHNOLOGIES WE USE SECTION
   ========================================================================== */
.tech-stack-section {
  background: var(--bg-secondary);
}

.stack-category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stack-tab {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.stack-tab:hover {
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.stack-tab.active {
  background: var(--color-blue);
  color: var(--text-white);
  border-color: var(--color-blue);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.35);
}

.tech-icon-grid {
  gap: 1.35rem;
}

.tech-item-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.tech-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-blue);
  box-shadow: var(--shadow-md);
}

.tech-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem auto;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  transition: transform var(--transition-fast);
}

.tech-item-card:hover .tech-icon-box {
  transform: scale(1.15);
}

.tech-item-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--color-navy);
}

.tech-item-card span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Brand Icon Colors */
.tech-icon-box.react { background: rgba(97, 218, 251, 0.15); color: #0088cc; }
.tech-icon-box.angular { background: rgba(221, 0, 49, 0.12); color: #dd0031; }
.tech-icon-box.vue { background: rgba(65, 184, 131, 0.15); color: #41b883; }
.tech-icon-box.js { background: rgba(247, 223, 30, 0.2); color: #d99217; }
.tech-icon-box.html { background: rgba(227, 76, 38, 0.12); color: #e34c26; }
.tech-icon-box.node { background: rgba(104, 160, 99, 0.15); color: #43853d; }
.tech-icon-box.python { background: rgba(55, 118, 171, 0.15); color: #3776ab; }
.tech-icon-box.php { background: rgba(119, 123, 179, 0.15); color: #777bb3; }
.tech-icon-box.java { background: rgba(234, 45, 46, 0.12); color: #ea2d2e; }
.tech-icon-box.dotnet { background: rgba(81, 43, 212, 0.15); color: #512bd4; }
.tech-icon-box.flutter { background: rgba(2, 86, 155, 0.15); color: #02569b; }
.tech-icon-box.reactnative { background: rgba(97, 218, 251, 0.15); color: #0052cc; }
.tech-icon-box.android { background: rgba(61, 220, 132, 0.15); color: #3ddc84; }
.tech-icon-box.swift { background: rgba(240, 81, 51, 0.12); color: #f05133; }
.tech-icon-box.rails { background: rgba(204, 0, 0, 0.12); color: #cc0000; }
.tech-icon-box.erp { background: rgba(217, 146, 23, 0.15); color: #d99217; }
.tech-icon-box.cloud { background: rgba(0, 82, 204, 0.15); color: #0052cc; }

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industry-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: #ffffff;
}

.ind-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem auto;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--text-white);
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.25);
}

.ind-icon.gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  box-shadow: 0 6px 18px rgba(217, 146, 23, 0.25);
}

.industry-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.industry-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   INTERACTIVE DEVELOPER HIRING CALCULATOR WIDGET
   ========================================================================== */
.hire-wrapper {
  padding: 3.75rem 2.75rem;
  background: #ffffff;
}

.hiring-calculator-card {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.calculator-grid {
  align-items: center;
}

.calc-control-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  display: block;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #cbd5e1;
  outline: none;
  accent-color: var(--color-blue);
  cursor: pointer;
}

.calc-val-display {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-blue);
}

.calc-summary-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.calc-total-est {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0.5rem 0;
}

.tech-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.tech-tab {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-tab:hover {
  color: var(--color-navy);
  border-color: var(--color-blue);
}

.tech-tab.active {
  background: var(--color-blue);
  color: var(--text-white);
  border-color: var(--color-blue);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
}

.tech-panel {
  display: none;
  margin-bottom: 2.75rem;
  animation: fadeIn 0.3s ease;
}

.tech-panel.active {
  display: block;
}

.stack-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  position: relative;
}

.stack-box h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-blue);
}

.stack-box p {
  color: var(--text-primary);
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
}

.exp-badge {
  font-size: 0.78rem;
  background: var(--color-gold-light);
  color: var(--color-gold);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  font-weight: 700;
}

.hiring-models-block {
  border-top: 1px solid var(--border-light);
  padding-top: 2.25rem;
  margin-bottom: 2.75rem;
}

.hiring-models-block h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
  color: var(--color-navy);
}

.model-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem 1rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.model-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.model-card i {
  font-size: 1.85rem;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.model-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-navy);
}

.model-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.hire-ctas {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Quote Builder Buttons */
.type-select-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.type-select-btn.active {
  background: var(--color-blue);
  color: var(--text-white);
  border-color: var(--color-blue);
}

/* ==========================================================================
   CASE STUDIES & PORTFOLIO SECTION
   ========================================================================== */
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.case-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-card:hover .case-img-wrap img {
  transform: scale(1.08);
}

.case-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-blue-light);
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 82, 204, 0.25);
  margin-bottom: 1rem;
}

.case-badge.gold {
  background: var(--color-gold-light);
  color: var(--color-gold);
  border-color: var(--border-gold);
}

.case-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.case-short {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.case-details {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}

.detail-row strong {
  color: var(--color-navy);
}

.detail-row.impact {
  color: var(--color-gold);
  font-weight: 700;
  border-top: 1px dashed var(--border-light);
  padding-top: 0.55rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-wrapper {
  padding: 4rem 3rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: #ffffff;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.4s ease;
}

.testimonial-slide.active {
  display: block;
}

.stars {
  color: var(--color-gold);
  font-size: 1.35rem;
  margin-bottom: 1.35rem;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  font-family: var(--font-heading);
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.client-avatar {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.client-avatar.gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
}

.client-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.1rem;
  color: var(--color-navy);
}

.client-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--color-navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--color-blue);
  color: var(--text-white);
  border-color: var(--color-blue);
  box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dots .dot.active {
  background: var(--color-blue);
  width: 26px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  align-items: start;
}

.contact-form-card {
  padding: 3rem;
  background: #ffffff;
}

.form-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.form-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 82, 204, 0.15);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-alert {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-alert.success {
  display: block;
  background: rgba(39, 201, 63, 0.15);
  color: #15803d;
  border: 1px solid rgba(39, 201, 63, 0.3);
}

.contact-info-card {
  padding: 3rem;
  background: #ffffff;
}

.contact-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 2.25rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.75rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.info-icon.gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
}

.info-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
  color: var(--color-navy);
}

.info-item a, .info-item p {
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.info-item a:hover {
  color: var(--color-gold);
}

.map-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.map-badge {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 1rem;
  display: inline-block;
}

.map-graphic {
  padding: 2.25rem 1rem;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  position: relative;
  background: #ffffff;
}

.radar-ping {
  width: 22px;
  height: 22px;
  background: var(--color-gold);
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  box-shadow: 0 0 0 0 rgba(217, 146, 23, 0.7);
  animation: radar 2s infinite;
}

@keyframes radar {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 146, 23, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(217, 146, 23, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 146, 23, 0); }
}

/* ==========================================================================
   MODAL & WHATSAPP WIDGET
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 19, 41, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 650px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-gold);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  z-index: 1500;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--text-white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #061329;
  color: #cbd5e1;
  padding: 4.5rem 0 2rem 0;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-logo {
  height: 76px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(1.05) drop-shadow(0 4px 14px rgba(0, 168, 255, 0.22));
}

.footer-links h4, .footer-socials h4 {
  font-size: 1.15rem;
  margin-bottom: 1.35rem;
  color: #ffffff;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background: var(--color-blue);
  color: var(--text-white);
  border-color: var(--color-blue);
  transform: translateY(-3px);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  color: #64748b;
  font-size: 0.88rem;
}

/* ==========================================================================
   COMPLETE MOBILE RESPONSIVE MEDIA QUERIES (WITHOUT JUSTIFY-CONTENT SPACE-BETWEEN)
   ========================================================================== */

/* Laptop & Tablet Desktop View (951px - 1200px) */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding: 0 1.25rem; }
  .nav-list { gap: 0.75rem; }
  .nav-link { font-size: 0.84rem; }
  .hide-laptop { display: none !important; }
}

/* Medium Tablet & Mobile Drawer View (<= 950px) */
@media (max-width: 950px) {
  .top-bar { display: none !important; }

  .site-header {
    top: 10px;
    width: calc(100% - 1.25rem);
    padding: 0.45rem 1rem;
    z-index: 1000;
  }

  .logo-img {
    height: 48px;
  }

  /* Left-to-Right Slide Drawer without justify-content */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1500;
    box-shadow: 10px 0 50px rgba(6, 19, 41, 0.25);
    overflow-y: auto;
  }
  
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
  }

  .drawer-close-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--color-navy);
    font-size: 1.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .drawer-footer {
    display: block;
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-light);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    display: block;
    width: 100%;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 82, 204, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    margin-top: 0.2rem;
    width: 100%;
    box-shadow: none;
  }

  .dropdown-menu li a {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
  }
  
  .mobile-toggle { 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
  }
}

/* Mobile & Small Tablet View (481px - 768px) */
@media (max-width: 768px) {
  .section { padding: 3.75rem 0; }
  .section-header { margin-bottom: 2.25rem; }
  .section-title { font-size: 2.1rem; }
  .section-desc { font-size: 1rem; }
  
  .grid-2-col, .grid-3-col, .grid-4-col, .grid-6-col { grid-template-columns: 1fr; }
  .hide-mobile, .hide-tablet { display: none !important; }
  
  .hero-section { padding: 2.5rem 0 3.5rem 0; }
  .hero-title { font-size: 2.15rem; line-height: 1.2; }
  .hero-subtitle { font-size: 1.05rem; margin-bottom: 1.75rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  
  .stats-section { margin-top: 0; padding: 2rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card { padding: 1.35rem 0.75rem; }
  .stat-number { font-size: 2.2rem; }
  
  .about-container { padding: 1.5rem 1rem; }
  .about-tabs { flex-direction: column; gap: 0.5rem; }
  .about-highlights { grid-template-columns: 1fr; }
  
  .showcase-text { padding: 1.75rem 1.25rem; }
  .showcase-text h3 { font-size: 1.6rem; }
  
  .tech-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .tech-item-card { padding: 1.25rem 0.75rem; }
  .tech-icon-box { width: 50px; height: 50px; font-size: 1.75rem; }
  
  .hire-wrapper { padding: 1.75rem 1rem; }
  .hiring-calculator-card { padding: 1.5rem 1rem; }
  .calc-summary-box { padding: 1.25rem 0.85rem; }
  .calc-total-est { font-size: 2rem; }
  .tech-stack-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  
  .testimonials-wrapper { padding: 2rem 1.25rem; }
  .testimonial-quote { font-size: 1.1rem; }
  
  .contact-form-card, .contact-info-card { padding: 1.75rem 1.25rem; }
  .form-actions { flex-direction: column; width: 100%; }
  .form-actions .btn { width: 100%; }
  
  .modal-content { padding: 1.5rem 1.1rem; width: 94%; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.75rem; bottom: 1.25rem; right: 1.25rem; }
}

/* Extra Small Phones (< 480px) */
@media (max-width: 480px) {
  .site-header { width: calc(100% - 1rem); padding: 0.45rem 0.75rem; }
  .logo-img { height: 32px; }
  
  .hero-title { font-size: 1.95rem; }
  .hero-tech-pill { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .tech-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .models-grid { grid-template-columns: 1fr; }
  
  .form-title { font-size: 1.6rem; }
}
