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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
}

/* Header Styles */
header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-icon {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 1.2rem;
}

.logo-text {
  color: #1e40af;
  font-style: italic;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

.nav-links a {
  color: #111827;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Contact Button */
.contact-btn {
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.contact-btn .arrow {
  font-size: 1.2rem;
}

/* Main Content Styles */
main {
  width: 100%;
}

section {
  background-color: #fff;
  padding: 2rem;
  /* margin-bottom: 2rem; */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 1rem;
  color: #333;
}

/* Content Wrapper - Matches Navbar Width */
.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  background-color: #f3f4f6;
  width: 100%;
  padding: 4rem 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}

.hero-images {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* background-color: #fff; */
  /* padding: 0.5rem 1rem; */
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Hero Title */
.hero-title {
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 2rem;
}

.hero-title .highlight {
  color: #2563eb;
}

/* Hero Buttons */
.hero-buttons {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #1f2937;
  color: #fff;
}

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

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

.btn-secondary:hover {
  background-color: #1f2937;
  color: #fff;
}

/* Hero Stats */
.hero-stats {
  /* background-color: #fff; */
  /* padding: 2rem; */
  border-radius: 12px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
}

.stats-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.stats-description {
  font-size: 1.25rem;
  color: #4a4f54;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}

.social-proof-text strong {
  color: #1f2937;
  display: block;
}

/* Hero Images Grid */
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.image-large {
  grid-row: 1 / 3;
}

.image-large img,
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.image-large img {
  height: 700px;
}

.image-item img {
  height: 340px;
}

/* About Hero Section */
.about-hero {
  background-color: #fff;
  width: 100%;
  padding: 5rem 0;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-hero-content {
  max-width: 900px;
  margin-bottom: 3rem;
}

.about-hero-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: #1f2937;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-hero-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.8;
}

.about-hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Active nav link */
.nav-links a.active {
  color: #2563eb;
}

/* About Stats Section */
.about-stats {
  background-color: #f3f4f6;
  width: 100%;
  padding: 5rem 0;
}

.about-stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-stats-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
}

.about-stats-subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.stats-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.stat-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.stat-logo:hover {
  opacity: 1;
}

.stat-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.stat-logo:hover img {
  filter: grayscale(0%);
}

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

.stat-box {
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.stat-number {
  font-size: 5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.5;
  font-weight: 500;
}

/* Mission and Vision Section */
.mission-vision {
  background-color: #fff;
  width: 100%;
  padding: 5rem 0;
}

.mission-vision-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mission-card,
.vision-card {
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mission-card {
  background-color: #1f2937;
  color: #fff;
}

.vision-card {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
}

.mission-icon,
.vision-icon {
  width: fit-content;
  color: #fff;
}

.mission-title,
.vision-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.mission-description,
.vision-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Core Values Section */
.core-values {
  background-color: #f3f4f6;
  width: 100%;
  padding: 5rem 0;
}

.core-values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.core-values-image {
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.core-values-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.core-values-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.core-values-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.core-values-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  border-bottom: 2px solid #e5e7eb;
  padding: 1.75rem 0;
  transition: all 0.3s ease;
}

.value-item:last-child {
  border-bottom: none;
}

.value-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
}

.value-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  min-width: 45px;
}

.value-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.value-toggle {
  background: none;
  border: 2px solid #e5e7eb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.value-toggle svg {
  transition: transform 0.3s ease;
}

.value-toggle:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.value-details {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 1rem 0 0 0;
  padding-left: 60px;
  display: none;
}

.value-item-expanded .value-details {
  display: block;
}

.value-item-expanded .value-toggle svg {
  transform: rotate(180deg);
}

.value-item-expanded .value-toggle {
  border-color: #2563eb;
  color: #2563eb;
}

.value-item-expanded .value-number {
  color: #1f2937;
}

/* About CTA Section */
.about-cta {
  background-color: #fff;
  width: 100%;
  padding: 5rem 0;
}

.about-cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-cta-content {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&h=500&fit=crop");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.about-cta-title,
.about-cta-subtitle,
.about-cta .btn-cta {
  position: relative;
  z-index: 2;
}

.about-cta-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.about-cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.about-cta .btn-cta {
  background-color: #fff;
  color: #1f2937;
  padding: 1rem 2.5rem;
  font-weight: 600;
  display: inline-block;
}

.about-cta .btn-cta:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
}

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  width: 100%;
  padding: 6rem 0;
}

.services-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.services-hero-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.services-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.services-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.hero-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

/* Services Details Section */
.services-details {
  background-color: #fff;
  width: 100%;
  padding: 6rem 0;
}

.services-details-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

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

.service-detail-reverse {
  direction: ltr;
}

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

.service-detail-reverse .service-detail-image {
  order: 2;
}

.service-detail-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-detail-item:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-detail-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.service-detail-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

.btn-service {
  background-color: #1f2937;
  color: #fff;
  width: fit-content;
  margin-top: 0.5rem;
}

.btn-service:hover {
  background-color: #111827;
}

/* Industries Expertise Section */
.industries-expertise {
  background-color: #f3f4f6;
  width: 100%;
  padding: 6rem 0;
}

.industries-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.industries-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.industries-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 4rem;
}

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

.industry-card {
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.industry-icon {
  color: #1f2937;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-icon {
  color: #2563eb;
}

.industry-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

/* Service Detail Page */
.service-page-hero {
  background-color: #fff;
  width: 100%;
  padding: 3rem 0 6rem;
}

.service-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.go-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: gap 0.3s ease;
}

.go-back-link:hover {
  gap: 0.75rem;
}

.go-back-link svg {
  transition: transform 0.3s ease;
}

.go-back-link:hover svg {
  transform: translateX(-3px);
}

.service-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2.5rem;
}

.service-page-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-page-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.service-page-content {
  max-width: 1440px;
  margin: 0 auto;
}

.service-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.service-content-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.service-content-text:last-child {
  margin-bottom: 0;
}

/* What We Deliver Section */
.what-we-deliver {
  background-color: #f9fafb;
  width: 100%;
  padding: 6rem 0;
}

.what-we-deliver-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.deliver-image {
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

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

.deliver-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.deliver-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.deliver-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.deliver-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.deliver-item {
  border-bottom: 2px solid #e5e7eb;
  padding: 1.75rem 0;
  transition: all 0.3s ease;
}

.deliver-item:last-child {
  border-bottom: none;
}

.deliver-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
}

.deliver-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9ca3af;
  min-width: 40px;
}

.deliver-item-expanded .deliver-number {
  color: #1f2937;
}

.deliver-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.deliver-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1f2937;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.deliver-toggle:hover {
  color: #2563eb;
}

.deliver-item-expanded .deliver-toggle svg {
  transform: rotate(180deg);
}

.deliver-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 1rem 0 0 0;
  padding-left: 55px;
  display: none;
}

.deliver-item-expanded .deliver-description {
  display: block;
}

/* Our Core Services Section */
.core-services {
  background-color: #fff;
  width: 100%;
  padding: 6rem 0;
}

.core-services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.core-services-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  text-align: left;
}

.core-services-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
  text-align: left;
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.core-service-card {
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.core-service-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.core-service-icon {
  color: #1f2937;
  transition: color 0.3s ease;
}

.core-service-card:hover .core-service-icon {
  color: #2563eb;
}

.core-service-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
}

