

.Hr-home-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #001F3F;
  overflow: hidden;
}

.Hr-home-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: -2;
}

.Hr-home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  z-index: -1;
}

.Hr-home-hero-content {
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}

.Hr-home-hero-text {
  width: 100%;
}

.Hr-home-hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  max-width: 800px;
  text-align: left;
  color: white;
}

.Hr-home-hero-text h1 span {
  color: #ff5e5e;
}

.Hr-home-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  text-align: left;
}

.Hr-home-buttons .Hr-home-btn {
  text-decoration: none;
  padding: 12px 24px;
  margin: 0 10px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  float: left;
}

.Hr-home-btn.Hr-home-primary {
  background-color: #ff5e5e;
  color: #000;
}

.Hr-home-btn.Hr-home-primary:hover {
  background-color: #00b3e6;
}

.Hr-home-btn.Hr-home-secondary {
  border: 2px solid #ff5e5e;
  color: #fff;
  background-color: transparent;
}

.Hr-home-btn.Hr-home-secondary:hover {
  background-color: #ff5e5e;
  color: #000;
}

.Hr-home-lottie {
  width: 800px;
  height: 800px;
  margin-top: 30px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .Hr-home-hero {
    height: auto;
    padding: 40px 20px;
  }

  .Hr-home-hero-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    text-align: left;
    padding: 0 10px;
  }

  .Hr-home-hero-text h1 {
    font-size: 2rem;
    width: 100%;
  }

  .Hr-home-hero-text p {
    font-size: 1rem;
  }

  .Hr-home-lottie {
    width: 250px;
    height: 250px;
    margin: 20px auto 0;
  }

  .Hr-home-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .Hr-home-buttons .Hr-home-btn {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .Hr-home-hero-text h1 {
    font-size: 1.5rem;
  }

  .Hr-home-lottie {
    width: 200px;
    height: 200px;
  }
}

/* Fade-in animations */
.Hr-home-fade-in {
  opacity: 0;
  animation: HrHomeFadeIn 1s ease forwards;
}

.Hr-home-delay-1 {
  animation-delay: 0.5s;
}

.Hr-home-delay-2 {
  animation-delay: 1s;
}

@keyframes HrHomeFadeIn {
  to {
    opacity: 1;
  }
}

/* About Us Section */
.Hr-home-aboutus {
  background-color: #f8f9fa;
  padding: 60px 20px;
  color: #333;
}

.Hr-home-aboutus-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.Hr-home-aboutus-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #001f3f;
}

.Hr-home-aboutus-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.Hr-home-aboutus-features {
  list-style: none;
  padding-left: 0;
}

.Hr-home-aboutus-features li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.Hr-home-aboutus-features span {
  color: #ff5e5e;
  font-size: 1.2rem;
  margin-right: 10px;
}

.Hr-home-aboutus-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Hr-home-aboutus-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .Hr-home-aboutus-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .Hr-home-aboutus-text {
    flex: 1;
    padding-right: 40px;
  }

  .Hr-home-aboutus-media {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .Hr-home-aboutus-title {
    font-size: 1.8rem;
  }

  .Hr-home-aboutus-intro {
    font-size: 1rem;
  }

  .Hr-home-aboutus-features li {
    font-size: 0.95rem;
  }
}

/* our services section */
.Hr-home-services {
  background: linear-gradient(to bottom, #eaf6ff, #ffffff);
  padding: 100px 20px;
  color: #001f3f;
}

.Hr-home-services-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.Hr-home-services-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  font-weight: 700;
  color: #003366;
}

.Hr-home-services-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.Hr-home-service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(0, 183, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 183, 255, 0.08);
  padding: 40px 25px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: scale(0.95) translateY(40px);
}

.Hr-home-service-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #002244;
}

.Hr-home-service-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.5;
}

.Hr-home-service-card a {
  color: #0077cc;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.Hr-home-service-card a:hover {
  color: #00bfff;
}

.Hr-home-service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 183, 255, 0.2);
}

/* Icon Container */
.Hr-home-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, #ffffff, #d7f1ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 183, 255, 0.1);
  transition: all 0.4s ease;
}

.Hr-home-service-icon img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 0 transparent);
  transition: filter 0.4s ease;
}

