/* servicesPage.css */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Centered Title */
  .services-centered-title {
    text-align: center;
    padding: 40px 0;
    background-color: #f8f9fa;
  }
  
  .services-centered-title h1 {
    font-size: 2.5rem;
    color: #1e266d;
  }
  
  /* Main Container */
  .services-container {
    min-height: 100vh;
    background-color: #f9fafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Banner Section */
  .services-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f7ff;
    padding: 2rem;
    flex-wrap: wrap;
    width: 100%;
    /* margin-top: 100px; */
  }
  
  .banner-left {
    flex: 1;
  }
  
  .banner-left h1 {
    font-size: 2.5rem;
    color: #1e266d;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  .breadcrumb {
    color: #555;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  
  .breadcrumb span:first-child {
    cursor: pointer;
    transition: color 0.15s ease;
  }
  
  .breadcrumb span:first-child:hover {
    color: #1e266d;
  }
  
  .banner-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .banner-image {
    width: 300px;
    height: 150px;
    border-radius: 0.5rem;
    object-fit: cover;
    margin-top: 1rem;
  }
  
  .banner-placeholder {
    width: 300px;
    height: 150px;
    background-color: #d3d3d3;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
  }
  
  /* Content Section */
  .services-content {
    padding: 2rem 0;
    width: 100%;
  }
  
  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
  }
  
  /* Services Main Content */
  .services-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #1e266d;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 4px rgba(30, 38, 109, 0.1);
  }
  
  .section-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-listing {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  /* Service Tiles Grid */
  .services-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-content: center;
    width: auto;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
  }
  
  .service-tile {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(30, 38, 109, 0.08),
                0 4px 20px rgba(30, 38, 109, 0.04);
    border: 1px solid rgba(30, 38, 109, 0.08);
    transition: all 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    will-change: transform, box-shadow;
  }
  
  .service-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(30, 38, 109, 0.15),
                0 5px 25px rgba(30, 38, 109, 0.08);
    border-color: rgba(30, 38, 109, 0.2);
  }
  
  .service-tile-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(
      135deg,
      rgba(30, 38, 109, 0.05) 0%,
      rgba(30, 38, 109, 0.02) 100%
    );
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
  }
  
  .service-tile:hover .service-tile-bg {
    transform: scale(1);
  }
  
  .service-tile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .service-logo-box {
    width: 45px;
    height: 25px;
    background: linear-gradient(135deg, #1e266d 0%, #2c3e8a 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 11px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(30, 38, 109, 0.3);
  }
  
  .service-logo-text {
    font-size: 13px;
    font-weight: bold;
    color: #1e266d;
    letter-spacing: 1px;
  }
  
  .service-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .service-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      135deg,
      rgba(30, 38, 109, 0.08) 0%,
      rgba(30, 38, 109, 0.15) 100%
    );
    border: 3px solid rgba(30, 38, 109, 0.1);
    transition: all 0.15s ease;
    color: #1e266d;
    will-change: transform, background, border-color, box-shadow;
  }
  
  .service-icon-circle i {
    font-size: 2rem; /* Increased from default size */
    transition: all 0.15s ease;
}
a{
  text-decoration: none;
}

.service-tile:hover .service-icon-circle i {
    color: white;
    transform: scale(1.1);
}
  
  .service-tile-title {
    font-size: 1.4rem;
    color: #1e266d;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color 0.15s ease;
  }
  
  .service-tile:hover .service-tile-title {
    color: #2c3e8a;
  }
  
  .service-tile-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .service-tile-button-container {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .service-tile-button {
    background: transparent;
    border: 2px solid #1e266d;
    color: #1e266d;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    will-change: transform, background, box-shadow;
  }
  
  .service-tile-button:hover {
    background: linear-gradient(135deg, #1e266d 0%, #2c3e8a 100%);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(30, 38, 109, 0.3);
  }

   
  /* Responsive Breakpoints */
  @media (max-width: 1200px) {
    .services-tiles-grid {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 1024px) {
    .services-tiles-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      justify-content: center;
      width: auto;
      max-width: 900px;
      padding: 0 2rem;
    }
    
    .content-wrapper {
      padding: 0 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .services-banner {
      flex-direction: column;
      text-align: center;
      margin-top: 0;
      padding: 2rem 1.5rem;
    }
  
    .banner-left {
      margin-bottom: 1.5rem;
    }
  
    .banner-left h1 {
      font-size: 2rem;
    }
  
    .banner-image {
      width: 100%;
      max-width: 300px;
      margin-top: 1rem;
    }
  
    .content-wrapper {
      padding: 0 1rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .section-description {
      font-size: 1rem;
      margin-bottom: 2rem;
      padding: 0 1rem;
    }
  
    .services-tiles-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      justify-content: center;
      width: auto;
      max-width: 400px;
      padding: 0 1rem;
    }
  
    .service-tile {
      padding: 1.5rem;
    }
  
    .service-icon-circle {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 480px) {
    .banner-left h1 {
      font-size: 1.75rem;
    }
  
    .section-title {
      font-size: 1.75rem;
    }
  
    .section-description {
      font-size: 0.95rem;
      padding: 0 0.5rem;
    }
  
    .services-content {
      padding: 1.5rem 0;
    }
  
    .content-wrapper {
      padding: 0 0.5rem;
    }
  
    .services-tiles-grid {
      gap: 1rem;
      padding: 0 0.5rem;
      justify-content: center;
      width: auto;
    }
  
    .service-tile {
      padding: 1.25rem;
      max-width: 100%;
    }
  
    .service-tile-title {
      font-size: 1.2rem;
    }
  
    .service-tile-description {
      font-size: 0.9rem;
    }
  
    .service-icon-circle {
      width: 70px;
      height: 70px;
    }
  
    .service-tile-bg {
      width: 120px;
      height: 120px;
    }
  
    .breadcrumb {
      font-size: 0.875rem;
    }
  }
  
  @media (max-width: 320px) {
    .services-tiles-grid {
      padding: 0 0.25rem;
      justify-content: center;
      width: auto;
    }
  
    .service-tile {
      padding: 1rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    .service-tile-title {
      font-size: 1.1rem;
    }
  }