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

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  min-width: 320px;
}

/* Headline Bar */
.headline-bar {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.headline-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  animation: slideText 20s linear infinite;
}

.headline-icon {
  font-size: 18px;
  animation: bounce 2s infinite;
}

.headline-text {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes slideText {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  padding: 5px;
  z-index: 1001;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.5px;
  cursor: pointer;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-text span:first-child {
  color: #111;
}

.logo-text span:last-child {
  color: #ff6b35;
}

/* Legacy logo support (for pages not yet updated) */
.logo > span:first-child {
  color: #111;
}

.logo > span:last-child {
  color: #ff6b35;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

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

.contact-btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px;
  background: #fff;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.tag {
  display: inline-block;
  background: #fff5f0;
  color: #ff6b35;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #ffe9dc;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-text p {
  font-size: 17px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stars {
  color: #ffa500;
  font-size: 18px;
}

.reviews span {
  font-weight: 500;
  color: #444;
  font-size: 15px;
}

.brands {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.brands img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brands img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn::after {
  content: "→";
  font-size: 18px;
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Logo Slider */
.logo-slider {
  overflow: hidden;
  background: #fafafa;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 30s linear infinite;
}

.logo-item {
  width: 220px;
  height: 80px;
  margin: 0 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Consultation Section */
.consult-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 60px 50px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.consult-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.consult-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  max-width: 800px;
  letter-spacing: -0.3px;
}

.consult-btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
  transition: all 0.3s ease;
}

.consult-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.consult-btn i {
  font-style: normal;
  font-size: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  background: linear-gradient(135deg, #fff9f5, #ffffff);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #fff0e8;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.stat-box h3 {
  font-size: 36px;
  color: #ff6b35;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 80px 60px;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.services-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.services-icon {
  font-size: 24px;
}

.services-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.services-heading {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.services-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 800px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.book-demo-btn {
  position: absolute;
  top: 80px;
  right: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
  transition: all 0.3s ease;
}

.book-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.book-demo-btn i {
  font-style: normal;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.service-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
  border-color: #ffe9dc;
}

.service-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* Awards Section */
.awards-section {
  padding: 80px 60px;
  background: #fff;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.awards-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.awards-subheading {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.award-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.laurel-wrapper {
  text-align: center;
  margin-bottom: 15px;
}

.award-logo {
  height: 50px;
  margin-bottom: 15px;
}

.award-badge {
  background: #ff6b35;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: inline-block;
}

.award-success {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.award-text-logo {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.award-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

.award-year {
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

.clutch-badge {
  background: #00a4e4;
  color: #fff;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: inline-block;
}

.clutch-logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.clutch-rating {
  font-size: 14px;
  line-height: 1.3;
}

.silicon-logo {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.silicon-logo span {
  color: #e74c3c;
}

.techreviewer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.goodfirms-badge {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: #fff;
  padding: 25px 18px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.trophy-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.goodfirms-text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.deliver-section {
  background: linear-gradient(135deg, #fff5f0, #ffffff);
  padding: 50px 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #fff0e8;
}

.deliver-text {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
}

.collaborate-btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
  transition: all 0.3s ease;
}

.collaborate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.collaborate-btn i {
  font-style: normal;
  font-size: 18px;
}

/* Partners Section */
.partners-section {
  padding: 80px 60px;
  background: #fafafa;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.partners-heading {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.partners-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
  min-height: 140px;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
  border-color: #ffe9dc;
}

.partner-card img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Sectors Section */
.sectors-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.sectors-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.sectors-icon {
  font-size: 24px;
}

.sectors-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.sectors-heading {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.sectors-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 800px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.schedule-call-btn {
  position: absolute;
  top: 80px;
  right: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
  transition: all 0.3s ease;
}

.schedule-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.schedule-call-btn i {
  font-style: normal;
  font-size: 18px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.sector-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
  border-color: #ffe9dc;
}

.sector-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.sector-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* Portfolio Section */
.portfolio-section {
  padding: 80px 60px 200px 60px;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-main-heading {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.portfolio-subtitle {
  font-size: 17px;
  color: #666;
}

.portfolio-cards-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.portfolio-card {
  border-radius: 16px;
  padding: 50px 40px;
  position: sticky;
  transition: all 0.3s ease;
  min-height: 600px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-card:nth-child(1) {
  z-index: 1;
  top: 80px;
}

.portfolio-card:nth-child(2) {
  z-index: 2;
  top: 80px;
}

.portfolio-card:nth-child(3) {
  z-index: 3;
  top: 80px;
}

.portfolio-card-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

/* Mobile App Development Card */
.mobile-dev-card {
  background: linear-gradient(135deg, #8b7fc4, #a399d4);
}

.mobile-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.mobile-img {
  width: 240px;
  height: 480px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

/* Web Development Card */
.web-dev-card {
  background: linear-gradient(135deg, #5a9aa8, #6bb3c2);
}

.web-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.web-project {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.web-project:hover {
  transform: scale(1.02);
}

.web-project img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 25px 20px 18px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.web-project:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Game Development Card */
.game-dev-card {
  background: linear-gradient(135deg, #b8343b, #d44a51);
}

.game-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.game-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.game-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.game-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.game-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.portfolio-link {
  text-align: center;
  margin-top: 25px;
}

.portfolio-link a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 25px;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.3s ease;
}

.portfolio-link a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .game-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 15px;
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .contact-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    gap: 30px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .brands {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .consult-section {
    padding: 50px 20px;
    margin: 50px 15px;
  }
  
  .consult-header {
    flex-direction: column;
  }
  
  .consult-header h2 {
    font-size: 24px;
  }
  
  .services-section,
  .awards-section,
  .partners-section,
  .sectors-section {
    padding: 60px 20px;
  }
  
  .portfolio-section {
    padding: 60px 20px 150px 20px;
  }
  
  .services-heading,
  .sectors-heading,
  .partners-heading {
    font-size: 32px;
  }
  
  .book-demo-btn,
  .schedule-call-btn {
    position: static;
    margin: 25px auto 0;
    width: 100%;
    justify-content: center;
  }
  
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .award-card {
    padding: 25px 15px;
  }
  
  .award-logo {
    height: 40px;
  }
  
  .award-text-logo {
    font-size: 18px;
  }
  
  .award-description {
    font-size: 12px;
    max-width: 180px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .web-showcase {
    grid-template-columns: 1fr;
  }
  
  .game-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .deliver-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  
  .deliver-text {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .headline-bar {
    padding: 10px 15px;
  }
  
  .headline-text {
    font-size: 11px;
  }
  
  .navbar {
    padding: 12px 15px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .hero-text h1 {
    font-size: 26px;
  }
  
  .hero-text p {
    font-size: 15px;
  }
  
  .tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .partners-grid,
  .game-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-box {
    padding: 20px 15px;
  }
  
  .stat-box h3 {
    font-size: 28px;
  }
  
  .stat-box p {
    font-size: 13px;
  }
  
  .services-grid,
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .service-card,
  .sector-card {
    padding: 30px 20px;
  }
  
  .service-icon,
  .sector-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .service-card h3,
  .sector-card h3 {
    font-size: 15px;
  }
  
  .services-heading,
  .sectors-heading,
  .partners-heading,
  .awards-subheading {
    font-size: 28px;
  }
  
  .services-subtitle,
  .sectors-subtitle,
  .partners-subtitle {
    font-size: 15px;
  }
  
  .mobile-img {
    width: 180px;
    height: 360px;
  }
  
  .portfolio-card {
    padding: 30px 20px;
    position: relative !important;
    top: auto !important;
    min-height: auto;
  }
  
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(3) {
    position: relative !important;
    top: auto !important;
  }
  
  .portfolio-card-header h3 {
    font-size: 26px;
  }
  
  .consult-section {
    padding: 40px 15px;
    margin: 30px 10px;
  }
  
  .consult-header h2 {
    font-size: 20px;
  }
  
  .contact-btn {
    display: none;
  }
  
  .logo-item {
    width: 150px;
    height: 60px;
    margin: 0 15px;
  }
  
  .reviews {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .brands img {
    height: 30px;
  }
  
  .partner-card {
    padding: 30px 20px;
    min-height: 120px;
  }
  
  .partner-card img {
    max-width: 120px;
    max-height: 50px;
  }
}

/* ==================================
   NEW PAGES STYLES
   ================================== */

/* Page Hero Sections */
.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  background: linear-gradient(135deg, #fafafa, #ffffff);
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin: 25px 0;
    flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.feature-icon {
  color: #ff6b35;
  font-weight: 700;
  font-size: 18px;
}

.company-stats-inline,
.portfolio-stats-inline {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.stat-inline {
  text-align: left;
}

.stat-inline h3 {
  font-size: 32px;
  color: #ff6b35;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-inline p {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Section Headers */
.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: #fff5f0;
  color: #ff6b35;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  border: 1px solid #ffe9dc;
}

.section-header-center h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header-center p {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Game Services Section */
.game-services-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.game-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.game-service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
  text-align: center;
}

.game-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
  border-color: #ffe9dc;
}

.game-service-card .service-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.game-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.game-service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Tech Section */
.tech-section {
  padding: 80px 60px;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.tech-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.tech-card h3 {
    font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 15px;
  color: #666;
}

/* Game Portfolio Section */
.game-portfolio-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.game-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.game-portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.game-portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.game-portfolio-item img {
    width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.game-portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px 20px 20px;
  color: #fff;
}

.game-portfolio-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.game-portfolio-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Process Section */
.process-section {
  padding: 80px 60px;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  background: #fff;
  padding: 35px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f5f5f5;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #ff6b35;
  opacity: 0.15;
  position: absolute;
  top: 20px;
  right: 25px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  background: #fff;
  color: #ff6b35;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* About Detail Section */
.about-detail-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin: 15px 0 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
    gap: 10px;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.feature-check {
  color: #ff6b35;
  font-weight: 700;
  font-size: 18px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Section */
.mission-vision-section {
  padding: 80px 60px;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.mv-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.mv-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.team-departments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.department-card {
  background: linear-gradient(135deg, #fff9f5, #ffffff);
  padding: 35px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #fff0e8;
  transition: all 0.3s ease;
}

.department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.dept-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.department-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.department-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.team-count {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 15px;
}

/* Culture Section */
.culture-section {
  padding: 80px 60px;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.culture-item {
  background: #fff;
  padding: 35px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f5f5f5;
  text-align: center;
  transition: all 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.culture-icon {
  font-size: 45px;
  margin-bottom: 18px;
}

.culture-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.culture-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Locations Section */
.locations-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.location-card {
  background: linear-gradient(135deg, #fff9f5, #ffffff);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #fff0e8;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.location-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.location-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.location-card p {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
}

.location-address {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}

/* Service Detail Section */
.service-detail-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-section.alt-bg {
  background: #fafafa;
}

.service-detail-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.service-detail-content.reverse {
  flex-direction: row-reverse;
}

.service-detail-text {
  flex: 1;
}

.service-detail-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin: 15px 0 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.service-detail-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.feature-bullet {
  color: #ff6b35;
  font-weight: 700;
  font-size: 18px;
}

.btn-secondary {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
}

.service-detail-image {
  flex: 1;
}

.service-detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Additional Services Section */
.additional-services-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.additional-service-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f5f5f5;
  text-align: center;
  transition: all 0.3s ease;
}

.additional-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.additional-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 15px 0 10px;
}

.additional-service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Portfolio Filter Section */
.portfolio-filter-section {
  padding: 50px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid #f0f0f0;
}

.filter-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  text-align: center;
}

.filter-buttons {
  display: flex;
    justify-content: center;
  gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
  background: #fff;
  color: #666;
  border: 2px solid #e0e0e0;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

/* Portfolio Category Section */
.portfolio-category-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-category-section.alt-bg {
  background: #fafafa;
}

.category-header {
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.category-header p {
  font-size: 16px;
  color: #666;
}

/* Portfolio Projects Grid */
.portfolio-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.portfolio-project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
}

.portfolio-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.project-overlay-quick {
  position: absolute;
  top: 15px;
  right: 15px;
}

.project-tag {
  background: rgba(255, 107, 53, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* Success Stories Section */
.success-stories-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.success-card {
  background: linear-gradient(135deg, #fff9f5, #ffffff);
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #fff0e8;
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.success-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ffe9dc;
}

.success-stat h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 5px;
}

.success-stat p {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.success-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.success-card > p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.client-info strong {
  font-size: 15px;
  color: #111;
  font-weight: 600;
}

.client-info span {
  font-size: 13px;
  color: #999;
}

/* Responsive for New Pages */
@media (max-width: 900px) {
  .game-services-grid,
  .process-grid,
  .mv-grid,
  .culture-grid,
  .locations-grid,
  .additional-services-grid,
  .success-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-departments {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .game-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-projects-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .service-detail-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .page-hero {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .hero-features,
  .company-stats-inline,
  .portfolio-stats-inline {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .game-services-section,
  .tech-section,
  .game-portfolio-section,
  .process-section,
  .about-detail-section,
  .mission-vision-section,
  .team-section,
  .culture-section,
  .locations-section,
  .service-detail-section,
  .additional-services-section,
  .success-stories-section {
    padding: 60px 20px;
  }
  
  .section-header-center h2 {
    font-size: 32px;
  }
  
  .tech-grid,
  .game-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .filter-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  .game-portfolio-grid,
  .team-departments {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .game-portfolio-item img {
    height: 200px;
  }
  
  .game-portfolio-overlay h3 {
    font-size: 16px;
  }
  
  .game-portfolio-overlay p {
    font-size: 12px;
  }
  
  .department-card {
    padding: 25px 15px;
  }
  
  .dept-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .department-card h3 {
    font-size: 16px;
  }
  
  .department-card p {
    font-size: 12px;
  }
  
  .hero-features,
  .company-stats-inline,
  .portfolio-stats-inline {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-hero {
    padding: 40px 15px;
  }
  
  .page-hero h1 {
    font-size: 26px;
  }
  
  .page-hero p {
    font-size: 15px;
  }
  
  .game-services-section,
  .tech-section,
  .game-portfolio-section,
  .process-section,
  .about-detail-section,
  .mission-vision-section,
  .team-section,
  .culture-section,
  .locations-section,
  .service-detail-section,
  .additional-services-section,
  .portfolio-category-section,
  .success-stories-section {
    padding: 50px 15px;
  }
  
  .game-services-grid,
  .tech-grid,
  .process-grid,
  .mv-grid,
  .culture-grid,
  .locations-grid,
  .additional-services-grid,
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .game-service-card,
  .tech-card,
  .process-step,
  .mv-card,
  .culture-item,
  .location-card,
  .additional-service-card {
    padding: 25px 15px;
  }
  
  .game-service-card .service-icon,
  .mv-icon,
  .culture-icon,
  .location-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .game-service-card h3,
  .tech-card h3,
  .process-step h3,
  .mv-card h3,
  .culture-item h3,
  .location-card h3,
  .additional-service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .game-service-card p,
  .tech-card p,
  .process-step p,
  .mv-card p,
  .culture-item p,
  .location-card p,
  .additional-service-card p {
    font-size: 13px;
  }
  
  .step-number {
    font-size: 36px;
  }
  
  .section-header-center h2,
  .category-header h2 {
    font-size: 28px;
  }
  
  .portfolio-filter-section {
    padding: 30px 15px;
  }
}

/* ==================================
   HOME PAGE FINISHING TOUCHES
   ================================== */

/* World Map Section */
.world-map-section {
  padding: 80px 60px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.world-map-container {
  margin-top: 50px;
}

.map-image-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.world-map-base {
    width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) brightness(1.1) contrast(0.9);
  opacity: 0.4;
}

.map-dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: dotPulse 3s ease-in-out infinite;
}

.map-dot:hover {
  transform: translate(-50%, -50%) scale(1.3);
  background: #e85a2a;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.map-dot.primary {
  width: 14px;
  height: 14px;
  background: transparent;
  z-index: 2;
}

.map-dot.primary .dot-ring {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 2s ease-out infinite;
}

.map-dot.primary .dot-inner {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ff6b35;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.map-dot.primary:hover .dot-inner {
  background: #e85a2a;
  transform: translate(-50%, -50%) scale(1.2);
}

.map-dot.primary:hover .dot-ring {
  border-color: #ff6b35;
  transform: translate(-50%, -50%) scale(1.2);
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes ringPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
}

.map-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.map-location-card {
  background: linear-gradient(135deg, #fff9f5, #ffffff);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #fff0e8;
  transition: all 0.3s ease;
}

.map-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.location-flag {
  font-size: 50px;
  margin-bottom: 15px;
}

.map-location-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.map-location-card p {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.location-contact {
  display: inline-block;
  color: #ff6b35;
  font-weight: 600;
  font-size: 15px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 60px;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto 50px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  font-size: 28px;
  font-weight: 300;
  color: #ff6b35;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
    justify-content: center;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px;
}

.faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta p {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Get Started Section */
.get-started-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  background: linear-gradient(135deg, #fff5f0, #ffffff);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.get-started-content {
  flex: 1;
}

.get-started-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.get-started-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.get-started-image {
  flex: 1;
  max-width: 500px;
}

.get-started-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 60px 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-about {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  display: flex;
  align-items: center;
}

.footer-logo-text span:first-child {
  color: #fff;
}

.footer-logo-text span:last-child {
  color: #ff6b35;
}

/* Legacy footer logo support */
.footer-logo > span:first-child {
  color: #fff;
}

.footer-logo > span:last-child {
  color: #ff6b35;
}

.footer-about p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff6b35;
  transform: translateY(-3px);
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #ff6b35;
  padding-left: 5px;
}

.footer-contact li {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #bbb;
}

.footer-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-links span {
  color: #555;
}

/* Responsive for New Sections */
@media (max-width: 900px) {
  .world-map-section,
  .faq-section {
    padding: 60px 20px;
  }
  
  .map-image-wrapper {
    border-radius: 8px;
  }
  
  .map-dot {
    width: 8px;
    height: 8px;
  }
  
  .map-dot.primary {
    width: 12px;
    height: 12px;
  }
  
  .map-dot.primary .dot-ring {
    width: 24px;
    height: 24px;
    border-width: 2px;
  }
  
  .map-dot.primary .dot-inner {
    width: 12px;
    height: 12px;
  }
  
  .map-locations-grid {
    grid-template-columns: 1fr;
  }
  
  .get-started-section {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }
  
  .get-started-content h2 {
    font-size: 32px;
  }
  
  .cta-section {
    padding: 80px 20px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .footer {
    padding: 60px 20px 30px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-about {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .headline-text {
    font-size: 12px;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .world-map-section,
  .faq-section {
    padding: 50px 15px;
  }
  
  .get-started-section {
    padding: 50px 15px;
  }
  
  .get-started-content h2 {
    font-size: 28px;
  }
  
  .get-started-content p {
    font-size: 16px;
  }
  
  .cta-section {
    padding: 60px 15px;
  }
  
  .cta-content h2 {
    font-size: 30px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .footer {
    padding: 50px 15px 20px;
  }
  
  .footer-logo-img {
    height: 30px;
  }
  
  .faq-question {
    padding: 18px 15px;
  }
  
  .faq-question h3 {
    font-size: 15px;
  }
  
  .faq-answer {
    padding: 0 15px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 15px 18px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
  
  .faq-cta p {
    font-size: 16px;
  }
  
  .section-header-center p {
    font-size: 15px;
    padding: 0 10px;
  }
  
  .map-location-card {
    padding: 25px 20px;
  }
  
  .map-location-card h4 {
    font-size: 18px;
  }
  
  .map-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .location-flag {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .map-location-card h4 {
    font-size: 16px;
  }
  
  .map-location-card p,
  .location-contact {
    font-size: 13px;
  }
  
  .success-card {
    padding: 25px 20px;
  }
  
  .success-stats {
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  
  .success-stat h3 {
    font-size: 24px;
  }
  
  .success-stat p {
    font-size: 11px;
  }
  
  .success-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .success-card > p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
