    /* :root {
      --primary-color: #0578af;
      --secondary-color: #00d2ff;
      --accent-color: #0578af;
      --dark-color: #2d3748;
      --light-color: #f8f9fa;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f5f7ff;
    } */

    /* Animated Hero Section */
    /* .hero-section {
      background: linear-gradient(-45deg, #3a7bd5, #00d2ff, #3a7bd5, #00d2ff);
      background-size: 400% 400%;
      color: white;
      padding: 3rem 0 5rem;
      clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
      animation: gradientBG 15s ease infinite;
    } */

    /* @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    } */

    /* .hero-title {
      font-size: 2.25rem;
      line-height: 1.2;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    } */

    /* Job Cards */
    .job-card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      margin-bottom: 2rem;
      background: white;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .job-card-body {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .job-card-footer {
      background-color: #f9fafc;
      padding: 1rem 1.5rem;
      border-top: 1px solid #eee;
    }

    /* Job Type Badges */
    .job-type {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-right: 0.5rem;
    }

    .remote { background-color: #e3f2fd; color: #1976d2; }
    .full-time { background-color: #e8f5e9; color: #388e3c; }
    .contract { background-color: #fff8e1; color: #ffa000; }
    .internship { background-color: #f3e5f5; color: #8e24aa; }

    /* Filters */
    .filter-btn {
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      font-weight: 600;
      margin: 0.5rem;
      border-radius: 30px;
      padding: 0.5rem 1.5rem;
      transition: all 0.2s ease;
      min-width: 80px;
      text-align: center;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background-color: var(--primary-color);
      color: white;
    }

    /* Sections */
    .culture-section {
      background-color: white;
      padding: 4rem 0;
      margin: 4rem 0;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      display: block !important; /* Ensure always visible */
    }

    .testimonial-card {
      border-left: 4px solid var(--primary-color);
      background-color: white;
      padding: 1.5rem;
      margin: 1rem 0;
      border-radius: 0 8px 8px 0;
    }

    .job-department {
      font-weight: 600;
      color: var(--dark-color);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 3px solid var(--accent-color);
      font-size: 1.75rem;
    }

    /* Utilities */
    .job-salary { color: var(--primary-color); font-weight: 600; }
    .job-experience { color: #666; }
    .perk-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; }
    .apply-pulse { animation: pulse 2s infinite; }
    
    /* Locations */
    .location-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    
    .location-card:hover {
      transform: translateY(-5px);
    }
    
    .location-img {
      height: 180px;
      object-fit: cover;
    }
    
    .location-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: var(--primary-color);
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: bold;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(58, 123, 213, 0.4); }
      70% { box-shadow: 0 0 0 15px rgba(58, 123, 213, 0); }
      100% { box-shadow: 0 0 0 0 rgba(58, 123, 213, 0); }
    }

    /* Responsive Adjustments */
    @media (max-width: 767.98px) {
      .hero-title { font-size: 1.8rem; }
      .filter-btn { padding: 0.35rem 0.8rem; margin: 0.15rem; }
      .job-card-body { padding: 1.25rem; }
      .job-department { font-size: 1.5rem; }
      .perk-icon { font-size: 2rem; }
    }

    @media (min-width: 768px) {
      .hero-title { font-size: 3rem; }
      .hero-section { padding: 5rem 0; }
    }

    .culture-section {
      background-color: #f9f9f9;
      padding: 4rem 0;
      margin: 4rem 0;
      border-radius: 20px;
    }

    .feature-box {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #0579af1e;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .icon-box i {
      background-color: #e6f0ff;
      padding: 15px;
      border-radius: 50%;
      display: inline-block;
    }


    /* Benefits Section */

.benefits-section {

  background-color: #F0F9FF;

}
 
.benefit-box {

  border-radius: 12px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  /* border: 1px solid #e9ecef; */
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #0579af;


}

.benefit-box.active .benefit-content {
  transform: translateY(0);
  opacity: 1;
}

.benefit-box.active .benefit-icon i {
  transform: translateY(-20px);
}

 
.benefit-box:hover {

  transform: translateY(-5px);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

  background-color: white;

}
 
.benefit-icon i {

  color: var(--primary-color);

  background-color: rgba(5, 120, 175, 0.1);

  padding: 20px;

  border-radius: 50%;

  width: 80px;

  height: 80px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto;

  transition: all 0.3s ease;

}
 
.benefit-content {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 20px;

  background-color: white;

  transform: translateY(100%);

  transition: all 0.3s ease;

  opacity: 0;

}
 
.benefit-box:hover .benefit-content {
  transform: translateY(0);
  opacity: 1;

}
 
.benefit-box:hover .benefit-icon i {

  transform: translateY(-20px);

}
 
.benefit-description {

  margin: 0;

  color: #666;

}
 
@media (max-width: 767.98px) {

  .benefit-icon i {

    width: 70px;

    height: 70px;

    font-size: 2.5rem !important;

  }

  .benefit-box {

    min-height: 180px;

  }

   .benefit-box:hover .benefit-content {
    transform: none;
    opacity: 1;
  }
  .benefit-box:hover .benefit-icon i {
    transform: none;
  }

}
 




.hover-effect {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}


.team_member_details_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
 
  
  .funfact_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 115, 223, 0.6) !important;
  }
  
  .btn-primary:hover span:last-child {
    left: 100%;
  }


   /* Job Cards */
  .job-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: rgba(78, 115, 223, 0.3);
  }
  
  .job-card-body {
    padding: 25px;
    flex-grow: 1;
  }
  
  .job-card-footer {
    padding: 20px 25px;
    background: rgba(248, 249, 250, 0.8);
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  
  /* Department Headers */
  .department-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(78, 115, 223, 0.2);
  }
  
  .department-icon {
    font-size: 1.5rem;
    color: #4e73df;
    margin-right: 15px;
    background: rgba(78, 115, 223, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  .job-department {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
  }
  
  /* Job Badges */
  .job-badges {
    display: flex;
    gap: 8px;
  }
  
  .job-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
  }
  
  .job-badge.remote {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
  }
  
  .job-badge.full-time {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
  }
  
  .job-badge.internship {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
  }
  
  .job-badge.contract {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
  }
  
  /* Job Salary */
  .job-salary {
    font-weight: 600;
    color: #2c3e50;
  }
  
  /* Job Description */
  .job-description {
    color: #6c757d;
    line-height: 1.5;
  }
  
  /* Skill Tags */
  .job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .skill-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(78, 115, 223, 0.1);
    color: #4e73df;
    border-radius: 20px;
  }
  
  /* Job Meta */
  .job-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
  }
  
  /* Apply Button */
  /* .apply-btn {
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
  }
  
  
  */

