/* CSS Reset & Variables */
:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --secondary: #1f2937;
  --accent: #3b82f6;
  --text: #374151;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --success: #22c55e;
  --font-main: 'Outfit', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-light);
}

.text-white {
  color: #fff !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-accent {
  background-color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #25D366;
  /* WhatsApp Green */
  color: white;
}

.btn-primary:hover {
  background-color: #1faf54;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #111827;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-primary-sm {
  background-color: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
}

.btn-primary-sm:hover {
  background-color: var(--primary-dark);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3f4f6;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
}

.nav-links {
  display: none;
  /* Mobile first hidden */
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .nav-links a:hover {
    color: var(--primary);
  }

  .nav-links .btn-outline {
    margin-left: 0.5rem;
  }
}

/* Hero */
.hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #ecfdf5;
  color: #047857;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: var(--secondary);
}

.highlight-item svg {
  color: var(--primary);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-content strong {
  color: var(--primary);
}

/* Cards & Featues */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f3f4f6;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Tech Stack Specifics */
.tech-card h3 {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.tech-list {
  list-style: none;
  padding: 0;
}

.tech-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.tech-list li .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.grid-2-inner {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .grid-2-inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* Feature Boxes (Consultancy) */
.feature-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.feature-box h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .full-width {
    grid-column: span 2;
    text-align: center;
  }

  .full-width.tech-card {
    text-align: left;
  }
}

/* Meetings */
.meeting-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.meeting-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--secondary);
}

.communication-details {
  max-width: 500px;
  margin: 0 auto;
}

/* Trust Section (Guarantee) */
.trust-section {
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.guarantee-badge {
  color: white;
  /* or gold/yellow */
  margin-bottom: 1rem;
}

.guarantee-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* Marketplace (Fiverr) */
.fiverr-badge {
  display: inline-block;
  background: #1dbf73;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.marketplace-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
}


/* Portfolio & Projects */
.project-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  border-left: 5px solid var(--accent);
}

.project-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.project-card p {
  color: var(--text-light);
}

/* Features List (Why Hire Me) */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: #ecfdf5;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Availability */
.availability-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.avail-item {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 1rem 2rem;
  border-radius: 8px;
}

.avail-item strong {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.avail-item span {
  color: var(--text-light);
}

/* CTA Section */
.cta-buttons-large {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .cta-buttons-large {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: #111827;
  color: #9ca3af;
  font-size: 0.9rem;
}