/* ===== DEVELOPMENT PAGE SPECIFIC STYLES ===== */

/* Tech Stack Matrix Layout */

.tech-matrix {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin: 3.5rem 0 2.5rem 0;
}
.matrix-row {
  display: flex;
  align-items: flex-start;
  gap: 2.1rem;
  margin-bottom: 0.5rem;
}
.matrix-label {
  min-width: 120px;
  max-width: 150px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1c4d8f;
  background: #e9f1fa;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  text-align: right;
  margin-top: 0.6rem;
  box-shadow: 0 2px 8px 0 rgba(31,38,135,0.06);
  border: 1.5px solid #1c4d8f;
  text-shadow: 0 2px 10px rgba(28,77,143,0.09);
  align-self: flex-start;
}
.frontend-label { border-color: #1c4d8f; }
.backend-label { border-color: #1c4d8f; }
.cms-label { border-color: #1c4d8f; }
.matrix-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 1.2rem 1.5rem;
  flex: 1 1 0%;
  width: 100%;
  justify-items: center;
}
@media (max-width: 900px) {
  .tech-matrix {
    gap: 1.1rem;
  }
  .matrix-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .matrix-label {
    text-align: left;
    margin-bottom: 0.6rem;
    margin-top: 0;
    max-width: 100%;
    min-width: 0;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .matrix-label {
    font-size: 0.98rem;
    padding: 0.33rem 0.8rem;
  }
  .matrix-items {
    gap: 0.7rem 0.4rem;
  }
}

/* Tech Stack Groups Modern Layout */
.tech-stack-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin: 3.5rem 0 2.5rem 0;
}
.tech-group {
  background: rgba(236, 245, 255, 0.65);
  border-radius: 2.2rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  border: 2px solid #1c4d8f;
  padding: 2.2rem 2.5rem 1.5rem 2.5rem;
  min-width: 290px;
  max-width: 370px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.33s;
  z-index: 1;
}
.tech-group-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
  width: 100%;
}
.tech-group-label {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1c4d8f;
  background: #e9f1fa;
  padding: 0.5rem 1.4rem;
  border-radius: 2rem;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(28,77,143,0.07);
  box-shadow: 0 2px 8px 0 rgba(31,38,135,0.04);
  border: 1.5px solid #1c4d8f;
  display: inline-block;
}
.tech-divider {
  width: 70%;
  height: 3px;
  border: none;
  background: linear-gradient(90deg, #1c4d8f 0%, #000 100%);
  margin: 0 auto 0.8rem auto;
  border-radius: 2px;
  opacity: 0.22;
}
.tech-group-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 1.2rem 1.5rem;
  width: 100%;
  justify-items: center;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.7);
  border-radius: 1.2rem;
  padding: 1.1rem 0.6rem 0.7rem 0.6rem;
  box-shadow: 0 2px 10px 0 rgba(31,38,135,0.06);
  border: 1.5px solid #e9f1fa;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  min-width: 80px;
  max-width: 110px;
}
.tech-item:hover {
  transform: translateY(-7px) scale(1.06);
  box-shadow: 0 7px 22px 0 rgba(28,77,143,0.17);
  border: 1.5px solid #1c4d8f;
  z-index: 2;
}
.tech-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 0.3rem;
  filter: drop-shadow(0 1px 7px rgba(28,77,143,0.07));
}
.tech-item span {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1c4d8f;
  letter-spacing: 0.5px;
  text-align: center;
}
@media (max-width: 1200px) {
  .tech-stack-groups {
    gap: 1.5rem;
  }
  .tech-group {
    max-width: 320px;
    padding: 1.5rem 1.1rem 1.2rem 1.1rem;
  }
}
@media (max-width: 900px) {
  .tech-stack-groups {
    flex-direction: column;
    align-items: stretch;
    gap: 2.2rem;
  }
  .tech-group {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .tech-group {
    padding: 1.2rem 0.3rem 0.7rem 0.3rem;
  }
  .tech-group-label {
    font-size: 1.07rem;
    padding: 0.38rem 1rem;
  }
  .tech-divider {
    width: 80%;
  }
  .tech-group-items {
    gap: 0.8rem 0.5rem;
  }
  .tech-item {
    padding: 0.7rem 0.2rem 0.5rem 0.2rem;
    min-width: 64px;
    max-width: 84px;
  }
  .tech-item img {
    width: 28px;
    height: 28px;
  }
  .tech-item span {
    font-size: 0.82rem;
  }
}


.hero-dev {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e4e8f 0%, #142f52 100%);
  color: #ffffff;
  padding: 100px 20px 60px;
}

.hero-dev .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  z-index: 2;
  position: relative;
  min-height: 100vh;
}

@media (max-width: 991px) {
  .hero-dev .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-dev-title {
    font-size: 2.8rem;
  }

  .hero-dev-subtitle {
    font-size: 1.1rem;
  }

  .hero-dev-btns {
    justify-content: center;
  }
}

