/* Development Page Styles */

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: #4956f7;
  border: 2px solid #4956f7;
  color: white;
}

.hero-buttons .btn-primary:hover {
  background: #3a45d8;
  border-color: #3a45d8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(73, 86, 247, 0.3);
}

.hero-buttons .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.hero-buttons .btn-outline:hover {
  background: white;
  color: #4956f7;
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  max-width: 100%;
  height: auto;
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4956f7 0%, #6c63ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Technology Stack & Know-how */
.tech-stack-section {
  padding: 80px 0;
  background: white;
}

.tech-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tech-card-header {
  background: linear-gradient(135deg, #4956f7 0%, #6c63ff 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.tech-card-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.tech-card-header i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.tech-card-body {
  padding: 2rem;
}

.tech-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tech-item:last-child {
  margin-bottom: 0;
}

.tech-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.tech-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 1rem;
  border-radius: 8px;
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.tech-icon i {
  font-size: 1.2rem;
  color: white;
}

.tech-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.3rem 0;
}

.tech-info p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.knowhow-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.knowhow-item:last-child {
  margin-bottom: 0;
}

.knowhow-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.knowhow-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.knowhow-icon i {
  font-size: 1.2rem;
  color: white;
}

.knowhow-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.3rem 0;
}

.knowhow-info p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Development Process */
.process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #4956f7;
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4956f7 0%, #6c63ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
  position: relative;
}

.step-content {
  flex: 1;
  padding: 0 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 0 1rem;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Portfolio Section */
.portfolio-section {
  padding: 80px 0;
  background: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  margin: 0;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #4956f7 0%, #6c63ff 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: white;
  color: #4956f7;
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: #4956f7;
  transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid #28a745;
  box-shadow: 0 20px 40px rgba(40,167,69,0.08);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 2.5rem;
  transform: rotate(20deg);
  box-shadow: 0 4px 12px rgba(40,167,69,0.15);
}

.pricing-header {
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid #f1f3f5;
}

.pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #222;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 0.5rem;
}

.price .currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 2px;
}

.price .period {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
  margin-left: 2px;
}

.pricing-features {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.6rem 0;
  color: #444;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  color: #28a745;
  margin-right: 0.7rem;
  font-size: 1.1rem;
}

.pricing-footer {
  display: none;
}

.pricing-note {
  margin-top: 2rem;
  color: #888;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
  }
  
  .step-content {
    margin-left: 3rem;
  }
  
  .pricing-card {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .tech-card {
    margin-bottom: 2rem;
  }
  
  .tech-card-header {
    padding: 1.5rem;
  }
  
  .tech-card-body {
    padding: 1.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .pricing-section {
    padding: 50px 0;
  }
  
  .pricing-header {
    padding: 2rem 1rem 1rem 1rem;
  }
  
  .pricing-features {
    padding: 1rem 1rem 0.5rem 1rem;
  }
}

@media (max-width: 575px) {
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .tech-item {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-item img {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .tech-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
    align-self: center;
  }
  
  .knowhow-item {
    flex-direction: column;
    text-align: center;
  }
  
  .knowhow-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
    align-self: center;
  }
  
  .step-content {
    margin-left: 2rem;
    padding: 1rem;
  }
}

/* AI Video Production Section */
.ai-video-section {
  padding: 80px 0;
  background: white;
}

.video-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button i {
  font-size: 1.5rem;
  color: #4956f7;
  margin-left: 3px;
}

.play-button:hover {
  background: #4956f7;
  transform: scale(1.1);
}

.play-button:hover i {
  color: white;
}

.video-content {
  padding: 1.5rem;
}

.video-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.video-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: linear-gradient(135deg, #4956f7 0%, #6c63ff 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .ai-video-section {
    padding: 50px 0;
  }
  
  .video-thumbnail {
    height: 180px;
  }
  
  .video-content {
    padding: 1rem;
  }
  
  .video-content h4 {
    font-size: 1.1rem;
  }
} 