.services-header-banner{
  position: relative;
    width: 100%;
    min-height: 380px; /* Banner height */
    
    /* Perfect Flexbox Centering */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

  /* Background Image + Blue Overlay */
    background: linear-gradient(135deg, rgba(32, 147, 196, 0.88) 0%, rgba(30, 85, 105, 0.82) 100%), 
                url('/images/Backgroud3.jpeg') center/cover no-repeat;

    color: #ffffff;
    padding: 40px 20px;
    box-sizing: border-box;
}


/* Container */
.services-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* 2-Column Responsive Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 24px;
}

/* Single Service Card */
.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

/* Light Blue Icon Box */
.service-icon {
  background-color: #e0f2fe; /* Light Soft Blue */
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevents icon from shrinking */
}

/* Card Content Details */
.service-details {
  display: flex;
  flex-direction: column;
}

.service-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3c40; /* Dark Teal */
  font-family: 'Georgia', serif;
  margin: 0 0 8px 0;
}

.service-details p {
  font-size: 0.92rem;
  color: #64748b; /* Soft Muted Gray */
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* Blue Action Link */
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #25a5d8; /* Sky Blue */
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-link:hover {
  color: #1d82ab;
  text-decoration: underline;
}


/* Container Section */
.custom-inquiry-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #fbfcfd; /* Clean off-white background */
  font-family: Arial, sans-serif;
}

/* Question Text */
.inquiry-text {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
  margin: 0 0 24px 0;
}

/* Button Wrapper */
.inquiry-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Base Pill Button Styling */
.inquiry-buttons .btns {
  padding: 12px 32px;
  border-radius: 30px; /* Rounded pill shape */
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Orange Gradient Button (Book Now) */
.btn-orange {
  background: linear-gradient(135deg, #ff9800 0%, #ff8000 100%);
  color: #ffffff;
  border: none;
  /* Soft Glow Shadow like in screenshot */
  box-shadow: 0 8px 20px rgba(255, 128, 0, 0.35); 
}

.btn-orange:hover {
  background: linear-gradient(135deg, #e68800 0%, #e67300 100%);
  box-shadow: 0 10px 24px rgba(255, 128, 0, 0.45);
  transform: translateY(-2px);
}

/* Outlined White/Light-Blue Button (Contact Us) */
.btn-light-outline {
  background-color: #f4f8fb;
  color: #2c3e50;
  border: 1px solid #dce4ec;
}

.btn-light-outline:hover {
  background-color: #eaeff5;
  border-color: #cbd7e2;
  transform: translateY(-2px);
}


/* Responsive adjustment for Mobile screens */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}