/* ==================== THEME SUPPORT - ADDED BY GROK ==================== */

/* Default Dark Theme (Your original design) */
:root {
  --bg: #0a0a0f;
  --bg-card: #13131a;
  --text: #ffffff;
  --text-muted: #a0a0b8;
  --border: rgba(255, 255, 255, 0.08);
  --primary: #00bcd4;
}

/* Light Theme Variables */
body.light {
  --bg: #f8f9fa;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --primary: #2563eb;
}

/* Apply theme to body */
body {
  background: var(--bg);
  color: var(--text);
}

/* ==================== THEME SWITCHER STYLES ==================== */
.theme-switcher {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1000;
}

#themeBtn {
  background: #1f2937;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

body.light #themeBtn {
  background: #e2e8f0;
  color: #1e2937;
  border-color: #cbd5e1;
}

#themeBtn:hover {
  transform: scale(1.1);
}

.theme-menu {
  position: absolute;
  top: 65px;
  right: 0;
  background: #1f2937;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1001;
  display: none;
  flex-direction: column;
  gap: 4px;
}

/* Show menu when .show class is added */
.theme-menu.show {
  display: flex;
}

body.light .theme-menu {
  background: white;
  border-color: #cbd5e1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.theme-menu button {
  background: transparent;
  border: none;
  color: white;
  padding: 12px 16px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
}

body.light .theme-menu button {
  color: #1e2937;
}

.theme-menu button:hover {
  background: rgba(0, 188, 212, 0.2);
}
/* ==================== END THEME SWITCHER ==================== */

/* Important fixes for Light Mode */
body.light .site-header,
body.light .magic-nav,
body.light .footer,
body.light .service-card,
body.light .work-card,
body.light .contact-form {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}

/* ==================== END OF THEME SUPPORT ==================== */

/* ACTIVE STATE - THE GLOW */
.magic-nav .tab.active {
  background: #007bff !important;
  color: #ffffff !important;
  transform: translateY(-20px) !important; /* lifts it up */
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8),
              0 0 40px rgba(0, 123, 255, 0.4),
              0 10px 20px rgba(0, 123, 255, 0.3) !important;
}

.magic-nav .tab.active i {
  transform: scale(1.1) !important;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) !important;
}

/* FIXED SELECTOR - was .tab .tab.active */
.magic-nav .tab.active span {
  color: #ffffff !important; /* was #007bff which is invisible on blue */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9) !important;
  transform: translateY(35px) !important; /* drops text below circle */
}

