.main {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

/* Hero Section with Animated Background */
.servicesSectionHeader {
  background-image: url("../Images/services/serviceBgSec1.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.servicesSectionHeader::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,170,108,0.2) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: floatAnimation 8s ease-in-out infinite;
}

.servicesSectionHeader::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1,152,155,0.15) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: floatAnimation 10s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(5deg); }
}

.servicesSectionHeader div {
  height: 100%;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.servicesHeaderText {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.servicesHeaderText p:first-child {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #00aa6c;
  background: rgba(255,255,255,0.9);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.servicesHeaderText p:last-child {
  font-weight: 700;
  font-size: 45px;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
}

.servicesHeaderDescription {
  padding: 0px 80px !important;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Vision Cards - Modern Grid Layout */
.mainSliderContainer {
  padding: 80px 40px;
  background: linear-gradient(to bottom, #f0fafb 0%, #ffffff 100%);
}

.mainSliderContainer .row {
  max-width: 1400px;
  margin: 0 auto;
}

.mainSliderContainer .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,138,144,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  height: 100%;
  position: relative;
}

.mainSliderContainer .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #01989b, #00aa6c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mainSliderContainer .card:hover::before {
  transform: scaleX(1);
}

.mainSliderContainer .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0,138,144,0.15);
}

.mainSliderContainer .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mainSliderContainer .card:hover .card-img-top {
  transform: scale(1.08);
}

.mainSliderContainer .card-body {
  padding: 30px;
}

.mainSliderContainer .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #01989b, #00aa6c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-text {
  color: #555 !important;
  line-height: 1.7;
  font-size: 1rem;
}

/* Why Choose Section - Glassmorphism Cards */
.my-5 {
  padding: 100px 40px;
  background: linear-gradient(135deg, #003f58 0%, #00697c 50%, #01989b 100%);
  position: relative;
  overflow: hidden;
}

.my-5::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.my-5 .job-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.my-5 .card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.my-5 .card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.my-5 .card:hover::after {
  opacity: 1;
}

.my-5 .card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.my-5 .card-body {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.my-5 .card-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.my-5 .card-text {
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.7;
}

/* Career Areas - Staggered Grid */
.career-section {
  background: white;
  padding: 100px 40px;
}

.career-section .text-center {
  margin-bottom: 60px;
}

.career-section .career-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.career-section .career-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
}

.career-section .career-button {
  background: linear-gradient(90deg, #01989b, #00aa6c);
  color: white;
  border: none;
  padding: 16px 48px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(1,152,155,0.3);
}

.career-section .career-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(1,152,155,0.4);
}

.career-section .card {
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8feff 0%, #ffffff 100%);
  box-shadow: 0 5px 30px rgba(0,138,144,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.career-section .card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #01989b, #00aa6c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.career-section .card:hover::before {
  transform: scaleX(1);
}

.career-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0,138,144,0.15);
}