.sky-btn {
  gap: 10px;
  line-height: 1;
  padding: 0 40px;
  font-size: 14px;
  overflow: hidden;
  font-weight: 600;
  transition: 300ms;
  position: relative;
  align-items: center;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  text-transform: uppercase;
  font-family: 'Axiforma SemiBold', sans-serif;
  color: var(--bs-white);
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  border-radius: var(--bs-border-radius-pill);
  width: 100%;
}

.sky-btn .sky-btn_icon {
  line-height: 1;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.sky-btn .sky-btn_label {
  position: relative;
  display: inline-block;
  padding: 23px 0 21px;
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.31, 1);
}

.sky-btn .sky-btn_label:before {
  top: 120%;
  left: 50%;
  width: 100%;
  display: block;
  position: absolute;
  content: attr(data-text);
  transform: translateX(-50%);
}

.sky-btn:hover {
  color: var(--bs-white);
  transform: translateY(-2px);
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  box-shadow: 0 10px 30px rgba(0, 68, 235, 0.26);
}

.sky-btn:hover .sky-btn_label {
  transform: translateY(-81%);
}

  /* Filter Buttons */
  .filter-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid #dee2e6;
    background: white;
    color: #495057;
    transition: all 0.3s ease;
    margin: 5px;
    display: flex;
    align-items: center;
  }
  
  .filter-btn:hover, .filter-btn.active {
    background: #4e73df;
    color: white;
    border-color: #4e73df;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.2);
  }
  
  /* Benefit Boxes */
  .benefit-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #0579af36;
  }
  
  .benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  /* CTA Box */
  .cta-box {
    overflow: hidden;
    position: relative;
  }
  
  .cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  }
  
  .cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  }
  
  .hover-effect {
    position: relative;
    overflow: hidden;
  }
  
  .hover-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
    transition: all 0.3s ease;
  }
  
  .hover-effect:hover::after {
    left: 100%;
  }


  /* Color change of Background of career page */
  .benefits-section{
    background: #F0F9FF;
  }
  .client_logo_section{
    /* background: #F5F7FF; */

  }  


  /* No Job Openings */
  @keyframes smoothPulse {
    0%, 100% {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
    25% {
      transform: scale(1.05) translateY(-5px);
    }
    50% {
      transform: scale(1.1) translateY(0);
      opacity: 0.9;
    }
    75% {
      transform: scale(1.05) translateY(-3px);
    }
  }

  .icon-pulse-s {
    color: #0578af;
    animation: smoothPulse 3s infinite ease-in-out;
    display: inline-block;
    text-shadow: 0 4px 12px rgba(5, 120, 175, 0.2);
  }

  .refresh-btn {
    background-color: #0578af;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 24px;
  }

  .refresh-btn:hover {
    background-color: #04608f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .refresh-btn:active {
    transform: translateY(0);
  }
/*  */