/* HOVER */
.magic-nav .tab:not(.active):hover {
  color: #007bff !important;
  transform: translateY(-5px) !important;
}

        .magic-nav .tab[data-tab="home"].active ~ .indicator {
            width: 65px;
            left: 20px;
        }
        .magic-nav .tab[data-tab="service"].active ~ .indicator {
            width: 75px;
            left: 93px;
        }
        .magic-nav .tab[data-tab="work"] .active ~ .indicator {
            width: 65px;
            left: 176px;
        }
        .magic-nav .tab[data-tab="contact"].active ~ .indicator {
            width: 75px;
            left: 176px;
        }
        .magic-nav .tab[data-tab="about"].active ~ .indicator {
            width: 70px;
            left: 332px;
        }




        /* ===== BUTTONS ===== */
        .btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
        .btn-primary { background: #2563eb; color: white; }
        .btn-primary:hover { background: #1e40af; transform: translateY(-2px); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
        .btn-outline { background: transparent; color: #2563eb; border: 2px solid #2563eb; }
        .btn-outline:hover { background: #2563eb; color: white; }
        .btn-light { background: white; color: #2563eb; }
        .btn-light:hover { background: #f8fafc; transform: translateY(-2px); }

/* ===== YEMTECH ELITE BUILDER - COMPLETE CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #00bcd4;
  --primary-dark: #0097a7;
  --bg: #0a0a0f;
  --bg-card: #13131a;
  --bg-card-hover: #1a1a23;
  --text: #ffffff;
  --text-muted: #a0a0b8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SITE HEADER WITH LOGO ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 12px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.logo span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
}
.hero-container {
  grid-template-columns: 1.2fr 0.8fr; /* Left gets more space */
  gap: 40px; /* Tighter gap */
   display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.hero-content h1 {
  font-size: 64px; /* Bigger headline fills space */
  text-align: center;
}

.hero-content p {
  text-align: center;

}
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

/* ===== MAGIC TAB BAR ===== */
.magic-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(19, 19, 26, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tab i {
  font-size: 20px;
}

.tab span {
  font-size: 12px;
  font-weight: 500;
}

.tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.tab.active {
  color: var(--text);
  background: var(--primary);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
  transform: translateY(-8px);
}

.tab.active i {
  animation: bounce 0.5s ease;
}

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

/* ===== SHARED STYLES ===== */
section {
  padding: 80px 0;
}

#home, #about, #services, #work, #contact {
  padding-top: 100px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 188, 212, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 188, 212, 0.1);
}

/* ===== HOME HERO ===== */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

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

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.2);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.badge i {
  color: var(--primary);
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-trust > span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.trust-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  opacity: 0.8;
}

/* ===== SERVICES GRID - DARK THEME FIX ===== */
body.dark {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card); /* #13131a - UNCOMMENT THIS */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  color: var(--text);
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  color: #fff;
  margin: 0 0 16px 0;
  font-size: 22px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 15px;
}

.service-features li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
}

.service-price {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-price strong {
  color: var(--primary);
  font-size: 18px;
}

.btn-start {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.btn-start:hover {
  gap: 10px;
}
/* ===== WORK GRID ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  padding-bottom: 17px;
  display: grid;
  z-index: 2;
  
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.work-image {
  position: relative;
  height: 360px;
  overflow: visible;
}

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

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.work-content {
  padding: 24px;
}

.work-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.work-metrics {
  display: flex;
  gap: 24px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
}

.work-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.work-link:hover {
  gap: 12px;
}

.work-cta-section {
  width: 100%;
  margin-top: 80px;
  padding: 60px 20px;
  background: var(--bg-card);
}
  

.work-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.work-cta-text h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
 color: #fff;
}
.work-cta-text p {
  margin: 0;
  color: var(--text-muted);
}
/* Stack on mobile */
@media (max-width: 768px) {
.work-cta-inner {
  flex-direction: column;
  text-align: center;
  gap: 20%;
  }
.work-cta-text p {
  max-width: 100%;
  padding-bottom: 30px;
  }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.contact-info {
  padding: 40px 0;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h4 {
  margin-bottom: 4px;
}

.info-content p,
.info-content a {
  color: var(--text-muted);
  text-decoration: none;
}

.info-content a:hover {
  color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .hero-container
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .work-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-badges,
  .hero-buttons,
  .hero-trust {
    justify-content: center;
    text-align: center;
  }
  
  .trust-logos {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .magic-nav {
    width: calc(100% - 40px);
    justify-content: space-between;
  }
  
  .tab {
    padding: 12px 14px;
  }
  
  .tab span {
    display: none;
  }
  
  .tab.active span {
    display: block;
  }
  
  .logo span {
    display: none;
  }
  
  .logo img {
    height: 32px;
  }
  
  .header-cta .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

   /* ===== SERVICES - ELITE BUILDER STYLE ===== */
#services {
  /* background: #fff; */
  padding: 100px 0 120px;
}

.services-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.services-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #0f172a;
}

.services-hero .lead {
  font-size: 1.25rem;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.service-card {
  background: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #e2e8f0;
}

.service-card.featured {
  background: #fff;
  border: 2px solid #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
}

.service-tag {
  position: absolute;
  top: -12px;
  left: 32px;
  background: #2563eb;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-list li {
  color: #334155;
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.service-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}

.service-link:hover {
  color: #1e40af;
  transform: translateX(4px);
  display: inline-block;
}

/* PROCESS SECTION */
.process-section {
  margin: 100px 0;
  text-align: center;
}

.process-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: left;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.step p {
  color: #64748b;
  line-height: 1.6;
}

/* PAYMENT SECTION */
.payment-section {
  background: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin: 100px 0;
}

.payment-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}

.payment-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #0f172a;
}

.payment-logo {
  font-size: 1.3rem;
}

.payment-note {
  color: #64748b;
  font-size: 15px;
}

/* FINAL CTA */
.services-cta {
  text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 24px;
  padding: 80px 40px;
  color: white;
}

.services-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.services-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.services-cta .btn-primary {
  background: #fff;
  color: #2563eb;
}

.services-cta .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* ===== MOBILE ===== */
@media (max-width: 968px) {
  .services-hero h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .services-hero h1 { font-size: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .services-cta { padding: 60px 24px; }
  .services-cta h2 { font-size: 2rem; }
}
/* ===== SITE HEADER WITH LOGO - FIXED ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 12px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.logo span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Push content down so header doesn't overlap */
#about, #home, #services, #work, #contact {
  padding-top: 100px;
}

/* ===== ABOUT SECTION - FIXED ===== */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.about-image {
  position: sticky;
  top: 120px;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.tech-stack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tech-badge {
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.2);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

/* Mobile fix */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  @media (max-width: 768px) {
  .work-hero h1 { font-size: 2rem; }
  .work-cta { padding: 60px 24px; }
  .work-cta h2 { font-size: 2rem; }
  .work-metrics { flex-direction: column; gap: 16px; }
  
  .about-image {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .logo span {
    display: none;
  }
  
  .logo img {
    height: 10px;
    
  }

}
/* ===== WORK - ELITE BUILDER STYLE ===== */
#work {
  /* background: #fafafa; */
  padding: 100px 0 120px;
}

.work-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.work-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #0f172a;
}

.work-hero .lead {
  font-size: 1.25rem;
  color: #475569;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap:40px;
  margin-bottom: 100px;
}

.work-card {
  flex-direction: column;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border-color: #e2e8f0;
}

.work-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-image img {
  transform: scale(1.08);
}

.work-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.work-content {
  padding: 32px;
}

.work-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.work-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.work-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.work-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  display: inline-block;
}

.work-link:hover {
  color: #1e40af;
  transform: translateX(4px);
}

/* WORK CTA */
.work-cta {
  text-align: center;
  background: #0f172a;
  border-radius: 24px;
  padding: 80px 40px;
  color: white;
}

.work-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.work-cta p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 32px;
}

/* ===== MOBILE ===== */
@media (max-width: 968px) {
  .work-hero h1 { font-size: 2.5rem; }
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .work-hero h1 { font-size: 2rem; }
  .work-cta { padding: 40px 0 20px; }
  .work-cta h2 { font-size: 2rem; }
  .work-metrics { flex-direction: column; gap: 16px; }
}
     /* ===== CONTACT - ELITE BUILDER STYLE ===== */
#contact {
  /* background: #fff; */
  padding: 100px 0 120px;
}

.contact-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.contact-hero .lead {
  font-size: 1.25rem;
  color: #475569;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.info-block {
  margin-bottom: 50px;
}

.info-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-detail a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: #2563eb;
}

.response-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.response-badges .badge {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.response-badges .badge strong {
  color: #2563eb;
  font-weight: 700;
}

/* FORM STYLES */
.contact-form-wrapper {
  background: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 40px;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-header p {
  color: #64748b;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  color: #0f172a;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 10px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 16px;
}

/* ===== MOBILE ===== */
@media (max-width: 968px) {
  .contact-hero h1 { font-size: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .contact-hero h1 { font-size: 2rem; }
  .contact-form-wrapper { padding: 30px 20px; }
}
        /* ===== FOOTER ===== */
        .footer { background: #0f172a; color: white; padding: 40px 0 20px; text-align: center; }
        .footer .social-icons { margin: 20px 0; }
        .footer .social-icons a { color: white; margin: 0 10px; font-size: 1.5rem; }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero-container, .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .magic-nav a { min-width: 60px; font-size: 11px; }
            .magic-nav a i { font-size: 20px; }
        }
       
 }
 /* ==================== SERVICE CARD HOVER FIX ==================== */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary) !important;
}

body.light .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Featured card */
.service-card.featured:hover {
    transform: translateY(-15px) !important;
}