.hrms-hero-light {
  background: #f9fafc;
  padding: 100px 20px;
  color: #333;
}

/* Container */
.hrms-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}



.hrms-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.hrms-heading span {
  color: #125266; /* HRMS highlight */
}

.hrms-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  color: #555;
}

/* Buttons */
.hrms-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #125266;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #125266;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #125266;
  padding: 12px 28px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  /* background: #125266; */
  color: #fff;
  transform: translateY(-3px);
}

/* Right Image */
.hrms-illustration {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {

  animation: float 3s ease-in-out infinite;
}

.glass-card img {
  max-width: 100%;
  height: auto;
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hrms-container {
    flex-direction: column;
    text-align: center;
  }

  .hrms-buttons {
    justify-content: center;
  }
}

.hrms-section {
  padding: 40px 20px;
  text-align: center;
}

.hrms-section h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
  position: relative;
}

.hrms-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.symbol-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.card-text {
  font-size: 18px;
  margin-bottom: 10px;
  color: #444;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.hrms-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.hrms-feature img {
  width: 100%;
  max-width: 500px;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.feature-image {
  width: 500px;
}

/* Responsive */
@media (max-width: 900px) {
  .hrms-feature {
    flex-direction: column;
    text-align: center;
  }
  .feature-text {
    margin-top: 20px;
  }
}

@media (max-width: 426px) {
  .feature-image {
    width: 300px;
  }
}

.feature-area {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.feature-area h2 {
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #222;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.feature-box {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 44px;
  /* background: linear-gradient(135deg, #007bff, #00c6ff); */
  color: #fff;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 70px auto;
  padding: 20px;
  text-align: center;
}

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.contact-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2563eb;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.contact-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