.core-service-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Development Process Section */
.development-process {
  background-color: #f9fafb;
  width: 100%;
  padding: 6rem 0;
}

.development-process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  text-align: left;
}

.process-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
  text-align: left;
}

.process-carousel {
  overflow: hidden;
  margin-bottom: 2rem;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  transition: transform 0.5s ease;
}

.process-step {
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 200px;
}

.process-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.05em;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.process-step-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.process-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.process-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.process-dot.active {
  background-color: #2563eb;
  width: 24px;
  border-radius: 5px;
}

/* Case Studies Hero */
.case-studies-hero {
  background-color: #fff;
  width: 100%;
  padding: 4rem 0 3rem;
}

.case-studies-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.case-studies-hero-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.case-studies-hero-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 900px;
}

/* Case Studies Grid Section */
.case-studies-grid-section {
  background-color: #fff;
  width: 100%;
  padding: 3rem 0 6rem;
}

.case-studies-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.case-study-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.case-study-item:hover {
  transform: translateY(-5px);
}

.case-study-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-study-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-item:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-study-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.case-study-tags {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* Case Study Detail Hero */
.case-study-detail-hero {
  background-color: #fff;
  width: 100%;
  padding: 3rem 0 0;
}

.case-study-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.case-study-detail-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #1f2937;
  margin: 2rem 0 1rem;
}

.case-study-detail-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.case-study-detail-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.case-study-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Case Study Overview */
.case-study-overview {
  background-color: #fff;
  width: 100%;
  padding: 4rem 0 6rem;
}

.case-study-overview-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  position: sticky;
  top: 100px;
}

.overview-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.overview-description {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}

.overview-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.overview-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.overview-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.overview-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
}

/* Case Study Challenges */
.case-study-challenges {
  background-color: #f9fafb;
  width: 100%;
  padding: 5rem 0;
}

.case-study-challenges-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.challenges-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 900px;
}

.challenges-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.7;
  margin: 0 auto 3.5rem;
  max-width: 800px;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.challenge-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.challenge-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.challenge-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.challenge-icon svg {
  stroke: #fff;
}

.challenge-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
}

.challenge-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Solutions in Action */
.solutions-in-action {
  background-color: #fff;
  width: 100%;
  padding: 5rem 0;
}

.solutions-in-action-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.solutions-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

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

.solutions-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.solutions-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.solutions-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.solution-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.solution-item:last-child {
  border-bottom: none;
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

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

.solution-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
  min-width: 40px;
}

.solution-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
}

.solution-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.solution-toggle:hover {
  background: #f3f4f6;
}

.solution-toggle svg {
  stroke: #6b7280;
}

.solution-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 1rem 0 0 0;
  padding-left: 56px;
  display: none;
}

.solution-item-expanded .solution-description {
  display: block;
}

.solution-item-expanded .solution-toggle {
  transform: rotate(180deg);
}

/* Key Outcomes */
.key-outcomes {
  background-color: #fff;
  width: 100%;
  padding: 5rem 0;
}

.key-outcomes-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.key-outcomes-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin: 0 0 3.5rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.outcome-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.outcome-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0;
  line-height: 1;
}

.outcome-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.outcome-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Blog Detail Hero */
.blog-detail-hero {
  background-color: #fff;
  width: 100%;
  padding: 3rem 0 0;
}

.blog-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-detail-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #1f2937;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.blog-detail-date {
  font-weight: 500;
}

.blog-detail-author {
  font-weight: 400;
}

.blog-detail-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Blog Content Section */
.blog-content-section {
  background-color: #fff;
  width: 100%;
  padding: 4rem 0;
}

.blog-content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-intro {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.content-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 2rem 0 1rem;
}

.content-paragraph {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

.content-list-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke: #2563eb;
}

.content-list-item span {
  flex: 1;
}

.content-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.content-section-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.section-item-description {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

.blog-conclusion {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
  border-left: 4px solid #2563eb;
}

.conclusion-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem;
}

.conclusion-text {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

/* Blog Hero */
.blog-hero {
  background-color: #fff;
  width: 100%;
  padding: 4rem 0 3rem;
}

.blog-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-hero-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.blog-hero-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-search {
  position: relative;
  max-width: 500px;
}

.blog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.3s ease;
}

.blog-search-input:focus {
  outline: none;
  border-color: #2563eb;
}

.blog-search-input::placeholder {
  color: #9ca3af;
}

/* Blog Grid Section */
.blog-grid-section {
  background-color: #fff;
  width: 100%;
  padding: 3rem 0 6rem;
}

.blog-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

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

.blog-card-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.blog-load-more {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.btn-load-more svg {
  transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
  transform: translateY(3px);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #dbeafe 0%, #e1e9f4 0%, #ffffff 100%);
  width: 100%;
  padding: 6rem 0;
  position: relative;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
}

.contact-description {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-detail-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.contact-detail-value {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2937;
}

.required {
  color: #ef4444;
}

.form-input,
.form-textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  color: #1f2937;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

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

.form-captcha {
  margin: 0.5rem 0;
}

.captcha-placeholder {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background-color: #f9fafb;
}

.captcha-placeholder input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.captcha-placeholder label {
  font-size: 0.95rem;
  color: #1f2937;
  cursor: pointer;
  flex: 1;
}

.recaptcha-badge {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #1f2937;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Trusted Companies */
.contact-trusted-container {
  max-width: 1400px;
  margin: 5rem auto 0;
  padding: 0 2rem;
  text-align: center;
}

.contact-trusted-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 3rem;
}

.contact-companies-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  align-items: center;
}

.contact-company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.contact-company-logo:hover {
  opacity: 1;
}

.contact-company-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.contact-company-logo:hover img {
  filter: grayscale(0%);
}

/* Trusted Companies Section */
.trusted-companies {
  background-color: #f3f4f6;
  width: 100%;
  padding: 5rem 0;
}

.trusted-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.trusted-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.trusted-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

/* Companies Carousel */
.companies-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 3rem 0;
}

.companies-track {
  display: flex;
  gap: 4rem;
  animation: scroll-companies 30s linear infinite;
  width: max-content;
}

.companies-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-companies {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.company-logo:hover {
  opacity: 1;
}

.company-logo img {
  max-width: 150px;
  max-height: 60px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.company-logo:hover img {
  filter: grayscale(0%);
}

/* Solutions We Deliver Section */
.solutions-section {
  margin-top: 5rem;
}

.solutions-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  text-align: left;
}

.solutions-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
  text-align: left;
}

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

