/* Services Section Styling for Events Website */
:root {
  --primary-blue: #00647d;
  --primary-green: #8abb2a;
  --light-blue: rgba(0, 100, 125, 0.1);
  --light-green: rgba(138, 187, 42, 0.1);
  --dark-blue: #004e61;
  --dark-green: #78a124;
}


/* Header Styling */
.service-header {
    padding: 10px 0 10px;
    background-color: #f8f9fa;
    background-image: url(../images/services2.avif) ,linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    background-size: contain;
    height: 35vh;
    

  }
  
  .service-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight:900;
    color: #f3f5f7;
    margin-bottom: 8px;
    position: relative;
    border-radius: 10px;
    text-shadow: 
    -2px -2px 0 var(--primary-blue),  
     2px -2px 0 var(--primary-blue),  
    -2px  2px 0 var(--primary-blue),  
     2px  2px 0 var(--primary-blue),
     0px 5px 10px rgba(0,0,0,0.5),  /* Medium shadow */
     0px 10px 20px rgba(0,0,0,0.4);
     letter-spacing: 1px;
     transform: skew(-3deg);

  }
  
  .service-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #f3f5f7;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    background-color: rgba(16, 16, 16, 0.495);
    border-radius: 5px;
    padding: 5px;
    z-index: 3;
  }
  
  /* Services Section Styling */
  .service-section {
    background-color: #ffffff;
    position: relative;
  }
  


  .service-container {
    position: relative;
    z-index: 1;
  }
  
  /* Service Card Styling */
  .service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    /* border-bottom: 3px solid #ff5a5f; */
    border-bottom: 3px solid var(--primary-blue);
  }
  
  /* Icon Styling */
  .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-icon i {
    font-size: 40px;
    /* color: #ff5a5f; */
    color: var(--primary-blue);
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon i {
    transform: scale(1.2);
  }
  
  /* Content Styling */
  .service-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
  }
  
  .service-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    /* background-color: #ff5a5f; */
    background-color: var(--primary-blue);
  }
  
  .service-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
  }
  
  /* Button Styling */
  .service-card .btn-primary {
    background-color: transparent;
    /* border: 2px solid #ff5a5f; */
    border: 2px solid var(--primary-blue);
    /* color: #ff5a5f; */
    color: var(--primary-blue);
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .service-card .btn-primary:hover {
    /* background-color: #ff5a5f; */
    background-color: var(--primary-blue);
    color: white;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .service-icon {
      margin-bottom: 15px;
    }
  }
  