/* ===== 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 Development Section */
.hero-dev {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    color: white;
    padding-top: 80px;
  }
  
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-dev .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .hero-dev-content {
    max-width: 600px;
  }
  
  .hero-dev-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: "Space Grotesk", sans-serif;
    position: relative;
  }
  
  .hero-dev-title .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
  }
  
  .hero-dev-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-secondary);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.3;
  }
  
  .hero-dev-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
  }
  
  .hero-dev-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .hero-dev-visual {
    position: relative;
  }
  
  .visual-container {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xxl);
    transform-style: preserve-3d;
  }
  
  .code-editor {
    background-color: #1e1e1e;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 2;
  }
  
  .editor-header {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #252526;
    border-bottom: 1px solid #333;
  }
  
  .editor-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
  }
  
  .editor-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .editor-dots .red {
    background-color: #ff5f56;
  }
  
  .editor-dots .yellow {
    background-color: #ffbd2e;
  }
  
  .editor-dots .green {
    background-color: #27c93f;
  }
  
  .editor-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .editor-body {
    padding: 20px;
  }
  
  .editor-body pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #d4d4d4;
  }
  
  .token.keyword {
    color: #569cd6;
  }
  
  .token.function {
    color: #dcdcaa;
  }
  
  .token.string {
    color: #ce9178;
  }
  
  .token.comment {
    color: #6a9955;
  }
  
  .token.punctuation {
    color: #d4d4d4;
  }
  
  .token.operator {
    color: #d4d4d4;
  }
  
  .visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
  }
  
  .scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    cursor: pointer;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
  
  .scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .scroll-text {
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: textGlow 2.5s infinite alternate;
  }
  
  .scroll-arrows {
    position: relative;
    height: 50px;
    width: 30px;
  }
  
  .arrow-down {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 20px;
    background: white;
    transform: translateX(-50%);
    animation: arrowWave 2s infinite ease-in-out;
  }
  
  .arrow-down::before,
  .arrow-down::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 2px;
    background: white;
    transform-origin: right center;
  }
  
  .arrow-down::before {
    left: -2px;
    transform: rotate(-45deg);
  }
  
  .arrow-down::after {
    right: -2px;
    transform: rotate(45deg);
  }
  
  .delay-1 {
    top: 15px;
    animation-delay: 0.15s;
    opacity: 0.7;
  }
  
  .delay-2 {
    top: 30px;
    animation-delay: 0.3s;
    opacity: 0.4;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
  }
  
  @keyframes arrowWave {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
  }
  
  @keyframes textGlow {
    0% { opacity: 0.8; text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    100% { opacity: 1; text-shadow: 0 0 15px rgba(255, 255, 255, 0.7); }
  }
  
  /* Hover Effects */
  .scroll-down-indicator:hover .scroll-text {
    color: white;
    animation: textGlowHover 1.5s infinite alternate;
  }
  
  .scroll-down-indicator:hover .arrow-down {
    background: rgba(255, 255, 255, 0.9);
  }
  
  .scroll-down-indicator:hover .arrow-down::before,
  .scroll-down-indicator:hover .arrow-down::after {
    background: rgba(255, 255, 255, 0.9);
  }
  
  @keyframes textGlowHover {
    0% { opacity: 1; text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); }
    100% { opacity: 1; text-shadow: 0 0 20px rgba(255, 255, 255, 1); }
  }
  
  /* Click Animation */
  .scroll-down-indicator:active {
    transform: translate(-50%, 5px) scale(0.95);
    transition: transform 0.2s ease;
  }
  
  /* Services Overview Section */
  .services-overview {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
  }
  
  .services-overview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
  }
  
  .services-overview::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
  }
  
  .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  
  .service-card.glass-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 8px 40px 0 rgba(31,38,135,0.10);
    border: 2px solid #1c4d8f;
    transition: transform 0.42s cubic-bezier(.4,0,.2,1), box-shadow 0.42s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    padding: 48px 32px 32px 32px;
    margin-bottom: 28px;
    z-index: 1;
    border-top: 2.5px solid #1c4d8f;
    min-height: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .service-card.glass-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120%;
    height: 120%;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.03) 100%);
    z-index: 0;
    pointer-events: none;
  }
  .premium-icon {
    background: none !important;
    border-radius: 0;
    width: auto;
    height: auto;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7rem;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 2;
  }
  .premium-icon i {
    color: #1c4d8f;
    font-size: 2.7rem;
    background: none !important;
    border-radius: 0;
    box-shadow: none;
  }
  .service-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1c4d8f;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: 0.5px;
  }
  .service-description {
    color: #000;
    font-size: 1.09rem;
    line-height: 1.75;
    margin-bottom: 22px;
  }
  .service-features {
    margin-bottom: 20px;
    padding-left: 0;
  }
  .service-features li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1c4d8f;
    font-size: 1.02rem;
    margin-bottom: 9px;
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  .service-features li i {
    color: #1c4d8f;
    font-size: 1.08rem;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }
  .service-tags .tag {
    background: #e9f1fa;
    color: #1c4d8f;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    box-shadow: 0 1px 7px 0 rgba(31, 38, 135, 0.08);
    border: 1px solid #1c4d8f;
    transition: background 0.22s, color 0.22s;
  }
  .service-card.glass-card:hover .tag {
    background: #1c4d8f;
    color: #fff;
  }
  @media (max-width: 992px) {
    .service-card.glass-card {
      padding: 38px 14px 30px 14px;
    }
    .premium-icon {
      width: 54px;
      height: 54px;
      font-size: 1.8rem;
    }
  }
  @media (max-width: 576px) {
    .service-card.glass-card {
      padding: 22px 6px 16px 6px;
    }
    .service-title {
      font-size: 1.18rem;
    }
    .premium-icon {
      width: 38px;
      height: 38px;
      font-size: 1.15rem;
    }
  }
  
  /* Full Width Highlight Section */
  .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.03;
    z-index: 0;
  }
  
  .full-width-highlight .container {
    display: grid;
    grid-template-columns: 1fr 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.2;
    margin-bottom: 1.5rem;
    font-family: "Space Grotesk", sans-serif;
  }
  
  .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);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .highlight-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  
  .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.5s ease;
  }
  
  .highlight-image:hover img {
    transform: scale(1.05);
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    pointer-events: none;
  }
  
  /* 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;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
  }
  
  .testimonials-slider {
    position: relative;
    padding: 20px 0;
  }
  
  .testimonial-slide {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: auto;
  }
  
  .testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-quote {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
    flex-grow: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--secondary);
  }
  
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Space Grotesk", sans-serif;
  }
  
  .author-position {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto !important;
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--text-light);
    opacity: 0.3;
    transition: var(--transition);
  }
  
  .swiper-pagination-bullet-active {
    background-color: var(--secondary);
    opacity: 1;
    transform: scale(1.2);
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: var(--secondary);
    background-color: var(--card-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    transform: scale(1.1);
    background-color: var(--secondary);
    color: white;
  }
  
  /* CTA Section */
  .cta-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://plus.unsplash.com/premium_photo-1663023612721-e588768ef403?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
  }
  
  .cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .cta-content {
    max-width: 600px;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: "Space Grotesk", sans-serif;
  }
  
  .cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: "Space Grotesk", sans-serif;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .cta-form {
    background-color: white;
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xxl);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(28, 77, 143, 0.2);
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Tech Stack Section */
  .tech-stack-section {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
  }
  
  .tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .tech-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary);
    color: white;
  }
  
  .tech-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .tech-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
  }
  
  .tech-item span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
  }
  
  .tech-item:hover span {
    color: white;
  }
  
  /* Final CTA Section */
  .final-cta {
    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;
    position: relative;
    padding: 120px 0;
    text-align: center;
  }
  
  .final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.9;
    z-index: 0;
  }
  
  .final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: "Space Grotesk", sans-serif;
    color: white;
  }
  
  .final-cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* 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;
  }