.Hr-home-service-card:hover .Hr-home-service-icon {
  box-shadow: 0 0 25px rgba(0, 183, 255, 0.4);
  background: linear-gradient(145deg, #e0f7ff, #c5f1ff);
}

.Hr-home-service-card:hover .Hr-home-service-icon img {
  filter: drop-shadow(0 0 10px #00bfff);
}

/* Scroll animation styling will be handled by JS */
/* CSS */
.Hr-about-section-container {
  /* background-color: #f2f2e9; */
  padding: 60px 20px;
  font-family: sans-serif;
  background: linear-gradient(45deg, #0039ff14, transparent);
}

.Hr-about-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  animation: fadeIn 1s ease-in;
}

.Hr-about-section-left {
  flex: 1 1 45%;
  position: relative;
}

.Hr-about-section-image {
  width: 100%;
  border-radius: 8px;
}

.Hr-about-section-experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.Hr-about-section-experience h2 {
  color: #ff4c1f;
  font-size: 32px;
  margin: 0;
}

.Hr-about-section-experience p {
  margin: 5px 0 0;
  font-size: 14px;
}

.Hr-about-section-right {
  flex: 1 1 45%;
}

.Hr-about-section-subtitle {
  color: #ff4c1f;
  font-weight: bold;
  margin-bottom: 10px;
}

.Hr-about-section-title {
  font-size: 32px;
  color: #183e2c;
  margin-bottom: 20px;
}

.Hr-about-section-description {
  color: #333;
  margin-bottom: 30px;
}

.Hr-about-section-points {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.Hr-about-section-point {
  flex: 1 1 45%;
}

.Hr-about-section-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.Hr-about-section-point h4 {
  margin: 0 0 5px;
  color: #183e2c;
}

.Hr-about-section-point p {
  margin: 0;
  color: #333;
  font-size: 14px;
}

.Hr-about-section-button {
  background-color: #4b00ff;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.Hr-about-section-button:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .Hr-about-section-wrapper {
    flex-direction: column;
  }

  .Hr-about-section-points {
    flex-direction: row;
  }

  .Hr-about-section-left, .Hr-about-section-right {
    flex: 1 1 100%;
  }

  .Hr-about-section-experience {
    left: 10px;
    bottom: 10px;
    padding: 15px 20px;
  }
}

.Hr-home-services-list {
  background-color: #f9f9f9;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background-image: url('https://corporatedekho.com/web_image/6256458.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Hr-home-services-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 25px;
  border-radius: 20px;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.889);
  backdrop-filter: blur(20px);

}

.Hr-home-column {
  flex: 1;
  min-width: 300px;
}

.Hr-home-column h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #003366;
}

.Hr-home-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Hr-home-column li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 10px;
  border-radius: 10px;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s;
}

.Hr-home-column li:hover {
  background-color: #eef6ff;
}

.Hr-home-column .icon {
  font-size: 24px;
  color: #007acc;
  min-width: 30px;
}

.Hr-home-column h4 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #004080;
}

.Hr-home-column p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .Hr-home-services-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}





/* risk planning section */
.Hr-home-risk-section {
  background: #ffffff;
  padding: 80px 20px;
}

.Hr-home-risk-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.Hr-home-risk-image {
  width: 40%;
}
.Hr-home-risk-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  float: right;
}

.Hr-home-risk-content {
  flex: 1;
  min-width: 300px;
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.6s ease;
}

.Hr-home-risk-content.visible {
  transform: translateX(0);
  opacity: 1;
}

.Hr-home-risk-subtitle {
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.Hr-home-risk-title {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 15px;
}

.Hr-home-risk-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.Hr-home-risk-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Hr-home-risk-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.Hr-home-risk-icon {
  font-size: 1.8rem;
  color: #007bff;
  margin-top: 5px;
}

.Hr-home-risk-point h4 {
  margin: 0 0 5px;
  color: #004080;
  font-size: 1.8rem;
}

.Hr-home-risk-point p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .Hr-home-risk-container {
    flex-direction: column;
  }

  .Hr-home-risk-content {
    transform: translateY(40px);
  }
  .Hr-home-risk-image {
    width: 100%;
    }
    .Hr-home-risk-image img {
    width: 100%;
    }

  .Hr-home-risk-content.visible {
    transform: translateY(0);
  }
}