.career-section .card-img-top {
  width: 64px;
  height: 64px;
  padding: 12px;
  background: linear-gradient(135deg, #01989b, #00aa6c);
  border-radius: 16px;
  margin: 0 auto;
}

.career-section .card-body {
  padding: 30px;
  text-align: center;
}

.text-gradient {
  /* background: linear-gradient(90deg, #01989b, #00aa6c); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Advantages Section - Horizontal Cards */
.background-color-class {
  background: linear-gradient(to right, #f0fafb 0%, #ffffff 50%, #f0fafb 100%);
  padding: 100px 40px;
}

.background-color-class h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
  position: relative;
}

.background-color-class h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #01989b, #00aa6c);
  border-radius: 2px;
}

.background-color-class .card {
  border: 2px solid #e0f5f5;
  border-radius: 16px;
  background: white;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.background-color-class .card:hover {
  border-color: #01989b;
  transform: translateX(10px);
  box-shadow: -5px 10px 30px rgba(0,138,144,0.12);
}

.background-color-class .card-header {
  /* background: linear-gradient(90deg, #01989b, #00aa6c); */
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 20px;
  border: none;
}

.background-color-class .card-body {
  padding: 25px;
}

.background-color-class .card-text {
  color: #555 !important;
  line-height: 1.7;
  font-size: 1rem;
}

/* Values Section - Floating Cards */
.mainOurValues {
  padding: 100px 80px;
  gap: 3rem;
  background: white;
}

.mainOurValues h2 {
  font-weight: 700;
  font-size: 2.8rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
}

.values-section {
  width: 100%;
  min-height: 420px;
}

.values-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.value-card {
  background: white;
  border-radius: 20px;
  width: 300px;
  min-height: 380px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0,138,144,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1,152,155,0.05) 0%, rgba(0,170,108,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.value-card:hover .value-icon {
  transform: scale(1.05);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.value-description {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
}

/* Tilt removed, hover scaling instead */
.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0,138,144,0.2);
  border-color: #01989b;
}

/* Job Section - Enhanced Filter Tabs */
.job-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f8feff 0%, #ffffff 100%);
}

.job-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

.job-description {
  color: #555;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.role-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.role-filter-btn {
  background-color: white;
  border: 2px solid #e0f5f5;
  color: #01989b;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.role-filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #01989b, #00aa6c);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 0;
}

.role-filter-btn span {
  position: relative;
  z-index: 1;
}

.role-filter-btn.active::before,
.role-filter-btn:hover::before {
  width: 300px;
  height: 300px;
}

.role-filter-btn.active,
.role-filter-btn:hover {
  color: white;
  border-color: #01989b;
}

.job-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.job-card {
  background-color: #ffffff;
  border: 2px solid #e0f5f5;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0,138,144,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #01989b, #00aa6c);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}

.job-card:hover::before {
  transform: scaleY(1);
}

.job-card h4 {
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a1a1a;
}

.job-card p:nth-of-type(1) {
  font-weight: 600;
  font-size: 1rem;
  color: #01989b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.job-card p:nth-of-type(2) {
  font-weight: 400;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: #01989b;
  box-shadow: 0 15px 45px rgba(0,138,144,0.15);
}

.apply-button {
  background: linear-gradient(89.79deg, #018147 2.82%, #008c9a 98%);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  width: fit-content;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(1,129,71,0.3);
}

.apply-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(1,129,71,0.4);
}

/* Apply Section */
.apply-section {
  padding: 80px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.how-to-apply div p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

.apply-email {
  color: #008a90;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.3rem;
}

.apply-list {
  padding-left: 30px;
}

.apply-list li {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.location-section p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
}

/* Footer with Subscribe */
.mainFooterImg {
  background-image: url("../Images/career/mainFooterImg.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 450px;
  width: 100%;
  position: relative;
}

.headFooterImg {
  height: 100%;
  min-height: 450px;
  gap: 2rem;
  background: linear-gradient(178.16deg, rgba(0,106,124,0.7) 13.25%, rgba(0,0,0,0.85) 68.38%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.mainFooterImg div p {
  font-weight: 700;
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  line-height: 1.5;
}

.subscribe-wrapper {
  display: flex;
  border-radius: 50px;
  width: 100%;
  max-width: 600px;
  height: 60px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: white;
}

.subscribe-input {
  flex: 1;
  border: none;
  padding: 0 30px;
  font-size: 1rem;
  color: #333;
  outline: none;
}

.subscribe-input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.subscribe-button {
  padding: 0 40px;
  border: none;
  background: linear-gradient(to right, #00703c, #008fa9);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-button:hover {
  background: linear-gradient(to right, #005c31, #007b94);
}

.how-to-apply a {
  color: #00697c !important;
  text-decoration: underline !important;
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1200px) and (min-width: 320px) {
  .main {
    gap: 3rem;
  }

  .servicesSectionHeader {
    background-image: url("../Images/services/mainServiceSec1Mob.png");
    height: auto;
    min-height: 600px;
    padding: 80px 20px;
  }

  .servicesSectionHeader div {
    gap: 0.5rem;
  }

  .servicesHeaderText p:first-child {
    font-size: 14px;
  }

  .servicesHeaderText p:last-child {
    font-size: 2rem;
  }

  .servicesHeaderDescription {
    font-size: 1rem;
    padding: 0px 20px !important;
  }

  .mainSliderContainer {
    padding: 60px 20px;
  }

  .mainSliderContainer .card-img-top {
    height: 180px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .my-5 {
    padding: 60px 20px;
  }

  .my-5 .job-title {
    font-size: 2rem;
  }

  .career-section {
    padding: 60px 20px;
  }

  .career-section .career-title {
    font-size: 2rem;
  }

  .career-section .career-description {
    font-size: 1rem;
  }

  .career-section .career-button {
    padding: 12px 32px;
    font-size: 1rem;
  }

  .background-color-class {
    padding: 60px 20px;
  }

  .background-color-class h1 {
    font-size: 2rem;
  }

  .mainOurValues {
    padding: 60px 20px;
  }

  .mainOurValues h2 {
    font-size: 2rem;
  }

  .value-card {
    width: 100%;
    max-width: 350px;
  }

  .job-section {
    padding: 60px 20px;
  }

  .job-title {
    font-size: 2rem;
  }

  .job-description {
    font-size: 1rem;
  }

  .role-filter-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .job-card {
    padding: 25px;
  }

  .job-card h4 {
    font-size: 1.2rem;
  }

  .apply-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .how-to-apply div p {
    font-size: 1rem;
  }

  .apply-email {
    font-size: 1.1rem;
  }

  .mainFooterImg div p {
    font-size: 1.2rem;
  }

  .subscribe-wrapper {
    width: 100%;
    height: 56px;
  }

  .subscribe-button {
    padding: 0 20px;
    font-size: 0.9rem;
  }
}