/* 
 * Web Development Service Page Specific Styles for Shraddha
 * This file contains styles specific to the Web Development service page
 * It should be included after the main style.css file
 */

/* Hero Section Styles */
.service-hero {
    position: relative;
    background-color: #000;
    padding-top: 7rem;
    overflow: hidden;
  }
  
  .service-hero .btn {
    transition: all 0.3s ease;
  }
  
  .service-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Service Features Styles */
  .service-features-item {
    transition: all 0.3s ease;
  }
  
  .service-features-item:hover {
    transform: translateX(5px);
  }
  
  .feature-icon {
    color: var(--brand-color);
    transition: all 0.3s ease;
  }
  
  .service-features-item:hover .feature-icon {
    transform: scale(1.1);
  }
  
  /* Technology Stack Icons */
  .tech-stack-icon {
    width: 70px;
    height: 70px;
    padding: 15px;
    background-color: rgba(245, 78, 2, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .tech-card:hover .tech-stack-icon {
    transform: translateY(-5px);
    background-color: rgba(245, 78, 2, 0.2);
  }
  
  /* Development Process Timeline */
  .process-step {
    position: relative;
    padding-left: 30px;
  }
  
  .process-step::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--brand-color);
  }
  
  .process-step::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
  }
  
  .step-1::after {
    content: "1";
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
  }
  
  .step-2::after {
    content: "2";
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
  }
  
  .step-3::after {
    content: "3";
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
  }
  
  .step-4::after {
    content: "4";
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
  }
  
  /* Portfolio Cards */
  .portfolio-card {
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-card img {
    transition: transform 0.5s ease;
  }
  
  .portfolio-card:hover img {
    transform: scale(1.05);
  }
  
  /* Portfolio badges */
  .badge.bg-brand {
    background-color: var(--brand-color);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
  }
  
  /* Testimonial cards */
  .testimonial-card {
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.1) !important;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-color) !important;
  }
  
  .testimonial-card .fas.fa-quote-left {
    opacity: 0.8;
  }
  
  /* FAQ accordion styling */
  .accordion-item {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .accordion-button {
    font-family: 'Fredoka', sans-serif;
    padding: 1.25rem;
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--brand-color);
    background-color: #fff;
    box-shadow: none;
  }
  
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F54E02'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(245, 78, 2, 0.25);
  }
  
  .accordion-body {
    padding: 1.25rem;
    color: #555;
  }
  
  /* Contact Form Styling */
  .form-control:focus, 
  .form-select:focus {
    border-color: rgba(245, 78, 2, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(245, 78, 2, 0.25);
  }
  
  .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
  }
  
  .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #495057;
  }
  
  /* CTA Banner */
  .cta-banner {
    background-color: var(--brand-color);
    padding: 3rem 0;
  }
  
  .cta-banner .btn {
    background-color: #fff;
    color: var(--brand-color);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
  }
  
  .cta-banner .btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
  }
  
  /* Card hover effects */
  .card.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Section Headers with divider lines */
  .section-divider {
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: var(--brand-color);
    margin-bottom: 1rem;
  }
  
  /* Custom outline button for portfolio */
  .btn-outline-brand {
    color: var(--brand-color);
    border-color: var(--brand-color);
  }
  
  .btn-outline-brand:hover {
    background-color: var(--brand-color);
    color: white;
  }
  
  /* Contact Information Icons */
  .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact-info-item:hover .contact-icon-wrapper {
    transform: scale(1.1);
  }
  
  /* Background elements */
  .bg-dots {
    background-image: radial-gradient(rgba(245, 78, 2, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
  }
  
  .bg-pattern {
    position: absolute;
    opacity: 0.05;
    z-index: -1;
  }
  
  /* Media Queries */
  @media (max-width: 991.98px) {
    .service-hero {
      padding-top: 6rem;
    }
    
    .process-step {
      margin-bottom: 2rem;
    }
    
    .process-step::before {
      bottom: -1rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .tech-stack-icon {
      width: 60px;
      height: 60px;
      padding: 12px;
    }
    
    .portfolio-card img {
      height: 180px !important;
    }
  }
  
  @media (max-width: 575.98px) {
    .service-hero .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
    }
    
    .process-step {
      padding-left: 25px;
    }
    
    .process-step::after {
      width: 25px;
      height: 25px;
      font-size: 14px;
      line-height: 25px;
    }
  }