body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0 1rem;
}

.logo img {
  height: 90px;
  width: 200px;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #fff74f;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.login {
  color: #222;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  transition: background 0.2s;
}

.login:hover {
  background: #f0f0f0;
}

.signup {
  background: #fff74f;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.2s;
}

.signup:hover {
  background: #fff74f;
  color: #111;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #222;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav-links li a:hover {
  color: #fff74f;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-nav-actions .login,
.mobile-nav-actions .signup {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-align: center;
  min-width: 200px;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2.2rem 2.5rem 2.2rem 2.5rem;
  background: url('img/hero.jpg') center center/cover no-repeat;
  border-radius: 2rem;
  margin: 2.5rem auto;
  max-width: 1210px;
  min-height: 480px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 20, 20, 0.55); /* dark overlay for readability */
  border-radius: 2rem;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-content {
  width: 100%;
  max-width: 700px;
  padding: 0;
  position: relative;
  background: none;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  z-index: 1;
  overflow: visible;
}
.hero-content::before {
  display: none;
}
.hero-content > * {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  text-align: left;
}
.search-box {
  background: #222;
  border-radius: 1.5rem;
  padding: 2rem 2rem 1.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.tab {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab.active, .tab:hover {
  background: #fff74f;
  color: #fff;
  border-color: #fff74f;
}
.search-input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1.2rem;
}
.search-input-group input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 2rem 0 0 2rem;
  font-size: 1rem;
  outline: none;
}
.search-btn {
  background: #fff;
  color: #fff74f;
  border: none;
  border-radius: 0 2rem 2rem 0;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.search-btn:hover {
  background: #fff74f;
  color: #fff;
}
.trusted-by {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #bbb;
  justify-content: center;
}
.trusted-by .logo-icon {
  height: 28px;
  filter: grayscale(1) brightness(0.7);
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 420px;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.brands-section {
  max-width: 1250px;
  margin: 2.5rem auto 0 auto;
  padding: 2.5rem 2rem 2.2rem 2rem;
  text-align: center;
}
.brands-bold-headline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2.2rem 0;
  line-height: 1.2;
}
.brands-subheadline {
  font-size: 1.25rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 2.2rem auto;
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
  background: rgba(255,255,255,0.7);
  border-radius: 1rem;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.brands-heading {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b14e6a;
  text-align: center;
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
}
.brands-heading .highlight {
  color: #fff74f;
  font-weight: 900;
  background: linear-gradient(90deg, #e0ffe7 0%, #fffbe7 100%);
  padding: 0 0.3em;
  border-radius: 0.3em;
}
.brands-scroll-wrapper {
  width: 100vw;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.2rem 0;
  margin-bottom: 2rem;
  margin-left: calc(-50vw + 50%);
}
.brands-scroll {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: scroll-brands 30s linear infinite;
}
.brands-scroll img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.3rem 1.2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .hero {
    padding: 2rem 1rem;
    max-width: 98vw;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .search-box {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

.categories-section {
  padding: 1.5rem 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 1rem;
}
.category-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.category-card i {
  font-size: 38px;
  margin-bottom: 0.8rem;
  color: #333;
}
.category-card span {
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

.popular-services-section {
  max-width: 1210px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1rem;
}
.popular-services-heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: #333;
}
.popular-services-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #b6f5d8 #eee;
}
.popular-services-scroll::-webkit-scrollbar {
  height: 8px;
}
.popular-services-scroll::-webkit-scrollbar-thumb {
  background: #b6f5d8;
  border-radius: 4px;
}
.popular-service-card {
  background: #054b1d;
  border-radius: 20px;
  min-width: 220px;
  max-width: 240px;
  flex: 0 0 auto;
  padding: 1.2rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.service-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.service-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.service-img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}
.popular-services-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  color: #222;
  transition: box-shadow 0.2s;
}
.scroll-btn.left {
  left: -20px;
}
.scroll-btn.right {
  right: -20px;
}
.scroll-btn:active {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
@media (max-width: 700px) {
  .scroll-btn.left {
    left: 0;
  }
  .scroll-btn.right {
    right: 0;
  }
}
@media (max-width: 700px) {
  .scroll-btn.left {
    left: 0;
  }
  .scroll-btn.right {
    right: 0;
  }
} 

.ai-skills-section {
  margin: 2.5rem auto 0 auto;
  max-width: 1250px;
  border-radius: 2rem;
  background: linear-gradient(120deg, #00e676 0%, #00c3ff 100%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem 2.2rem 2rem;
  color: #fff;
}
.ai-skills-content {
  width: 100%;
}
.ai-skills-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ai-skills-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.ai-skills-actions {
  display: flex;
  gap: 1rem;
}
.ai-skill-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 0.6rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ai-skill-btn-outline:hover {
  background: #fff;
  color: #00b86b;
}
.ai-skill-btn-filled {
  background: #fff;
  color: #00b86b;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ai-skill-btn-filled:hover {
  background: #e0ffe6;
  color: #009e5c;
}
.ai-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem 1.2rem;
}
.ai-skill-pill {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.ai-skill-pill i {
  font-size: 1.3rem;
  color: #fff;
}
.ai-skill-pill:hover {
  background: rgba(255,255,255,0.32);
  color: #222;
}
@media (max-width: 700px) {
  .ai-skills-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 1.2rem;
  }
  .ai-skills-header h2 {
    font-size: 1.2rem;
  }
  .ai-skills-grid {
    grid-template-columns: 1fr;
  }
} 

.stats-section {
  margin: 2.5rem auto 0 auto;
  max-width: 1200px;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
}
.stats-bg {
  background: repeating-linear-gradient(120deg, #f8fafb 0px, #f8fafb 8px, #f2f7f3 8px, #f2f7f3 16px);
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  background: transparent;
  position: relative;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 2.5rem 2rem 2.5rem;
  min-height: 120px;
  position: relative;
  background: transparent;
}
.stat-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 2.1rem;
  color: #222;
  opacity: 0.7;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 1.1rem;
  color: #222;
  opacity: 0.8;
}
.stats-grid > .stat-item:nth-child(1),
.stats-grid > .stat-item:nth-child(2) {
  border-bottom: 2px solid #b6f5d8;
}
.stats-grid > .stat-item:nth-child(1),
.stats-grid > .stat-item:nth-child(3) {
  border-right: 2px solid #b6f5d8;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .stat-item {
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
  .stat-icon {
    top: 1.2rem;
    right: 1rem;
  }
  .stats-grid > .stat-item:nth-child(1),
  .stats-grid > .stat-item:nth-child(2),
  .stats-grid > .stat-item:nth-child(3) {
    border-right: none;
    border-bottom: 2px solid #b6f5d8;
  }
} 

.plans-section {
  max-width: 1300px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1rem 2.5rem 1rem;
}
.plans-heading {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.2rem;
  color: #222;
}
.plans-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.plan-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.2rem 2rem 2rem 2rem;
  min-width: 320px;
  max-width: 370px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #f2f7f3;
  position: relative;
}
.plan-type {
  font-size: 0.98rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 1.5px;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}
.plan-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.7rem;
}
.plan-desc {
  font-size: 1.08rem;
  color: #666;
  margin-bottom: 1.2rem;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem 0;
}
.plan-features li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 0.7rem;
}
.plan-features i {
  color: #fff74f;
  font-size: 1.3rem;
  margin-right: 0.7rem;
}
.plan-btn {
  margin-top: auto;
  width: 100%;
  background: #fff;
  color: #fff74f;
  border: 2px solid #fff74f;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.plan-btn:hover {
  background: #fff74f;
  color: #fff;
}
.plan-card.popular {
  border: 2.5px solid #fff74f;
  box-shadow: 0 4px 24px rgba(20,168,0,0.08);
}
.plan-badge {
  display: inline-block;
  background: #222;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.18em 0.9em;
  margin-left: 0.7em;
  vertical-align: middle;
}
@media (max-width: 1100px) {
  .plans-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .plan-card {
    min-width: 260px;
    max-width: 500px;
    width: 100%;
  }
} 

.testimonials-section {
  max-width: 1300px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1rem 2.5rem 1rem;
}
.testimonials-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 2.2rem;
}
.testimonials-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 340px;
  max-width: 420px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #f2f7f3;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: linear-gradient(120deg, #b6f5d8 0%, #14a800 100%);
  opacity: 0.18;
  border-radius: 22px 0 0 22px;
}
.testimonial-label {
  font-size: 1.02rem;
  font-weight: 600;
  color: #14a800;
  letter-spacing: 1px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.testimonial-label i {
  font-size: 1.3rem;
  color: #14a800;
}
.testimonial-text {
  font-size: 1.13rem;
  color: #222;
  margin-bottom: 1.2rem;
  z-index: 1;
}
.testimonial-stars {
  margin-bottom: 1.2rem;
  z-index: 1;
}
.testimonial-stars i {
  color: #ff9800;
  font-size: 1.2rem;
  margin-right: 0.1rem;
}
.testimonial-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  z-index: 1;
}
.testimonial-author {
  font-size: 1.01rem;
  color: #222;
  margin-bottom: 0.2rem;
}
.testimonial-project {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 0.2rem;
}
.testimonial-date {
  font-size: 0.95rem;
  color: #bbb;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 1.2rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
@media (max-width: 1100px) {
  .testimonials-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .testimonial-card {
    min-width: 260px;
    max-width: 600px;
    width: 100%;
  }
} 

.footer-section {
  background: #23272a;
  color: #e5e5e5;
  padding: 3.2rem 1.5rem 1.2rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 1rem;
}
.footer-main-row {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer-links {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-col-title {
  color: #b0b0b0;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.footer-col a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-col a:hover, .footer-col a u {
  color: #fff74f;
  text-decoration: underline;
}
.footer-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  min-width: 180px;
}
.footer-social, .footer-apps {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-social span, .footer-apps span {
  color: #b0b0b0;
  font-size: 1rem;
  margin-right: 0.7rem;
}
.footer-social a, .footer-apps a {
  color: #e5e5e5;
  font-size: 1.3rem;
  transition: color 0.18s;
}
.footer-social a:hover, .footer-apps a:hover {
  color: #fff74f;
}
.footer-legal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #b0b0b0;
  font-size: 0.98rem;
  border-top: 1px solid #2c2f33;
  padding-top: 1.1rem;
  margin-top: 0.5rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.2rem;
}
.footer-legal-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-legal-links a:hover {
  color: #fff74f;
  text-decoration: underline;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.footer-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (max-width: 1100px) {
  .footer-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .footer-side {
    align-items: flex-start;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-legal-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
} 

.cta-section {
  max-width: 95vw;
  margin: 2.5rem auto 0 auto;
  background: linear-gradient(120deg, #00e676 0%, #00c3ff 100%);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 2.5rem 1rem;
}
.cta-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-heading {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.2rem;
}
.cta-btn {
  background: #fff;
  color: #222;
  font-size: 1.25rem;
  font-weight: 500;
  border: none;
  border-radius: 14px;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cta-btn:hover {
  background: #fff74f;
  color: #fff;
}
.cta-subheading {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.7rem;
  margin-top: -1.2rem;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .cta-heading {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .cta-subheading {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: -0.7rem;
  }
} 

.brands-partner-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0 0 2.2rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.fortune-highlight {
  color: #ff9100;
  font-weight: 800;
} 

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .hero {
    max-width: 95vw;
    margin: 2rem auto;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .search-box {
    max-width: 550px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
  }
  
  .popular-services-scroll {
    gap: 1.2rem;
  }
  
  .popular-service-card {
    min-width: 200px;
    max-width: 220px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .navbar {
    padding: 0 1.5rem;
  }
  
  .logo img {
    height: 70px;
    width: 160px;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links li a {
    font-size: 0.95rem;
  }
  
  .hero {
    padding: 2rem 1.5rem;
    max-width: 98vw;
    min-height: 400px;
  }
  
  .hero-content h1 {
    font-size: 2.1rem;
    margin-bottom: 1.8rem;
  }
  
  .search-box {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 500px;
  }
  
  .search-tabs {
    gap: 0.8rem;
  }
  
  .tab {
    padding: 0.4rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .search-input-group input {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .search-btn {
    padding: 0 1.5rem;
    font-size: 0.95rem;
  }
  
  .trusted-by {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .trusted-by .logo-icon {
    height: 24px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 0 1.5rem;
  }
  
  .category-card {
    padding: 1.2rem 0.8rem;
  }
  
  .category-card i {
    font-size: 32px;
  }
  
  .category-card span {
    font-size: 0.9rem;
  }
  
  .popular-services-section {
    padding: 0 1.5rem;
  }
  
  .popular-services-heading {
    font-size: 2rem;
  }
  
  .popular-service-card {
    min-width: 180px;
    max-width: 200px;
    padding: 1rem 0.8rem;
  }
  
  .service-title {
    font-size: 1rem;
  }
  
  .ai-skills-section {
    padding: 2rem 1.5rem;
    margin: 2rem auto 0 auto;
  }
  
  .ai-skills-header h2 {
    font-size: 1.8rem;
  }
  
  .ai-skills-actions {
    gap: 0.8rem;
  }
  
  .ai-skill-btn-outline,
  .ai-skill-btn-filled {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  
  .ai-skills-grid {
    gap: 0.8rem;
  }
  
  .ai-skill-pill {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .testimonials-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .cta-heading {
    font-size: 2rem;
  }
  
  .cta-subheading {
    font-size: 1.1rem;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .navbar {
    padding: 0 1rem;
  }
  
  .logo img {
    height: 60px;
    width: 140px;
  }
  
  .hero {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
    min-height: 350px;
    border-radius: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .hero-content p {
    text-align: center;
    font-size: 1rem;
  }
  
  .search-box {
    padding: 1rem 0.8rem 0.8rem 0.8rem;
    max-width: 100%;
  }
  
  .search-tabs {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .tab {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .search-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .search-input-group input {
    border-radius: 2rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  .search-btn {
    border-radius: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
  
  .trusted-by {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  
  .trusted-by .logo-icon {
    height: 20px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0 1rem;
  }
  
  .category-card {
    padding: 1rem 0.5rem;
  }
  
  .category-card i {
    font-size: 28px;
    margin-bottom: 0.5rem;
  }
  
  .category-card span {
    font-size: 0.85rem;
  }
  
  .popular-services-section {
    padding: 0 1rem;
  }
  
  .popular-services-heading {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .popular-services-scroll {
    gap: 1rem;
  }
  
  .popular-service-card {
    min-width: 160px;
    max-width: 180px;
    padding: 0.8rem;
  }
  
  .service-title {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  
  .service-img {
    min-height: 90px;
  }
  
  .service-img img {
    height: 90px;
  }
  
  .ai-skills-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto 0 auto;
    border-radius: 1.5rem;
  }
  
  .ai-skills-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .ai-skills-header h2 {
    font-size: 1.5rem;
  }
  
  .ai-skills-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .ai-skill-btn-outline,
  .ai-skill-btn-filled {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .ai-skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  
  .ai-skill-pill {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .ai-skill-pill i {
    font-size: 0.9rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 1.2rem;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .testimonials-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonial-card {
    padding: 1.2rem;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .testimonial-meta {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .cta-section {
    padding: 1.5rem 1rem;
    min-height: 150px;
  }
  
  .cta-heading {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  .cta-btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  
  .cta-subheading {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: -0.7rem;
  }
  
  .footer-section {
    padding: 2rem 1rem 1rem 1rem;
  }
  
  .footer-main-row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-col {
    min-width: auto;
  }
  
  .footer-side {
    align-items: center;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo img {
    height: 80px;
  }
  
  .footer-legal-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
    gap: 1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .navbar {
    padding: 0 0.8rem;
  }
  
  .logo img {
    height: 50px;
    width: 120px;
  }
  
  .hero {
    padding: 1rem 0.8rem;
    margin: 1rem auto;
    min-height: 300px;
    border-radius: 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  
  .search-box {
    padding: 0.8rem 0.6rem 0.6rem 0.6rem;
  }
  
  .tab {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .search-input-group input {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .search-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0 0.8rem;
  }
  
  .category-card {
    padding: 0.8rem 0.4rem;
  }
  
  .category-card i {
    font-size: 24px;
  }
  
  .category-card span {
    font-size: 0.8rem;
  }
  
  .popular-services-section {
    padding: 0 0.8rem;
  }
  
  .popular-services-heading {
    font-size: 1.4rem;
  }
  
  .popular-service-card {
    min-width: 140px;
    max-width: 160px;
    padding: 0.6rem;
  }
  
  .service-title {
    font-size: 0.8rem;
  }
  
  .service-img {
    min-height: 80px;
  }
  
  .service-img img {
    height: 80px;
  }
  
  .ai-skills-section {
    padding: 1.2rem 0.8rem;
    border-radius: 1rem;
  }
  
  .ai-skills-header h2 {
    font-size: 1.3rem;
  }
  
  .ai-skills-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .ai-skill-pill {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.85rem;
  }
  
  .cta-section {
    padding: 1.2rem 0.8rem;
    min-height: 120px;
  }
  
  .cta-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .cta-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
  
  .cta-subheading {
    font-size: 0.9rem;
  }
  
  .footer-section {
    padding: 1.5rem 0.8rem 1rem 0.8rem;
  }
  
  .footer-logo img {
    height: 60px;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-legal-links a {
    font-size: 0.9rem;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 250px;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .search-tabs {
    flex-direction: row;
    gap: 0.8rem;
  }
  
  .tab {
    width: auto;
  }
  
  .search-input-group {
    flex-direction: row;
  }
  
  .search-input-group input {
    border-radius: 2rem 0 0 2rem;
  }
  
  .search-btn {
    border-radius: 0 2rem 2rem 0;
    width: auto;
  }
  
  .ai-skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .mobile-menu,
  .scroll-btn,
  .cta-section {
    display: none !important;
  }
  
  .hero {
    background: none !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  
  .hero-content h1 {
    color: #000 !important;
  }
  
  .search-box {
    background: #f5f5f5 !important;
    color: #000 !important;
  }
  
  .ai-skills-section {
    background: #f5f5f5 !important;
    color: #000 !important;
  }
  
  .cta-section {
    background: #f5f5f5 !important;
    color: #000 !important;
  }
} 