.service-card {
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.service-card.active {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-color: #2563eb;
}

.service-icon {
  color: #1f2937;
  margin-bottom: 2rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
  line-height: 1.4;
}

.service-card.active .service-title {
  color: #2563eb;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.service-card .service-link {
  display: none;
}

.service-card.active .service-link {
  display: inline-flex;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card.active .service-link:hover {
  gap: 0.75rem;
}

.service-card.active .service-icon {
  display: none;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #fff;
  width: 100%;
  padding: 6rem 0;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Left Side - Badge and Team */
.why-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000;
  width: fit-content;
  border: 1px solid #000000;
}

.team-avatars {
  display: flex;
  align-items: center;
}

.team-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-avatars img:first-child {
  margin-left: 0;
}

.team-count {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1f2937;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-left: -15px;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-text {
  font-size: 0.75rem;
  color: #111827;
  line-height: 1.6;
}

/* Right Side - Content */
.why-right {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

.why-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  line-height: 1;
}

.why-description {
  font-size: 1.125rem;
  color: #4a4f54;
  line-height: 1;
}

/* Stats Cards */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.stat-text {
  font-size: 1.125rem;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-size: 1.325rem;
  font-weight: 700;
  color: #111827;
}

.rating-total {
  font-size: 1.325rem;
  color: #111827;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

/* Image Card */
.stat-card-image {
  padding: 0;
  overflow: hidden;
}

.stat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blue Card */
.stat-card-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border: none;
  align-items: center;
  text-align: center;
}

.stat-year {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.stat-number-large {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.stat-text-white {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Case Studies Section */
.case-studies {
  background-color: #f3f4f6;
  width: 100%;
  padding: 6rem 0;
}

.case-studies-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.case-studies-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.case-studies-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 4rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 400px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

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

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 2.5rem 2rem 2rem;
  color: #fff;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.portfolio-tags {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.case-studies-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  background-color: #fff;
  width: 100%;
  padding: 6rem 0;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 4rem;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 0 60px;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 1rem);
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.carousel-btn:hover svg {
  stroke: #fff;
}

.carousel-btn svg {
  transition: stroke 0.3s ease;
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.company-logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #4a4f54;
  line-height: 1.2;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 1.125rem;
  color: #111827;
  font-weight: 500;
}

.author-info span {
  font-weight: 500;
  font-size: 0.875rem;
  color: #111827;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #2563eb;
  width: 24px;
  border-radius: 5px;
}

/* CTA Section */
.cta-section {
  background-color: #f3f4f6;
  width: 100%;
  padding: 6rem 0;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=400&fit=crop");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.cta-title,
.cta-subtitle,
.btn-cta {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: #fff;
  color: #1f2937;
  padding: 1rem 2.5rem;
  font-weight: 600;
  display: inline-block;
}

.btn-cta:hover {
  background-color: #f3f4f6;
  /* transform: scale(1.01); */
}

/* Footer Styles */
.footer {
  background-color: #1a1d2e;
  color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 1.2rem;
}

.footer-logo .logo-text {
  color: #fff;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #2563eb;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

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

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.footer-menu,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-menu a,
.footer-contact a {
  color: #f8fafc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: #2563eb;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #2563eb;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #f8fafc;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: #f8fafc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Container */
.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 1rem 1.5rem;
  }

  .navbar {
    max-width: 100%;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .content-wrapper {
    padding: 0 1.5rem;
  }

  section {
    padding: 1.5rem;
  }

  /* Hero Responsive */
  .hero {
    padding: 3rem 0;
  }

  .hero-container,
  .hero-images {
    padding: 0 1.5rem;
    gap: 2rem;
  }

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

  .hero-images {
    gap: 1rem;
  }

  .image-large img {
    height: 500px;
  }

  .image-item img {
    height: 240px;
  }

  /* About Hero Responsive */
  .about-hero {
    padding: 4rem 0;
  }

  .about-hero-container {
    padding: 0 1.5rem;
  }

  .about-hero-content {
    margin-bottom: 2.5rem;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.15rem;
  }

  .about-hero-image img {
    height: 450px;
  }

  /* About Stats Responsive */
  .about-stats {
    padding: 4rem 0;
  }

  .about-stats-container {
    padding: 0 1.5rem;
  }

  .about-stats-title {
    font-size: 1.8rem;
  }

  .stats-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }

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

  .stat-box {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  /* Mission and Vision Responsive */
  .mission-vision {
    padding: 4rem 0;
  }

  .mission-vision-container {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .mission-card,
  .vision-card {
    padding: 2.5rem 2rem;
  }

  .mission-title,
  .vision-title {
    font-size: 1.5rem;
  }

  /* Core Values Responsive */
  .core-values {
    padding: 4rem 0;
  }

  .core-values-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .core-values-image {
    top: 90px;
  }

  .core-values-image img {
    height: 500px;
  }

  .core-values-title {
    font-size: 2rem;
  }

  .value-name {
    font-size: 1.15rem;
  }

  /* About CTA Responsive */
  .about-cta {
    padding: 4rem 0;
  }

  .about-cta-container {
    padding: 0 1.5rem;
  }

  .about-cta-content {
    padding: 4rem 2.5rem;
  }

  .about-cta-title {
    font-size: 2rem;
  }

  .about-cta-subtitle {
    font-size: 1rem;
  }

  /* Services Hero Responsive */
  .services-hero {
    padding: 5rem 0;
  }

  .services-hero-container {
    padding: 0 1.5rem;
  }

  .services-hero-title {
    font-size: 3rem;
  }

  .services-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
  }

  .services-hero-stats {
    gap: 2.5rem;
  }

  .hero-stat-number {
    font-size: 3rem;
  }

  /* Services Details Responsive */
  .services-details {
    padding: 5rem 0;
  }

  .services-details-container {
    padding: 0 1.5rem;
    gap: 5rem;
  }

  .service-detail-item {
    gap: 3rem;
  }

  .service-detail-image img {
    height: 350px;
  }

  .service-detail-title {
    font-size: 1.75rem;
  }

  .service-detail-description {
    font-size: 0.95rem;
  }

  /* Industries Expertise Responsive */
  .industries-expertise {
    padding: 5rem 0;
  }

  .industries-container {
    padding: 0 1.5rem;
  }

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

  .industries-subtitle {
    margin-bottom: 3rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .industry-card {
    padding: 2rem 1.5rem;
  }

  .industry-name {
    font-size: 1rem;
  }

  /* Service Detail Page Responsive */
  .service-page-hero {
    padding: 2.5rem 0 5rem;
  }

  .service-page-container {
    padding: 0 1.5rem;
  }

  .service-page-title {
    font-size: 2.5rem;
  }

  .service-page-image img {
    height: 400px;
  }

  .service-content-title {
    font-size: 1.75rem;
  }

  .service-content-text {
    font-size: 1rem;
  }

  /* What We Deliver Responsive */
  .what-we-deliver {
    padding: 5rem 0;
  }

  .what-we-deliver-container {
    padding: 0 1.5rem;
    gap: 4rem;
  }

  .deliver-image {
    top: 90px;
  }

  .deliver-image img {
    height: 500px;
  }

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

  .deliver-name {
    font-size: 1.15rem;
  }

  /* Core Services Responsive */
  .core-services {
    padding: 5rem 0;
  }

  .core-services-container {
    padding: 0 1.5rem;
  }

  .core-services-title {
    font-size: 2rem;
  }

  .core-services-subtitle {
    margin-bottom: 2.5rem;
  }

  .core-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .core-service-card {
    padding: 2rem 1.75rem;
  }

  .core-service-name {
    font-size: 1.1rem;
  }

  /* Development Process Responsive */
  .development-process {
    padding: 5rem 0;
  }

  .development-process-container {
    padding: 0 1.5rem;
  }

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

  .process-subtitle {
    margin-bottom: 2.5rem;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-step {
    padding: 2rem 1.75rem;
  }

  .process-step-title {
    font-size: 1.15rem;
  }

  /* Case Studies Responsive */
  .case-studies-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .case-studies-hero-container {
    padding: 0 1.5rem;
  }

  .case-studies-hero-title {
    font-size: 2.5rem;
  }

  .case-studies-hero-subtitle {
    font-size: 1rem;
  }

  .case-studies-grid-section {
    padding: 2.5rem 0 5rem;
  }

  .case-studies-grid-container {
    padding: 0 1.5rem;
    gap: 1.75rem;
  }

  .case-study-image img {
    height: 300px;
  }

  .case-study-title {
    font-size: 1.25rem;
  }

  /* Case Study Detail Responsive */
  .case-study-detail-hero {
    padding: 2.5rem 0 0;
  }

  .case-study-detail-container {
    padding: 0 1.5rem;
  }

  .case-study-detail-title {
    font-size: 2.25rem;
  }

  .case-study-detail-image img {
    height: 400px;
  }

  .case-study-overview {
    padding: 3.5rem 0 5rem;
  }

  .case-study-overview-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .overview-section-title {
    font-size: 1.5rem;
  }

  .overview-details {
    gap: 1.5rem;
  }

  /* Case Study Challenges Responsive */
  .case-study-challenges {
    padding: 4rem 0;
  }

  .case-study-challenges-container {
    padding: 0 1.5rem;
  }

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

  .challenges-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .challenge-card {
    padding: 2rem 1.75rem;
  }

  .challenge-icon {
    width: 52px;
    height: 52px;
  }

  .challenge-icon svg {
    width: 36px;
    height: 36px;
  }

  .challenge-name {
    font-size: 1.15rem;
  }

  /* Solutions in Action Responsive */
  .solutions-in-action {
    padding: 4rem 0;
  }

  .solutions-in-action-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .solutions-image {
    top: 90px;
  }

  .solutions-image img {
    height: 500px;
  }

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

  .solutions-subtitle {
    font-size: 1rem;
  }

  .solution-item {
    padding: 1.75rem 0;
  }

  .solution-number {
    font-size: 1.15rem;
    min-width: 36px;
  }

  .solution-name {
    font-size: 1.05rem;
  }

  .solution-toggle {
    width: 36px;
    height: 36px;
  }

  .solution-description {
    padding-left: 52px;
  }

  /* Key Outcomes Responsive */
  .key-outcomes {
    padding: 4rem 0;
  }

  .key-outcomes-container {
    padding: 0 1.5rem;
  }

  .key-outcomes-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .outcomes-grid {
    gap: 2.5rem;
  }

  .outcome-number {
    font-size: 3rem;
  }

  .outcome-label {
    font-size: 1.05rem;
  }

  /* Blog Detail Responsive */
  .blog-detail-hero {
    padding: 2.5rem 0 0;
  }

  .blog-detail-container {
    padding: 0 1.5rem;
  }

  .blog-detail-title {
    font-size: 2.25rem;
  }

  .blog-detail-meta {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .blog-detail-image img {
    height: 400px;
  }

  /* Blog Content Responsive */
  .blog-content-section {
    padding: 3.5rem 0;
  }

  .blog-content-container {
    padding: 0 1.5rem;
  }

  .blog-intro {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .content-heading {
    font-size: 1.6rem;
  }

  .section-item-title {
    font-size: 1.15rem;
  }

  .blog-conclusion {
    padding: 2rem;
  }

  .conclusion-title {
    font-size: 1.35rem;
  }

  /* Blog Responsive */
  .blog-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .blog-hero-container {
    padding: 0 1.5rem;
  }

  .blog-hero-title {
    font-size: 2.5rem;
  }

  .blog-hero-subtitle {
    font-size: 1rem;
  }

  .blog-grid-section {
    padding: 2.5rem 0 5rem;
  }

  .blog-grid-container {
    padding: 0 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .blog-card-image img {
    height: 220px;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  /* Contact Responsive */
  .contact-section {
    padding: 5rem 0;
  }

  .contact-container {
    padding: 0 1.5rem;
    gap: 4rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 2.5rem 2rem;
  }

  .contact-trusted-container {
    margin-top: 4rem;
    padding: 0 1.5rem;
  }

  .contact-trusted-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .contact-companies-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  /* Trusted Companies Responsive */
  .trusted-companies {
    padding: 4rem 0;
  }

  .trusted-container {
    padding: 0 1.5rem;
  }

  .trusted-title {
    font-size: 1.8rem;
  }

  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* Solutions Responsive */
  .solutions-section {
    margin-top: 4rem;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }

  /* Why Choose Us Responsive */
  .why-choose-us {
    padding: 4rem 0;
  }

  .why-container {
    padding: 0 1.5rem;
  }

  .why-content {
    gap: 3rem;
    margin-bottom: 3rem;
  }

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

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-card {
    min-height: 250px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-number-large {
    font-size: 4rem;
  }

  /* Case Studies Responsive */
  .case-studies {
    padding: 4rem 0;
  }

  .case-studies-container {
    padding: 0 1.5rem;
  }

  .case-studies-title {
    font-size: 2rem;
  }

  .case-studies-subtitle {
    margin-bottom: 3rem;
  }

  .portfolio-grid {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .portfolio-item {
    height: 350px;
  }

  .portfolio-title {
    font-size: 1.3rem;
  }

  /* Testimonials Responsive */
  .testimonials {
    padding: 4rem 0;
  }

  .testimonials-container {
    padding: 0 1.5rem;
  }

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

  .testimonials-subtitle {
    margin-bottom: 3rem;
  }

  .testimonials-carousel {
    padding: 0 50px;
  }

  .testimonial-card {
    min-width: calc(50% - 0.75rem);
    padding: 2rem 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn-prev {
    left: 0;
  }

  .carousel-btn-next {
    right: 0;
  }

  /* CTA Responsive */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-container {
    padding: 0 1.5rem;
  }

  .cta-content {
    padding: 4rem 2.5rem;
  }

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

  .cta-subtitle {
    font-size: 1rem;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .navbar {
    position: relative;
  }

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

  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    gap: 2rem;
    overflow-y: auto;
  }

  .nav-container.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }

  .content-wrapper {
    padding: 0 1rem;
  }

  section {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  footer {
    padding: 1.5rem 0;
    margin-top: 2rem;
  }

  footer p {
    padding: 0 1rem;
  }

  /* Hero Mobile Responsive */
  .hero {
    padding: 2rem 0;
  }

  .hero-container,
  .hero-images {
    padding: 0 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-title br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    padding: 1.5rem;
  }

  .stats-title {
    font-size: 1.3rem;
  }

  /* Hero Images Mobile */
  .hero-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .image-large {
    grid-row: auto;
  }

  .image-large img {
    height: 300px;
  }

  .image-item img {
    height: 200px;
  }

  /* About Hero Mobile */
  .about-hero {
    padding: 3rem 0;
  }

  .about-hero-container {
    padding: 0 1rem;
  }

  .about-hero-content {
    margin-bottom: 2rem;
  }

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

  .about-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .about-hero-description {
    font-size: 0.95rem;
  }

  .about-hero-image img {
    height: 300px;
  }

  /* About Stats Mobile */
  .about-stats {
    padding: 3rem 0;
  }

  .about-stats-container {
    padding: 0 1rem;
  }

  .about-stats-title {
    font-size: 1.5rem;
  }

  .about-stats-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .stats-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .stats-numbers {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-box {
    padding: 1.75rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  /* Mission and Vision Mobile */
  .mission-vision {
    padding: 3rem 0;
  }

  .mission-vision-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem 1.75rem;
  }

  .mission-title,
  .vision-title {
    font-size: 1.4rem;
  }

  .mission-description,
  .vision-description {
    font-size: 0.95rem;
  }

  /* Core Values Mobile */
  .core-values {
    padding: 3rem 0;
  }

  .core-values-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .core-values-image {
    position: static;
    order: 2;
  }

  .core-values-image img {
    height: 350px;
  }

  .core-values-content {
    order: 1;
  }

  .core-values-title {
    font-size: 1.75rem;
  }

  .value-item {
    padding: 1.5rem 0;
  }

  .value-number {
    font-size: 1.3rem;
    min-width: 40px;
  }

  .value-name {
    font-size: 1.1rem;
  }

  .value-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .value-details {
    padding-left: 55px;
  }

  /* About CTA Mobile */
  .about-cta {
    padding: 3rem 0;
  }

  .about-cta-container {
    padding: 0 1rem;
  }

  .about-cta-content {
    padding: 3rem 2rem;
    border-radius: 16px;
  }

  .about-cta-title {
    font-size: 1.75rem;
  }

  .about-cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .about-cta .btn-cta {
    padding: 0.9rem 2rem;
  }

  /* Services Hero Mobile */
  .services-hero {
    padding: 4rem 0;
  }

  .services-hero-container {
    padding: 0 1rem;
  }

  .services-hero-title {
    font-size: 2.25rem;
  }

  .services-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .services-hero-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 300px;
  }

  .hero-stat-number {
    font-size: 2.75rem;
  }

  .hero-stat-label {
    font-size: 0.95rem;
  }

  /* Services Details Mobile */
  .services-details {
    padding: 4rem 0;
  }

  .services-details-container {
    padding: 0 1rem;
    gap: 4rem;
  }

  .service-detail-item,
  .service-detail-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .service-detail-reverse .service-detail-image {
    order: 2;
  }

  .service-detail-image img {
    height: 300px;
  }

  .service-detail-title {
    font-size: 1.5rem;
  }

  .service-detail-description {
    font-size: 0.95rem;
  }

  .btn-service {
    width: 100%;
    text-align: center;
  }

  /* Industries Expertise Mobile */
  .industries-expertise {
    padding: 4rem 0;
  }

  .industries-container {
    padding: 0 1rem;
  }

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

  .industries-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .industry-card {
    padding: 2rem 1.5rem;
  }

  .industry-icon svg {
    width: 42px;
    height: 42px;
  }

  .industry-name {
    font-size: 1rem;
  }

  /* Service Detail Page Mobile */
  .service-page-hero {
    padding: 2rem 0 4rem;
  }

  .service-page-container {
    padding: 0 1rem;
  }

  .go-back-link {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .service-page-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-page-image {
    margin-bottom: 2.5rem;
  }

  .service-page-image img {
    height: 300px;
  }

  .service-content-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-content-text {
    font-size: 0.95rem;
  }

  /* What We Deliver Mobile */
  .what-we-deliver {
    padding: 4rem 0;
  }

  .what-we-deliver-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .deliver-image {
    position: static;
    order: 2;
  }

  .deliver-image img {
    height: 350px;
  }

  .deliver-content {
    order: 1;
  }

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

  .deliver-subtitle {
    font-size: 0.95rem;
  }

  .deliver-item {
    padding: 1.5rem 0;
  }

  .deliver-number {
    font-size: 1.15rem;
    min-width: 35px;
  }

  .deliver-name {
    font-size: 1.1rem;
  }

  .deliver-toggle {
    width: 36px;
    height: 36px;
  }

  .deliver-description {
    padding-left: 50px;
  }

  /* Core Services Mobile */
  .core-services {
    padding: 4rem 0;
  }

  .core-services-container {
    padding: 0 1rem;
  }

  .core-services-title {
    font-size: 1.75rem;
  }

  .core-services-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .core-services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .core-service-card {
    padding: 2rem 1.5rem;
  }

  .core-service-icon svg {
    width: 36px;
    height: 36px;
  }

  .core-service-name {
    font-size: 1.05rem;
  }

  .core-service-description {
    font-size: 0.95rem;
  }

  /* Development Process Mobile */
  .development-process {
    padding: 4rem 0;
  }

  .development-process-container {
    padding: 0 1rem;
  }

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

  .process-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-step {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .process-number {
    font-size: 0.85rem;
  }

  .process-step-title {
    font-size: 1.1rem;
  }

  .process-step-description {
    font-size: 0.95rem;
  }

  .process-dots {
    display: none;
  }

  /* Case Studies Mobile */
  .case-studies-hero {
    padding: 3rem 0 2rem;
  }

  .case-studies-hero-container {
    padding: 0 1rem;
  }

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

  .case-studies-hero-subtitle {
    font-size: 0.95rem;
  }

  .case-studies-grid-section {
    padding: 2rem 0 4rem;
  }

  .case-studies-grid-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-study-image img {
    height: 300px;
  }

  .case-study-title {
    font-size: 1.2rem;
  }

  .case-study-tags {
    font-size: 0.85rem;
  }

  /* Case Study Detail Mobile */
  .case-study-detail-hero {
    padding: 2rem 0 0;
  }

  .case-study-detail-container {
    padding: 0 1rem;
  }

  .case-study-detail-title {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
  }

  .case-study-detail-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .case-study-detail-image img {
    height: 300px;
    border-radius: 12px;
  }

  .case-study-overview {
    padding: 3rem 0 4rem;
  }

  .case-study-overview-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-section-title {
    font-size: 1.5rem;
    position: static;
  }

  .overview-description {
    font-size: 0.95rem;
  }

  .overview-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .overview-label {
    font-size: 0.85rem;
  }

  .overview-value {
    font-size: 1.05rem;
  }

  /* Case Study Challenges Mobile */
  .case-study-challenges {
    padding: 3rem 0;
  }

  .case-study-challenges-container {
    padding: 0 1rem;
  }

  .challenges-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .challenges-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .challenge-card {
    padding: 2rem 1.5rem;
  }

  .challenge-icon {
    width: 48px;
    height: 48px;
  }

  .challenge-icon svg {
    width: 32px;
    height: 32px;
  }

  .challenge-name {
    font-size: 1.1rem;
  }

  .challenge-description {
    font-size: 0.95rem;
  }

  /* Solutions in Action Mobile */
  .solutions-in-action {
    padding: 3rem 0;
  }

  .solutions-in-action-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .solutions-image {
    position: static;
    order: 1;
  }

  .solutions-image img {
    height: 350px;
  }

  .solutions-content {
    order: 2;
    gap: 1.5rem;
  }

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

  .solutions-subtitle {
    font-size: 0.95rem;
  }

  .solution-item {
    padding: 1.5rem 0;
  }

  .solution-number {
    font-size: 1.1rem;
    min-width: 32px;
  }

  .solution-name {
    font-size: 1rem;
  }

  .solution-toggle {
    width: 32px;
    height: 32px;
  }

  .solution-description {
    padding-left: 48px;
    font-size: 0.95rem;
  }

  /* Key Outcomes Mobile */
  .key-outcomes {
    padding: 3rem 0;
  }

  .key-outcomes-container {
    padding: 0 1rem;
  }

  .key-outcomes-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .outcome-number {
    font-size: 3rem;
  }

  .outcome-label {
    font-size: 1.05rem;
  }

  .outcome-description {
    font-size: 0.95rem;
  }

  /* Blog Detail Mobile */
  .blog-detail-hero {
    padding: 2rem 0 0;
  }

  .blog-detail-container {
    padding: 0 1rem;
  }

  .blog-detail-title {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
  }

  .blog-detail-meta {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .blog-detail-image img {
    height: 300px;
    border-radius: 12px;
  }

  /* Blog Content Mobile */
  .blog-content-section {
    padding: 3rem 0;
  }

  .blog-content-container {
    padding: 0 1rem;
  }

  .blog-content {
    gap: 1.5rem;
  }

  .blog-intro {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .content-heading {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
  }

  .content-paragraph {
    font-size: 0.95rem;
  }

  .content-list {
    gap: 0.75rem;
    margin: 1rem 0;
  }

  .content-list-item {
    font-size: 0.95rem;
  }

  .content-sections {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .section-item-title {
    font-size: 1.1rem;
  }

  .section-item-description {
    font-size: 0.95rem;
  }

  .blog-conclusion {
    padding: 1.75rem;
    margin-top: 2rem;
  }

  .conclusion-title {
    font-size: 1.25rem;
  }

  .conclusion-text {
    font-size: 0.95rem;
  }

  /* Blog Mobile */
  .blog-hero {
    padding: 3rem 0 2rem;
  }

  .blog-hero-container {
    padding: 0 1rem;
  }

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

  .blog-hero-subtitle {
    font-size: 0.95rem;
  }

  .blog-search {
    max-width: 100%;
  }

  .blog-search-input {
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-size: 0.95rem;
  }

  .blog-grid-section {
    padding: 2rem 0 4rem;
  }

  .blog-grid-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .blog-card {
    gap: 1rem;
  }

  .blog-card-image img {
    height: 220px;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .blog-card-meta {
    font-size: 0.8rem;
  }

  .blog-load-more {
    padding: 0 1rem;
  }

  .btn-load-more {
    width: 100%;
    justify-content: center;
  }

  /* Contact Mobile */
  .contact-section {
    padding: 4rem 0;
  }

  .contact-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .contact-description {
    font-size: 0.95rem;
  }

  .contact-details {
    gap: 1.75rem;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .btn-submit {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .contact-trusted-container {
    margin-top: 3rem;
    padding: 0 1rem;
  }

  .contact-trusted-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-companies-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Trusted Companies Mobile */
  .trusted-companies {
    padding: 3rem 0;
  }

  .trusted-container {
    padding: 0 1rem;
  }

  .trusted-title {
    font-size: 1.5rem;
  }

  .trusted-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Solutions Mobile */
  .solutions-section {
    margin-top: 3rem;
  }

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

  .solutions-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
    min-height: 180px;
  }

  .service-card.active .service-title {
    font-size: 1.3rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  /* Why Choose Us Mobile */
  .why-choose-us {
    padding: 3rem 0;
  }

  .why-container {
    padding: 0 1rem;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

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

  .why-description {
    font-size: 0.95rem;
  }

  .team-avatars img,
  .team-count {
    width: 45px;
    height: 45px;
  }

  .stats-cards {
    gap: 1rem;
  }

  .stat-card {
    padding: 2.5rem 2rem;
    min-height: 220px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-number-large {
    font-size: 3.5rem;
  }

  /* Case Studies Mobile */
  .case-studies {
    padding: 3rem 0;
  }

  .case-studies-container {
    padding: 0 1rem;
  }

  .case-studies-title {
    font-size: 1.75rem;
  }

  .case-studies-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .portfolio-item {
    height: 300px;
  }

  .portfolio-content {
    padding: 2rem 1.5rem 1.5rem;
  }

  .portfolio-title {
    font-size: 1.2rem;
  }

  .portfolio-tags {
    font-size: 0.85rem;
  }

  /* Testimonials Mobile */
  .testimonials {
    padding: 3rem 0;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

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

  .testimonials-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .testimonials-carousel {
    padding: 0 45px;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 1.75rem 1.5rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-btn-prev {
    left: 5px;
  }

  .carousel-btn-next {
    right: 5px;
  }

  .company-logo-text {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .author-info strong {
    font-size: 0.95rem;
  }

  .author-info span {
    font-size: 0.8rem;
  }

  /* CTA Mobile */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-container {
    padding: 0 1rem;
  }

  .cta-content {
    padding: 3rem 2rem;
    border-radius: 16px;
  }

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

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-cta {
    padding: 0.9rem 2rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-watermark {
    font-size: 8rem;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    gap: 2.5rem;
    padding-bottom: 2rem;
    grid-template-columns: 1fr;
  }

  .footer-brand {
    gap: 1.5rem;
  }

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

  .footer-logo .logo-icon {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-menu,
  .footer-contact {
    gap: 0.85rem;
  }

  .footer-menu a,
  .footer-contact a,
  .footer-contact li {
    font-size: 0.9rem;
  }

  .footer-bottom {
    gap: 1rem;
    flex-direction: column;
  }

  .footer-copyright,
  .footer-legal {
    font-size: 0.85rem;
  }

  .footer-legal {
    gap: 0.75rem;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  /* Footer Responsive */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-watermark {
    font-size: 12rem;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .nav-container {
    width: 85%;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }

  section {
    padding: 1rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .contact-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  /* Hero Small Mobile */
  .hero {
    padding: 1.5rem 0;
  }

  .hero-container,
  .hero-images {
    padding: 0 0.75rem;
  }

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

  .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    padding: 1.25rem;
  }

  .stats-title {
    font-size: 1.2rem;
  }

  .stats-description {
    font-size: 0.9rem;
  }

  .avatars img {
    width: 35px;
    height: 35px;
  }

  .social-proof-text {
    font-size: 0.85rem;
  }

  .image-large img {
    height: 250px;
  }

  .image-item img {
    height: 180px;
  }

  /* Trusted Companies Small Mobile */
  .trusted-companies {
    padding: 2.5rem 0;
  }

  .trusted-container {
    padding: 0 0.75rem;
  }

  .trusted-title {
    font-size: 1.3rem;
  }

  .trusted-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .company-logo img {
    max-width: 150px;
  }

  /* About Hero Small Mobile */
  .about-hero {
    padding: 2.5rem 0;
  }

  .about-hero-container {
    padding: 0 0.75rem;
  }

  .about-hero-content {
    margin-bottom: 1.5rem;
  }

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

  .about-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .about-hero-description {
    font-size: 0.9rem;
  }

  .about-hero-image img {
    height: 250px;
  }

  /* About Stats Small Mobile */
  .about-stats {
    padding: 2.5rem 0;
  }

  .about-stats-container {
    padding: 0 0.75rem;
  }

  .about-stats-title {
    font-size: 1.3rem;
  }

  .about-stats-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .stats-logos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .stat-logo img {
    max-width: 150px;
  }

  .stats-numbers {
    gap: 1rem;
  }

  .stat-box {
    padding: 1.5rem 1.25rem;
  }

  .stat-number {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Mission and Vision Small Mobile */
  .mission-vision {
    padding: 2.5rem 0;
  }

  .mission-vision-container {
    padding: 0 0.75rem;
    gap: 1rem;
  }

  .mission-card,
  .vision-card {
    padding: 1.75rem 1.5rem;
  }

  .mission-icon svg,
  .vision-icon svg {
    width: 35px;
    height: 35px;
  }

  .mission-title,
  .vision-title {
    font-size: 1.25rem;
  }

  .mission-description,
  .vision-description {
    font-size: 0.9rem;
  }

  /* Core Values Small Mobile */
  .core-values {
    padding: 2.5rem 0;
  }

  .core-values-container {
    padding: 0 0.75rem;
    gap: 1.5rem;
  }

  .core-values-image img {
    height: 300px;
  }

  .core-values-title {
    font-size: 1.5rem;
  }

  .core-values-subtitle {
    font-size: 0.9rem;
  }

  .value-item {
    padding: 1.25rem 0;
  }

  .value-header {
    gap: 1rem;
  }

  .value-number {
    font-size: 1.2rem;
    min-width: 35px;
  }

  .value-name {
    font-size: 1rem;
  }

  .value-toggle {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .value-details {
    font-size: 0.9rem;
    padding-left: 50px;
    margin-top: 0.75rem;
  }

  /* About CTA Small Mobile */
  .about-cta {
    padding: 2.5rem 0;
  }

  .about-cta-container {
    padding: 0 0.75rem;
  }

  .about-cta-content {
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
  }

  .about-cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
  }

  .about-cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .about-cta .btn-cta {
    padding: 0.8rem 1.75rem;
    font-size: 0.95rem;
  }

  /* Services Hero Small Mobile */
  .services-hero {
    padding: 3rem 0;
  }

  .services-hero-container {
    padding: 0 0.75rem;
  }

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

  .services-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .services-hero-stats {
    gap: 1.75rem;
  }

  .hero-stat-number {
    font-size: 2.5rem;
  }

  .hero-stat-label {
    font-size: 0.9rem;
  }

  /* Services Details Small Mobile */
  .services-details {
    padding: 3rem 0;
  }

  .services-details-container {
    padding: 0 0.75rem;
    gap: 3rem;
  }

  .service-detail-item {
    gap: 1.5rem;
  }

  .service-detail-image img {
    height: 250px;
  }

  .service-detail-title {
    font-size: 1.3rem;
  }

  .service-detail-description {
    font-size: 0.9rem;
  }

  .service-detail-content {
    gap: 1.25rem;
  }

  /* Industries Expertise Small Mobile */
  .industries-expertise {
    padding: 3rem 0;
  }

  .industries-container {
    padding: 0 0.75rem;
  }

  .industries-title {
    font-size: 1.5rem;
  }

  .industries-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .industries-grid {
    gap: 1rem;
  }

  .industry-card {
    padding: 1.75rem 1.25rem;
  }

  .industry-icon svg {
    width: 40px;
    height: 40px;
  }

  .industry-name {
    font-size: 0.95rem;
  }

  /* Service Detail Page Small Mobile */
  .service-page-hero {
    padding: 1.75rem 0 3.5rem;
  }

  .service-page-container {
    padding: 0 0.75rem;
  }

  .go-back-link {
    font-size: 0.9rem;
  }

  .service-page-title {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .service-page-image {
    margin-bottom: 2rem;
  }

  .service-page-image img {
    height: 250px;
  }

  .service-content-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }

  .service-content-text {
    font-size: 0.9rem;
  }

  /* What We Deliver Small Mobile */
  .what-we-deliver {
    padding: 3rem 0;
  }

  .what-we-deliver-container {
    padding: 0 0.75rem;
    gap: 2rem;
  }

  .deliver-image img {
    height: 300px;
  }

  .deliver-title {
    font-size: 1.5rem;
  }

  .deliver-subtitle {
    font-size: 0.9rem;
  }

  .deliver-item {
    padding: 1.25rem 0;
  }

  .deliver-header {
    gap: 1rem;
  }

  .deliver-number {
    font-size: 1.1rem;
    min-width: 32px;
  }

  .deliver-name {
    font-size: 1rem;
  }

  .deliver-toggle {
    width: 34px;
    height: 34px;
  }

  .deliver-toggle svg {
    width: 18px;
    height: 18px;
  }

  .deliver-description {
    font-size: 0.9rem;
    padding-left: 47px;
    margin-top: 0.75rem;
  }

  /* Core Services Small Mobile */
  .core-services {
    padding: 3rem 0;
  }

  .core-services-container {
    padding: 0 0.75rem;
  }

  .core-services-title {
    font-size: 1.5rem;
  }

  .core-services-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }

  .core-services-grid {
    gap: 1rem;
  }

  .core-service-card {
    padding: 1.75rem 1.25rem;
  }

  .core-service-icon svg {
    width: 34px;
    height: 34px;
  }

  .core-service-name {
    font-size: 1rem;
  }

  .core-service-description {
    font-size: 0.9rem;
  }

  /* Development Process Small Mobile */
  .development-process {
    padding: 3rem 0;
  }

  .development-process-container {
    padding: 0 0.75rem;
  }

  .process-title {
    font-size: 1.5rem;
  }

  .process-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }

  .process-track {
    gap: 1rem;
  }

  .process-step {
    padding: 1.75rem 1.25rem;
  }

  .process-step-title {
    font-size: 1rem;
  }

  .process-step-description {
    font-size: 0.9rem;
  }

  /* Case Studies Small Mobile */
  .case-studies-hero {
    padding: 2.5rem 0 1.75rem;
  }

  .case-studies-hero-container {
    padding: 0 0.75rem;
  }

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

  .case-studies-hero-subtitle {
    font-size: 0.9rem;
  }

  .case-studies-grid-section {
    padding: 1.75rem 0 3.5rem;
  }

  .case-studies-grid-container {
    padding: 0 0.75rem;
    gap: 1.75rem;
  }

  .case-study-item {
    gap: 1.25rem;
  }

  .case-study-image img {
    height: 250px;
  }

  .case-study-title {
    font-size: 1.1rem;
  }

  .case-study-tags {
    font-size: 0.8rem;
  }

  /* Case Study Detail Small Mobile */
  .case-study-detail-hero {
    padding: 1.5rem 0 0;
  }

  .case-study-detail-container {
    padding: 0 0.75rem;
  }

  .case-study-detail-title {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.75rem;
  }

  .case-study-detail-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .case-study-detail-image img {
    height: 250px;
    border-radius: 10px;
  }

  .case-study-overview {
    padding: 2.5rem 0 3.5rem;
  }

  .case-study-overview-container {
    padding: 0 0.75rem;
    gap: 1.5rem;
  }

  .overview-section-title {
    font-size: 1.3rem;
  }

  .overview-description {
    font-size: 0.9rem;
  }

  .overview-details {
    gap: 1.25rem;
  }

  .overview-label {
    font-size: 0.8rem;
  }

  .overview-value {
    font-size: 1rem;
  }

  /* Case Study Challenges Small Mobile */
  .case-study-challenges {
    padding: 2.5rem 0;
  }

  .case-study-challenges-container {
    padding: 0 0.75rem;
  }

  .challenges-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .challenges-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .challenges-grid {
    gap: 1.25rem;
  }

  .challenge-card {
    padding: 1.75rem 1.25rem;
    gap: 1rem;
  }

  .challenge-icon {
    width: 44px;
    height: 44px;
  }

  .challenge-icon svg {
    width: 28px;
    height: 28px;
  }

  .challenge-name {
    font-size: 1.05rem;
  }

  .challenge-description {
    font-size: 0.9rem;
  }

  /* Solutions in Action Small Mobile */
  .solutions-in-action {
    padding: 2.5rem 0;
  }

  .solutions-in-action-container {
    padding: 0 0.75rem;
    gap: 2rem;
  }

  .solutions-image img {
    height: 300px;
  }

  .solutions-title {
    font-size: 1.5rem;
  }

  .solutions-subtitle {
    font-size: 0.9rem;
  }

  .solution-item {
    padding: 1.25rem 0;
  }

  .solution-number {
    font-size: 1rem;
    min-width: 28px;
  }

  .solution-name {
    font-size: 0.95rem;
  }

  .solution-toggle {
    width: 28px;
    height: 28px;
  }

  .solution-toggle svg {
    width: 16px;
    height: 16px;
  }

  .solution-description {
    padding-left: 44px;
    font-size: 0.9rem;
  }

  /* Key Outcomes Small Mobile */
  .key-outcomes {
    padding: 2.5rem 0;
  }

  .key-outcomes-container {
    padding: 0 0.75rem;
  }

  .key-outcomes-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .outcomes-grid {
    gap: 2rem;
  }

  .outcome-number {
    font-size: 2.5rem;
  }

  .outcome-label {
    font-size: 1rem;
  }

  .outcome-description {
    font-size: 0.9rem;
  }

  /* Blog Detail Small Mobile */
  .blog-detail-hero {
    padding: 1.5rem 0 0;
  }

  .blog-detail-container {
    padding: 0 0.75rem;
  }

  .blog-detail-title {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.75rem;
  }

  .blog-detail-meta {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }

  .blog-detail-image img {
    height: 250px;
    border-radius: 10px;
  }

  /* Blog Content Small Mobile */
  .blog-content-section {
    padding: 2.5rem 0;
  }

  .blog-content-container {
    padding: 0 0.75rem;
  }

  .blog-content {
    gap: 1.25rem;
  }

  .blog-intro {
    font-size: 0.9rem;
    padding: 0.875rem;
  }

  .content-heading {
    font-size: 1.3rem;
    margin: 1.25rem 0 0.75rem;
  }

  .content-paragraph {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .content-list {
    gap: 0.625rem;
  }

  .content-list-item {
    font-size: 0.9rem;
    gap: 0.75rem;
  }

  .content-list-item svg {
    width: 18px;
    height: 18px;
  }

  .content-sections {
    gap: 1.25rem;
  }

  .section-item-title {
    font-size: 1.05rem;
  }

  .section-item-description {
    font-size: 0.9rem;
  }

  .blog-conclusion {
    padding: 1.5rem;
    margin-top: 1.75rem;
  }

  .conclusion-title {
    font-size: 1.15rem;
  }

  .conclusion-text {
    font-size: 0.9rem;
  }

  /* Blog Small Mobile */
  .blog-hero {
    padding: 2.5rem 0 1.75rem;
  }

  .blog-hero-container {
    padding: 0 0.75rem;
  }

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

  .blog-hero-subtitle {
    font-size: 0.9rem;
  }

  .blog-search-input {
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    font-size: 0.9rem;
  }

  .blog-grid-section {
    padding: 1.75rem 0 3.5rem;
  }

  .blog-grid-container {
    padding: 0 0.75rem;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .blog-card-image img {
    height: 200px;
  }

  .blog-card-title {
    font-size: 1rem;
  }

  .blog-card-meta {
    font-size: 0.75rem;
  }

  .blog-load-more {
    padding: 0 0.75rem;
  }

  .btn-load-more {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Contact Small Mobile */
  .contact-section {
    padding: 3rem 0;
  }

  .contact-container {
    padding: 0 0.75rem;
    gap: 2.5rem;
  }

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

  .contact-description {
    font-size: 0.9rem;
  }

  .contact-details {
    gap: 1.5rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-detail-label {
    font-size: 0.95rem;
  }

  .contact-detail-value {
    font-size: 0.95rem;
  }

  .contact-form-wrapper {
    padding: 1.75rem 1.25rem;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }

  .contact-trusted-container {
    margin-top: 2.5rem;
    padding: 0 0.75rem;
  }

  .contact-trusted-title {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
  }

  .contact-companies-logos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-company-logo img {
    max-width: 150px;
  }

  /* Solutions Small Mobile */
  .solutions-section {
    margin-top: 2.5rem;
  }

  .solutions-title {
    font-size: 1.5rem;
  }

  .solutions-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .service-card {
    padding: 1.5rem 1.25rem;
    min-height: 160px;
  }

  .service-card.featured .service-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-link {
    font-size: 0.95rem;
  }

  /* Why Choose Us Small Mobile */
  .why-choose-us {
    padding: 2.5rem 0;
  }

  .why-container {
    padding: 0 0.75rem;
  }

  .why-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .why-title {
    font-size: 1.5rem;
  }

  .why-description {
    font-size: 0.9rem;
  }

  .why-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .team-avatars img,
  .team-count {
    width: 40px;
    height: 40px;
  }

  .team-text {
    font-size: 0.85rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-number-large {
    font-size: 3rem;
  }

  .stat-text,
  .stat-text-white {
    font-size: 0.9rem;
  }

  .rating-number {
    font-size: 1.3rem;
  }

  .stars {
    font-size: 1rem;
  }

  /* Case Studies Small Mobile */
  .case-studies {
    padding: 2.5rem 0;
  }

  .case-studies-container {
    padding: 0 0.75rem;
  }

  .case-studies-title {
    font-size: 1.5rem;
  }

  .case-studies-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .portfolio-grid {
    margin-bottom: 1.5rem;
  }

  .portfolio-item {
    height: 280px;
  }

  .portfolio-content {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .portfolio-title {
    font-size: 1.1rem;
  }

  .portfolio-tags {
    font-size: 0.8rem;
  }

  /* Testimonials Small Mobile */
  .testimonials {
    padding: 2.5rem 0;
  }

  .testimonials-container {
    padding: 0 0.75rem;
  }

  .testimonials-title {
    font-size: 1.5rem;
  }

  .testimonials-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-carousel {
    padding: 0 40px;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-btn-prev {
    left: 5px;
  }

  .carousel-btn-next {
    right: 5px;
  }

  .company-logo-text {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonial-author img {
    width: 40px;
    height: 40px;
  }

  .author-info strong {
    font-size: 0.9rem;
  }

  .author-info span {
    font-size: 0.75rem;
  }

  /* CTA Small Mobile */
  .cta-section {
    padding: 2.5rem 0;
  }

  .cta-container {
    padding: 0 0.75rem;
  }

  .cta-content {
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .btn-cta {
    padding: 0.8rem 1.75rem;
    font-size: 0.95rem;
  }

  /* Footer Small Mobile */
  .footer {
    padding: 2rem 0 1.25rem;
  }

  .footer-watermark {
    font-size: 6rem;
  }

  .footer-container {
    padding: 0 0.75rem;
  }

  .footer-content {
    gap: 2rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand {
    gap: 1.25rem;
  }

  .footer-logo {
    font-size: 1.1rem;
  }

  .footer-logo .logo-icon {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-column:last-child {
    grid-column: 1;
  }

  .footer-heading {
    font-size: 0.95rem;
  }

  .footer-menu,
  .footer-contact {
    gap: 0.75rem;
  }

  .footer-menu a,
  .footer-contact a,
  .footer-contact li {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-copyright,
  .footer-legal {
    font-size: 0.8rem;
  }

  .footer-legal {
    gap: 0.5rem;
  }
}
