/* 
 * Digital Marketing Service Page Specific Styles for Shraddha
 * Minimalist, focused styling to complement the main website
 */

/* Hero Section */
.digital-hero {
    position: relative;
    background-color: #000;
    padding-top: 7rem;
    overflow: hidden;
    background-image: linear-gradient(to right, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.7) 100%), 
                      url('../images/digital-marketing-hero.jpg');
    background-size: cover;
    background-position: center;
  }
  
  /* Service Cards */
  .dm-service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .dm-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .dm-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 78, 2, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .dm-service-card:hover .dm-service-icon {
    background-color: var(--brand-color);
  }
  
  .dm-service-icon i {
    font-size: 1.75rem;
    color: var(--brand-color);
    transition: all 0.3s ease;
  }
  
  .dm-service-card:hover .dm-service-icon i {
    color: white;
  }
  
  /* Results Counter */
  .dm-result-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .dm-result-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .dm-result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', sans-serif;
  }
  
  .dm-result-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
  }
  
  /* Process Steps */
  .dm-process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .dm-process-step:last-child {
    margin-bottom: 0;
  }
  
  .dm-process-number {
    width: 40px;
    height: 40px;
    background-color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  
  .dm-process-content {
    flex: 1;
  }
  
  .dm-process-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .dm-process-text {
    color: #555;
    margin-bottom: 0;
  }
  
  /* Media Queries */
  @media (max-width: 991.98px) {
    .digital-hero {
      padding-top: 6rem;
    }
    
    .dm-result-box {
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .dm-service-card {
      margin-bottom: 1.5rem;
    }
    
    .dm-process-step {
      margin-bottom: 1.5rem;
    }
  }