.Hr-get-us-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #dce9ff;
      border: 1px solid #cadbf6;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      animation: Hr-get-us-fadeIn 1.5s ease-out;
      gap: 40px;
      width: 90%;
      margin: 70px auto;
    }

    @keyframes Hr-get-us-fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

    @keyframes Hr-get-us-slideInLeft {
      0% {
        transform: translateX(-100%);
      }
      100% {
          
      }
    }

    .Hr-get-us-left {
      flex: 1;
      animation: Hr-get-us-slideInLeft 1.2s ease;
    }

    .Hr-get-us-heading {
      font-size: 2.5rem;
      color: #333;
    }

    .Hr-get-us-subtext {
      font-size: 1.1rem;
      color: #555;
      margin-top: 10px;
      margin-bottom: 30px;
    }

    .Hr-get-us-button {
      background-color: #000;
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .Hr-get-us-button:hover {
      background-color: #333;
      transform: scale(1.05);
    }

    .Hr-get-us-right {
      flex: 1.5;
      animation: Hr-get-us-slideInRight 1.2s ease;
    }

    .Hr-get-us-feature {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      font-size: 1.1rem;
      color: #333;
      transition: transform 0.3s ease;
    }

    .Hr-get-us-feature:hover {
      transform: translateX(10px);
    }

    .Hr-get-us-icon {
      color: green;
      margin-right: 15px;
      font-size: 1.3rem;
    }

    /* Animations */
    @keyframes Hr-get-us-fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes Hr-get-us-slideInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes Hr-get-us-slideInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @media (max-width: 768px) {
        .Hr-get-us-container {
            margin: 20px auto;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
    
        .Hr-get-us-left, .Hr-get-us-right {
            width: 100%;
            text-align: center;
        }
    
        .Hr-get-us-heading {
            font-size: 2rem;
        }
    
        .Hr-get-us-subtext {
            font-size: 1rem;
        }
    
        .Hr-get-us-button {
            width: 100%;
            padding: 12px 20px;
        }
    
        .Hr-get-us-feature {
            justify-content: center;
            text-align: start;
        }
    }


    .Hr-about-section-how-it-works {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

/* .Hr-about-section-container {
  max-width: 1200px;
  margin: 0 auto;
} */

.Hr-about-section-subheading {
  color: #ff4c1f;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.Hr-about-section-heading {
  color: #183e2c;
  font-size: 28px;
  margin-bottom: 40px;
}

.Hr-about-section-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  gap: 30px;
}

.Hr-about-section-step {
  background-color: #f5f5f5;
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1 1 30%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.Hr-about-section-step:hover {
  transform: translateY(-5px);
}

.Hr-about-section-step-icon {
  width: 60px;
  height: 60px;
  background-color: #e7f2ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 18px;
  color: #183e2c;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.Hr-about-section-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #183e2c;
}

.Hr-about-section-step p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Dotted line arrows (optional visual) */
.Hr-about-section-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  border-top: 2px dotted #ccc;
  z-index: 0;
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .Hr-about-section-steps {
    flex-direction: column;
    align-items: center;
  }
  .Hr-about-section-steps::before {
    display: none;
  }
  .Hr-about-section-step {
    width: 100%;
    max-width: 500px;
  }
}

.Hr-home-contact-section {
  background: linear-gradient(to right, #e8f0ff, #f0f6ff);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.Hr-home-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.Hr-home-contact-form {
  flex: 1;
  min-width: 300px;
}

.Hr-home-contact-form h2 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 2rem;
}

.Hr-home-contact-subtext {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

.Hr-home-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Hr-home-contact-form input,
.Hr-home-contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fbff;
}

.Hr-home-contact-form input:focus,
.Hr-home-contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

.Hr-home-contact-form button {
  padding: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.Hr-home-contact-form button:hover {
  background-color: #0056b3;
}

.Hr-home-contact-cta {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-btn,
.callback-link {
  display: block;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #1da851;
}

.callback-link {
  background-color: #003366;
}

.callback-link:hover {
  background-color: #001d4a;
}

.Hr-home-contact-details {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.Hr-home-contact-details h3 {
  margin-bottom: 15px;
  color: #003366;
  font-size: 1.4rem;
}

.Hr-home-contact-details p {
  margin: 10px 0;
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .Hr-home-contact-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .Hr-home-contact-form,
  .Hr-home-contact-details {
    width: 100%;
  }
}

.Hr-why-choose-us {
  padding: 60px 20px;
}

.Hr-why-choose-us-container {
  max-width: 1200px;
  margin: auto;
}

.Hr-why-choose-us-content-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.Hr-why-choose-us-left-text {
   
}

.Hr-why-choose-us-tagline {
  color: #ff5722;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.Hr-why-choose-us-left-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.Hr-why-choose-us-right-text {
  margin-top: 10px;
  color: #555;
  width: 50%;
}

.Hr-why-choose-us-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.Hr-why-choose-us-feature-box {
   
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  width: calc(33.333% - 20px); /* Adjust for gaps */
}

.Hr-why-choose-us-feature-box:hover {
  transform: translateY(-5px);
}

.Hr-why-choose-us-icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #2d6a4f;
}

.Hr-why-choose-us-feature-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.Hr-why-choose-us-feature-box p {
  color: #666;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .Hr-why-choose-us-content-header {
    flex-direction: column;
    gap: 20px;
  }

  .Hr-why-choose-us-features {
    flex-direction: column;
  }
}



.contact_section_rcr_in {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_container_rcr_in {
    display: flex;
    width: 100%;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.contact_form_rcr_in {
    width: 60%;
    padding: 30px;
    background: white;
}

.contact_form_rcr_in h2 {
    color: #564a4a;
    margin-bottom: 20px;
    font-size: 30px;
}

.contact_form_rcr_in label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.input_rcr_in, .textarea_rcr_in {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    background: transparent;
}

.textarea_rcr_in {
    height: 80px;
    resize: none;
}

.checkbox_rcr_in {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.checkbox_rcr_in input {
    margin-right: 5px;
}

.checkbox_rcr_in a {
    color: #423e41;
    text-decoration: none;
}

.button_rcr_in {
    width: 40%;
    padding: 12px;
    background: #d1343e;
    color: white;
    border: none;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
}
.button_rcr_in:hover{
    background: #ffffff;
    color:#d1343e;
    border: 2px solid #d1343e;
    font-weight: 600;
}
.contact_info_rcr_in {
    background: #f8f9fc;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 8px solid rgb(241, 83, 83);
}

.contact_title_rcr_in {
    font-size: 22px;
    font-weight: bold;
    color: #0c1b50;
    margin-bottom: 20px;
}

.contact_grid_rcr_in {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact_item_rcr_in {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact_item_rcr_in:hover {
    transform: translateY(-5px);
}

.contact_icon_rcr_in {
    font-size: 30px;
    color: #0c1b50;
    margin-bottom: 10px;
}

.contact_item_rcr_in h3 {
    font-size: 18px;
    font-weight: bold;
    color: #0c1b50;
    margin-bottom: 5px;
}

.contact_item_rcr_in p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact_grid_rcr_in {
        grid-template-columns: 1fr;
    }
    .contact_info_rcr_in {
    padding: 1px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact_container_rcr_in {
        flex-direction: column;
    }
    
   
}

@media (max-width: 768px) {
    .contact_section_rcr_in {
        padding: 0px;
    }

    .contact_form_rcr_in {
        padding: 20px;
    }

    /* .contact_info_rcr_in {
        padding: 20px;
    } */
    .contact_form_rcr_in {
    width: 100%;
   }
    .button_rcr_in {
        font-size: 14px;
    }
    .Hr-why-choose-us-feature-box{
        width: 100%;
    }
    .Hr-why-choose-us-right-text{
       width: 100%; 
    }
}


    .HR-why-chooseus-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      max-width: 80%;
      margin: 50px auto;
    }

    .HR-why-chooseus-left {
      /* flex: 1 1 100%; */
      max-width: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: start;
    }

    .HR-why-chooseus-badge {
      display: inline-block;
      background: #f5edff;
      color: #c383f5;
      padding: 8px 20px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 30px;
      margin-bottom: 20px;
    }

    .HR-why-chooseus-heading {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .HR-why-chooseus-description {
      font-size: 18px;
      color: #555;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .HR-why-chooseus-btn {
      padding: 14px 30px;
      border-radius: 30px;
      background: linear-gradient(to right, #f15be5, #8263f8);
      color: #fff;
      border: none;
      font-weight: 600;
      cursor: pointer;
      font-size: 16px;
      text-decoration: none;
    }

    .HR-why-chooseus-right {
      width: 50%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .HR-why-chooseus-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .HR-why-chooseus-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    .HR-why-chooseus-icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #cb4cf1;
    }

    .HR-why-chooseus-card-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .HR-why-chooseus-card-desc {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .HR-why-chooseus-heading {
        font-size: 30px;
      }
      .HR-why-chooseus-container{
        padding: 15px;  
        flex-direction: column-reverse;
      }
      .HR-why-chooseus-description {
        font-size: 16px;
      }
      
    .HR-why-chooseus-right {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    }