.hero-dev-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-dev-title .highlight {
  background: linear-gradient(90deg, #e65e32, #ffa066);
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.hero-dev-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(230, 94, 50, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.hero-dev-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-dev-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-dev-btns a,
.hero-dev-btns button {
  background: #e65e32;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hero-dev-btns a:hover,
.hero-dev-btns button:hover {
  background: #c94c25;
}

.visual-overlay {
  background: linear-gradient(45deg, rgba(230, 94, 50, 0.15), rgba(30, 78, 143, 0.1));
}

/* Scroll Indicator */
.scroll-text {
  color: #fff;
  text-shadow: 0 0 8px rgba(230, 94, 50, 0.25);
}

.arrow-down {
  background: #fff;
}

.arrow-down::before,
.arrow-down::after {
  background: #fff;
}
  
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 30px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes arrowWave {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 12px); }
}

@keyframes textGlow {
  0% { opacity: 0.8; text-shadow: 0 0 6px rgba(255, 255, 255, 0.3); }
  100% { opacity: 1; text-shadow: 0 0 16px rgba(255, 255, 255, 0.7); }
}

@keyframes textGlowHover {
  0% { text-shadow: 0 0 12px rgba(255, 255, 255, 0.6); }
  100% { text-shadow: 0 0 22px rgba(255, 255, 255, 1); }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
}

.service-features li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}


/* Hover + Click */
.scroll-down-indicator:hover .scroll-text {
  color: #fff;
  animation: textGlowHover 1.5s infinite alternate;
}
.scroll-down-indicator:hover .arrow-down,
.scroll-down-indicator:hover .arrow-down::before,
.scroll-down-indicator:hover .arrow-down::after {
  background: rgba(255, 255, 255, 0.95);
}
.scroll-down-indicator:active {
  transform: translate(-50%, 6px) scale(0.95);
  transition: transform 0.2s ease;
}
.service-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1e4e8f;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.5px;
}
.service-description {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 22px;
  font-family: "Inter", sans-serif;
}

  
.full-width-highlight {
  background-color: var(--section-bg);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.full-width-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover no-repeat;
  opacity: 0.035;
  z-index: 0;
  filter: grayscale(100%) contrast(1.1);
}

.full-width-highlight .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.highlight-content {
  max-width: 600px;
}

.highlight-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-dark);
}

.highlight-title span {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.highlight-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-secondary);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.3;
}

.highlight-text {
  color: var(--text-light);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  font-family: "Inter", sans-serif;
}

.highlight-image {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.highlight-image .image-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.highlight-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.highlight-image:hover img {
  transform: scale(1.06);
}

.image-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
}

  
  /* Process Section */
  .process-section {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
  }
  
  .process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(28, 77, 143, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
  }
  
  .process-steps {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  
  .process-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
  }
  
  .process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .process-step:hover::before {
    opacity: 0.05;
  }
  
  .step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: "Space Grotesk", sans-serif;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(237, 90, 47, 0.1);
    border-radius: 50%;
  }
  
  .step-content {
    padding-right: 20px;
  }
  
  .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Space Grotesk", sans-serif;
  }
  
  .step-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(28, 77, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
  }
  
  .process-step:hover .step-icon {
    background-color: var(--primary);
    color: white;
  }
  
  .hero-dev {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e4e8f 0%, #142f52 100%);
    color: #ffffff;
    padding: 100px 20px 60px;
  }
  

  
  .hero-dev-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: "Space Grotesk", sans-serif;
    text-align: center;
  }
  
  .hero-dev-title .highlight {
    background: linear-gradient(90deg, #e65e32, #ffa066);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
  }
  
  .hero-dev-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 94, 50, 0.35);
    z-index: -1;
    border-radius: 4px;
  }
  
  .hero-dev-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-dev-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .hero-dev-btns a,
  .hero-dev-btns button {
    background: #e65e32;
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  .hero-dev-btns a:hover,
  .hero-dev-btns button:hover {
    background: #c94c25;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  }
  
  .hero-dev-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media (max-width: 991px) {
    .hero-dev .container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }
  
    .hero-dev-title {
      font-size: 2.5rem;
    }
  
    .hero-dev-subtitle {
      font-size: 1.1rem;
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .hero-dev .container {
      gap: 40px;
    }
    
    .hero-dev-title {
      font-size: 3.5rem;
    }
    
    .highlight-title, .cta-title, .final-cta-title {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 992px) {
    .hero-dev .container, 
    .full-width-highlight .container,
    .cta-container {
      grid-template-columns: 1fr;
    }
    
    .hero-dev-content, 
    .highlight-content, 
    .cta-content {
      
      max-width: 100%;
      
    }
    
    .hero-dev-visual, 
    .highlight-image {
      order: -1;
    }
    
    .hero-dev {
      padding-top: 120px;
      min-height: auto;
      height: auto;
    }
    
    .section-title {
      font-size: 2.5rem;
    }
    
    .process-step {
      grid-template-columns: auto 1fr;
    }
    
    .step-icon {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 20px;
    }
    
    .step-content {
      grid-column: 1 / span 2;
    }
  }
  
  @media (max-width: 768px) {
    .hero-dev-title {
      font-size: 2.8rem;
    }
    
    .hero-dev-subtitle {
      font-size: 1.1rem;
    }
    
    .hero-dev-btns {
      flex-direction: column;
      gap: 15px;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
    }
    
    .cta-stats {
      grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
      padding: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-dev-title {
      font-size: 2.2rem;
    }
    
    .process-step {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .step-content {
      grid-column: auto;
    }
    
    .step-icon {
      grid-column: auto;
      grid-row: auto;
      margin-bottom: 0;
    }
    
    .tech-stack-grid {
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    
    .final-cta-title {
      font-size: 2rem;
    }
  }
  
  /* Animations */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  /* Particle.js container */
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }