/* ------------------------------
   consulting.css
   Consulting Tab Styles
------------------------------ */
/* Hero Section */
    .hero-consulting {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 12px;
    }
    .hero-consulting h1 {
      font-size: 32px;
      margin-bottom: 0px;
      color: var(--primary);
    }
	.hero-consulting h2 {
      font-size: 28px;
      margin-bottom: 0px;
      color: var(--primary);
    }
    .hero-consulting p {
      font-size: 18px;
      color: var(--gray);
    }

/* ------------------------------
   Technology Tab Styles
------------------------------ */

	.technology-section {
	  display: flex;
	  flex-direction: column;
	  gap: 30px;
	  padding: 30px 10%;
	  background-color: var(--bg-light);
	}

	.technology-card {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 30px;
	  background: #fff;
	  border-radius: 16px;
	  padding: 15px;
	  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	  transition: all 0.4s ease;
	  cursor: pointer;
	}

	.technology-card img {
	  width: 35%;
	  border-radius: 12px;
	  transition: transform 0.4s ease;
	}

	.technology-card .content {
	  width: 65%;
	}

	.technology-card .content h3 {
	  color: var(--dark);
	  font-size: 1.6rem;
	  margin-bottom: 10px;
	  transition: color 0.3s ease;
	}

	.technology-card .content p {
	  color: var(--gray);
	  line-height: 1.6;
	  font-size: 1rem;
	}

	/* Alternate layout */
	.technology-card:nth-child(even) {
	  flex-direction: row-reverse;
	}

	/* Hover effects */
	.technology-card:hover {
	  transform: translateY(-6px);
	  box-shadow: 0 8px 25px rgb(99 103 106 / 30%);
	}

	.technology-card:hover img {
	  transform: scale(1.05);
	}

	.technology-card:hover h3 {
	  color: var(--primary);
	}

	/* Responsive adjustments */
	@media (max-width: 900px) {
	  .technology-card {
		flex-direction: column;
		text-align: center;
	  }

	  .technology-card:nth-child(even) {
		flex-direction: column;
	  }

	  .technology-card img,
	  .technology-card .content {
		width: 100%;
	  }
	}

    
/* ------------------------------
   Developemt Tab Styles
------------------------------ */

    .development-grid {
      max-width: 1100px;
      margin: 50px auto;
      padding: 0 12px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .development {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .development:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .development img {
	  width: 100%;
	  height: 120px; /* or smaller if you prefer */
	  object-fit: contain; /* ensures full image fits */
	  background: #f1f5f9; /* optional subtle backdrop */
	  border-bottom: 1px solid #e2e8f0;
	  border-top-left-radius: 16px;
	  border-top-right-radius: 16px;
	}

    .development-content {
      padding: 20px;
    }

    .development-content h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .development-content p {
      color: var(--gray);
      font-size: 1rem;
      line-height: 1.6;
    }

/* ------------------------------
   Services Tab Styles
------------------------------ */

  /* ===== Services Section ===== */
	.cs-content {
	  padding: 80px 20px;
	  font-family: 'Inter', system-ui, -apple-system, sans-serif;
	}

	.cs-container {
	  max-width: 1200px;
	  margin: 0 auto;
	}

	/* Title */
	.cs-section-title {
	  text-align: center;
	  margin-bottom: 48px;
	}
	.cs-section-title h2 {
	  font-size: 2.5rem;
	  font-weight: 700;
	  margin: 0 0 12px;
	}
	.cs-underline {
	  width: 80px;
	  height: 4px;
	  background: var(--primary);
	  margin: 0 auto;
	  border-radius: 2px;
	}

	/* Intro Text */
	.cs-intro-text {
	  max-width: 900px;
	  margin: 0 auto 56px;
	  text-align: center;
	  font-size: 1.1rem;
	  line-height: 1.7;
	}
	.cs-intro-text p {
	  margin-bottom: 1.5rem;
	}
	.cs-intro-text strong {
	  color: var(--primary);
	}

	/* Feature Grid */
	.cs-features-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap: 32px;
	  margin-bottom: 56px;
	}

	.cs-feature-card {
	  background: #ffffff;
	  padding: 32px 24px;
	  border-radius: 16px;
	  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	  text-align: center;
	  transition: all 0.3s ease;
	}
	.feature-card:hover {
	  transform: translateY(-10px);
	  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
	}

	.cs-icon-circle {
	  width: 64px;
	  height: 64px;
	  background: var(--primary);
	  color: white;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin: 0 auto 20px;
	  font-size: 1.5rem;
	}
	.cs-icon-circle.accent {
	  background: #F59E0B;
	}

	.cs-feature-card h3 {
	  font-size: 1.35rem;
	  font-weight: 600;
	  color: var(--primary);
	  margin: 0 0 12px;
	}
	.cs-feature-card p {
	  color: #6b7280;
	  font-size: 1rem;
	  line-height: 1.6;
	}

	/* CTA */
	.cs-cta-center {
	  text-align: center;
	}
	.cs-btn-primary {
	  display: inline-flex;
	  align-items: center;
	  background: var(--primary);
	  color: white;
	  padding: 14px 32px;
	  font-weight: 600;
	  border-radius: 50px;
	  text-decoration: none;
	  transition: all 0.3s ease;
	  box-shadow: 0 4px 15px rgba(30,64,175,0.3);
	}
	.cs-btn-primary:hover {
	  background: var(--primary);
	  color: #111827;
	  transform: translateY(-2px);
	  box-shadow: 0 8px 20px rgba(30,64,175,0.6);
	}
	.cs-btn-primary i {
	  margin-left: 8px;
	  transition: transform 0.3s ease;
	}
	.cs-btn-primary:hover i {
	  transform: translateX(4px);
	}

	/* Responsive */
	@media (max-width: 768px) {
	  .cs-section-title h2 { font-size: 2rem; }
	  .cs-features-grid { grid-template-columns: 1fr; }
	  .cs-content { padding: 60px 15px; }
	}