  /* Contact Section */
  .contact-section {
    padding: 5rem 0;
    background: #fff;
  }
  
  .contact-info {
    padding-right: 2rem;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .contact-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    border-radius: 2px;
  }
  
  .contact-info > p {
    color: #666;
    margin-bottom: 2rem;
  }
  
  .info-item {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 127, 80, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  .social-icons-image{
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    width: 30px;
    border-radius: 50%;
    padding: 5px;
  }
  .info-icon i {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .info-content p {
    color: #666;
    margin-bottom: 0.25rem;
  }
  
  .social-links {
    margin-top: 2rem;
  }
  
  .social-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 127, 80, 0.1) 100%);
    color: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    color: #fff;
    transform: translateY(-5px);
  }
  
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .contact-info {
      padding-right: 0;
      margin-bottom: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .contact-info h2,
    .contact-form-wrapper h2 {
      font-size: 1.75rem;
    }
  
  }
  
  @media (max-width: 576px) {
    .info-item {
      flex-direction: column;
    }
  
    .info-icon {
      margin-bottom: 1rem;
    }
  }
  
  