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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: white;
}

/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;

  /* New styles for alignment */
  display: flex;
  align-items: center;
  /* This centers the image and text vertically */
  gap: 10px;
  /* Adds some space between the logo image and the text */
}

.nav-logo a img {
  /* New styles for the image */
  max-height: 40px;
  /* Use max-height to control the logo size and prevent the navbar from growing */
  width: auto;
  /* Maintain aspect ratio */
}

.footer-logo {
  max-height: 100px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-card p {
  color: #64748b;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background-color: #f8fafc;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  color: #10b981;
  flex-shrink: 0;
}

.feature-item h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #64748b;
  margin: 0;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: #64748b;
  margin: 0;
}

.testimonial-author strong {
  color: #1e293b;
  display: block;
}

.testimonial-author span {
  color: #64748b;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta .btn-primary:hover {
  background-color: #f1f5f9;
}

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: #64748b;
}

/* Services Detail */
.services-detail {
  padding: 80px 0;
}

.service-detail-card {
  margin-bottom: 4rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail-text {
  padding: 3rem;
}

.service-detail-text h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-detail-text p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-pricing {
  font-size: 1.25rem;
  color: #2563eb;
}

.service-detail-image {
  padding: 2rem;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Process Section */
.process {
  padding: 80px 0;
  background-color: #f8fafc;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-step p {
  color: #64748b;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Skills Section */
.skills {
  padding: 80px 0;
  background-color: #f8fafc;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.skill-category {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background-color: #e2e8f0;
  color: #475569;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Experience Timeline */
.experience {
  padding: 80px 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 75px;
  top: 60px;
  width: 2px;
  height: 60px;
  background-color: #e2e8f0;
}

.timeline-date {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
  height: fit-content;
}

.timeline-content h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #64748b;
  margin: 0;
}

/* Values Section */
.values {
  padding: 80px 0;
  background-color: #f8fafc;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.value-card p {
  color: #64748b;
}

/* Portfolio Filter */
.portfolio-filter {
  padding: 40px 0;
  background-color: #f8fafc;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
}

/* Portfolio Grid */
.portfolio-grid {
  padding: 80px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.project-content p {
  color: #64748b;
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: #e2e8f0;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

/* Project Stats */
.project-stats {
  padding: 80px 0;
  background-color: #f8fafc;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 2rem;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact-method h4 {
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: #64748b;
  margin: 0;
}

.availability {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
}

.availability h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.availability p {
  color: #64748b;
  margin: 0;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

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

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #64748b;
  margin: 0;
}

/* Legal Content */
.legal-content {
  padding: 80px 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.legal-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-document h3 {
  color: #475569;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-document ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
  color: #64748b;
}

.policy-note {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  border-left: 4px solid #2563eb;
}

.policy-note p {
  margin: 0;
  color: #475569;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  color: #94a3b8;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-buttons {
    justify-content: center;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card,
  .testimonial-card,
  .value-card {
    padding: 1.5rem;
  }

  .legal-document {
    padding: 2rem;
  }
}



/* Add these new styles to your existing main.css file */

/* Privacy and App-specific styles */
.privacy-badge {
  background: #E8F5E8;
  color: #2E7D32;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #4CAF50;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-badge {
  background: #FFF3E0;
  color: #F57C00;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #FF8C00;
  display: inline-block;
  margin-bottom: 1rem;
}

.app-download-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #01875f;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.app-download-badge:hover {
  background: #016a4a;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Featured Service Styling */
.featured-service {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff8f0 100%);
  border: 2px solid #FF8C00;
  border-radius: 15px;
  padding: 2rem 0;
  margin: 2rem 0;
}

.service-card.featured {
  border: 2px solid #FF8C00;
  background: linear-gradient(135deg, #fff8f0 0%, #f8f9ff 100%);
  transform: scale(1.02);
}

.service-card.featured .service-icon {
  background: #FF8C00;
  color: white;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: #FF8C00;
  font-weight: 700;
}

.stat span {
  color: #64748b;
  font-size: 0.9rem;
}

/* App Showcase */
.app-showcase {
  background: linear-gradient(135deg, #E8F5E8 0%, #F0F7FF 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #4CAF50;
}

.app-features-mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.mini-feature {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #2E7D32;
}

/* Featured App Section */
.featured-app {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
}

.featured-app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #475569;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.app-screenshot-placeholder {
  background: #f1f5f9;
  border: 2px dashed #94a3b8;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  color: #64748b;
}

/* Service Highlights */
.service-highlights {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #FF8C00;
}

.service-highlights h3 {
  margin-top: 0;
  color: #FF8C00;
}

/* Pricing Tiers */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.pricing-tier {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  text-align: center;
}

.pricing-tier h4 {
  margin: 0 0 1rem 0;
  color: #374151;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FF8C00;
  margin: 1rem 0;
}

.pricing-tier p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Developer Info */
.developer-info {
  background: linear-gradient(135deg, #F3E5F5 0%, #E8F5E8 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #9C27B0;
  margin: 20px 0;
}

.developer-info h3 {
  color: #9C27B0;
  margin-top: 0;
}

/* Service Preview */
.service-preview {
  background: #f1f5f9;
  border: 2px dashed #94a3b8;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: #64748b;
}

/* Hero Image Placeholder */
.hero-image-placeholder {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px dashed #94a3b8;
}

.app-mockup {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-mockup h3 {
  margin: 0 0 1rem 0;
  color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
  }

  .stat {
    flex: 1;
    min-width: 100px;
  }

  .featured-app-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Service Detail Content Reverse */
.service-detail-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail-content.reverse .service-detail-text {
  order: 2;
}

.service-detail-content.reverse .service-detail-image {
  order: 1;
}

@media (max-width: 768px) {

  .service-detail-content.reverse .service-detail-text,
  .service-detail-content.reverse .service-detail-image {
    order: initial;
  }
}

/* Enhanced project features */
.project-features ul {
  list-style: none;
  padding-left: 0;
}

.project-features li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 0.5rem;
}