
  .container_rr_in {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .heading_rr_in {
    color: #064663;
    font-size: 20px;
  }

  .text_rr_in {
    color: #333;
    font-size: 14px;
  }

  .list_rr_in {
    padding-left: 20px;
  }

  .list_item_rr_in {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .subheading_rr_in {
    color: #031c38;
    font-size: 17px;
  }

  /* ____single job page _____ */

  .job-listing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: auto;
    margin-top: 20px;
  }

  .job-listing-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    flex: 2;
    min-width: 300px;
  }

  .job-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .job-listing-logo {
    border: 2px solid #80808029;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .job-listing-info {
    margin-top: 10px;
    color: #555;
  }

  .job-listing-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }

  .apply-button {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .apply-button:hover {
    background: #0056b3;
  }

  .save-button {
    background: #eaeaea;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .job-listing-highlights {
    margin-top: 20px;
  }

  .job-listing-highlights ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
  }

  /* Related Jobs */
  .related-jobs-container {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
  }

  .related-job-card {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 14px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .job-listing-container {
      flex-direction: column;
    }

    .related-jobs-container {
      width: 100%;
    }
  }

  /* __________________-searched page ____________________________ */

  /* General Styles */
  body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
  }

  .rcr_in_container {
    display: flex;
    gap: 40px;
    padding: 20px;
  }

  /* Sidebar */
  .rcr_in_sidebar {
    width: 30%;
    height: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  .rcr_in_sidebar h2 {
    color: #030332;
    font-size: 25px;
  }
  .rcr_in_filter_section {
    margin-bottom: 20px;
  }

  .rcr_in_filter_section h3 {
    margin-bottom: 10px;
    color: #a60707;
    font-size: 20px;
  }

  /* Main Job Listings */
  .rcr_in_main_content {
    width: 55%;
  }

  /* Job Card Design */
  .rcr_in_job_card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    position: relative;
  }

  .rcr_in_job_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .rcr_in_company_logo img {
    width: 50px;
    height: 50px;
    border-radius: 19%;
    border: 1px solid;
  }

  .rcr_in_job_title {
    font-size: 18px;
    font-weight: bold;
  }

  .rcr_in_company_name {
    color: #666;
    font-size: 14px;
  }

  .rcr_in_job_details {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    margin-top: 10px;
  }

  .rcr_in_job_details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #444;
  }

  .rcr_in_job_skills {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
  }

  .rcr_in_job_skills span {
    background: #e9f5ff;
    padding: 5px 8px;
    border-radius: 5px;
    margin-right: 5px;
  }

  .rcr_in_save_btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 14px;
    cursor: pointer;
    color: #666;
  }
  /*______________media__query___________________________*/
  @media (max-width: 1024px) {
    /* Tablets */
    .rcr_in_container {
      flex-direction: column;
      padding: 15px;
    }

    .rcr_in_sidebar {
      width: 100%;
      padding: 15px;
    }

    .rcr_in_main_content {
      width: 100%;
    }

    .rcr_in_job_card {
      padding: 15px;
    }
  }

  @media (max-width: 768px) {
    /* Mobile */
    .rcr_in_sidebar {
      padding: 10px;
    }

    .rcr_in_sidebar h2 {
      font-size: 20px;
    }

    .rcr_in_filter_section h3 {
      font-size: 18px;
    }

    .rcr_in_filter_section label {
      font-size: 14px;
    }

    .rcr_in_main_content {
      padding: 10px;
    }

    .rcr_in_job_card {
      padding: 10px;
    }

    .rcr_in_job_title {
      font-size: 16px;
    }

    .rcr_in_company_name {
      font-size: 12px;
    }

    .rcr_in_job_details {
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12px;
    }

    .rcr_in_job_skills span {
      font-size: 12px;
      padding: 4px 6px;
    }

    .rcr_in_save_btn {
      font-size: 12px;
      right: 10px;
      bottom: 10px;
    }
  }

  .hide-mobile {
    display: block;
  }
  .hide-laptop {
    display: none;
  }
  .main {
    padding: 0px 9rem;
    margin: 0px;
  }
  @media (max-width: 768px) {
    /* Small mobile screens */
    .main {
      padding: 0px 0rem;
    }
    .hide-mobile {
      display: none;
    }
    .hide-laptop {
      display: block;
    }
    .rcr_in_container {
      padding: 10px;
    }

    .rcr_in_sidebar {
      padding: 8px;
      display: none;
    }

    .rcr_in_filter_section h3 {
      font-size: 16px;
    }

    .rcr_in_filter_section label {
      font-size: 13px;
    }

    .rcr_in_job_card {
      padding: 8px;
    }

    .rcr_in_job_title {
      font-size: 14px;
    }

    .rcr_in_company_name {
      font-size: 11px;
    }

    .rcr_in_job_details {
      flex-wrap: wrap;
      font-size: 11px;
    }

    .rcr_in_job_skills span {
      font-size: 11px;
      padding: 3px 5px;
    }

    .rcr_in_save_btn {
      font-size: 11px;
    }
  }
  /*__________________filter _________________*/
  /* Hide the sort_menu by default */
  .sort_mobile-sort_menu {
    display: none;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  /* Show the sort_menu only on sort_mobile screens */
  @media (max-width: 768px) {
    .sort_mobile-sort_menu {
      display: flex;
      justify-content: end;
      flex-wrap: wrap; /* Allows buttons to wrap to the next line */
      /* Space between buttons */
    }

    .sort_menu-item {
      width: 50%;
      /* flex: 1 1 calc(50% - 10px); Each button takes half the width minus gap */
      display: flex;
      align-items: center;
      justify-content: center;
      /*background-color: #f4f4f4;*/
      /*border: 1px solid #ddd;*/
      border-radius: 8px;
      padding: 5px;
      font-size: 14px;
      text-align: center;
      /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
      cursor: pointer;
    }

    .sort_menu-item:hover {
      background-color: #eaeaea;
    }

    .sort_menu-item i {
      margin-right: 5px;
    }
  }
  .hide-on-mobile {
    display: block; /* Default: Show on larger screens */
  }

  @media (max-width: 768px) {
    .hide-on-mobile {
      display: none; /* Hide on screens smaller than 768px */
    }
    .custom_side-menu.active {
      top: 30px;
    }
  }

/* ___________________-reset passowrd________________ */
  
.HR-Login-container {
            
            margin: 50px auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
        }
        .HR-Login-left {
            flex: 1;
            padding: 20px;
        }
        .HR-Login-right {
            flex: 1;
            padding: 30px;
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.216);
            border-radius: 20px;
            border-top: 3px solid #4000ff;
        }
        .HR-Login-form input {
            margin-bottom: 10px;
        }
        .HR-Login-btn {
            width: 100%;
            background: #5a67d8;
            border: none;
            padding: 10px;
            color: #fff;
            border-radius: 5px;
            transition: 0.3s;
        }
        .HR-Login-btn:hover {
            background: #434190;
        }
        .HR-Login-register-btn {
            background: red;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
            text-decoration: none;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .HR-Login-container {
                flex-direction: column;
                text-align: center;
            }
            .HR-Login-right {
            flex: 1;
            padding: 20px;
            width: 100%;
        }
        .HR-Login-form{
            display: flex;
            flex-direction: column;
            align-items: start;
        }
        }
/* _________________-registration page________________ */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f8f9fa;
  padding: 20px;
}

.container_rc {
  display: flex;
  gap: 20px;
  max-width: 1100px;
}

.left-section {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card {
    border-radius: 10px !important;
    border-top: 5px solid darkblue;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.info-image {
  width: 100%;
  max-width: 180px;
  margin-bottom: 15px;
}

.info-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.info-card li {
  margin: 8px 0;
  font-size: 14px;
  color: #666;
}

.right-section {
  width: 65%;
}

.register-card {
    border-top: 5px solid darkblue;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.register-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.register-card h4 strong {
  color: #ff3b3b;
}

.subtext {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
  display: block;
}

.register-form {
  margin-top: 10px;
  text-align: left;
}

.register-form label {
  display: block;
  font-weight: 600;
  margin: 10px 0 5px;
  font-size: 14px;
  color: #333;
}

.register-form input, 
.register-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease-in-out;
}

.register-form input:focus, 
.register-form textarea:focus {
  border-color: #5667f7;
  box-shadow: 0 0 5px rgba(86, 103, 247, 0.5);
}

.register-form textarea {
  resize: vertical;
  min-height: 60px;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  align-items: center;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.radio-group input {
  width: auto;
}

.register-btn {
  width: 100%;
  padding: 12px;
  background: #5667f7;
  color: white;
  border: none;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.register-btn:hover {
  background: #4557e6;
}

.login-link {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.login-link a {
  color: #5667f7;
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

.or-divider {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin: 10px 0;
}
.error {
        color: red;
        font-size: 12px;
        display: block;
        margin-top: 3px;
      }
.frm_reg
{
    border-radius: 10px !important;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
@media screen and (max-width: 1024px) {
  .container_rc {
    flex-direction: column;
    align-items: center;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .info-card {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 10px;
  }

  .register-card {
    padding: 20px;
  }

  .register-form input,
  .register-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .register-btn {
    font-size: 14px;
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .container_rc {
    gap: 10px;
  }

  .info-card h5 {
    font-size: 16px;
  }

  .info-card ul {
    font-size: 12px;
  }

  .register-card h4 {
    font-size: 18px;
  }

  .subtext {
    font-size: 12px;
  }

  .register-form label {
    font-size: 12px;
  }

  .register-form input,
  .register-form textarea {
    padding: 8px;
    font-size: 12px;
  }

  .register-btn {
    font-size: 12px;
    padding: 8px;
  }

  .login-link {
    font-size: 12px;
  }
}

/* ________________privacy policy____________________ */
.container_rr_in {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.heading_rr_in {
    color: #064663;
    font-size: 20px;
}

.text_rr_in {
    color: #333;
    font-size: 14px;
}

.list_rr_in {
    padding-left: 20px;
}

.list_item_rr_in {
    margin-bottom: 10px;
    font-size: 14px;
}

.subheading_rr_in {
    color: #031c38;
    font-size: 17px;
}

/* _________________login page____________________ */

.HR-Login-container {
            
            margin: 50px auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
        }
        .HR-Login-left {
            flex: 1;
            padding: 20px;
        }
        .HR-Login-right {
            flex: 1;
            padding: 30px;
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.216);
            border-radius: 20px;
            border-top: 3px solid #4000ff;
        }
        .HR-Login-form input {
            margin-bottom: 10px;
        }
        .HR-Login-btn {
            width: 100%;
            background: #5a67d8;
            border: none;
            padding: 10px;
            color: #fff;
            border-radius: 5px;
            transition: 0.3s;
        }
        .HR-Login-btn:hover {
            background: #434190;
        }
        .HR-Login-register-btn {
            background: red;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
            text-decoration: none;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .HR-Login-container {
                flex-direction: column;
                text-align: center;
            }
            .HR-Login-right {
            flex: 1;
            padding: 20px;
            width: 100%;
        }
        .HR-Login-form{
            display: flex;
            flex-direction: column;
            align-items: start;
        }
        }

/* __________________-home page____________________ */
.HR-services-job-placement img{
    border-radius: 25px;
    box-shadow: 0px 0px 10px #0000003d;
    width: 100%;
}

/*web_image/job.png*/

.HR-services-insurance-plan img{
    border-radius: 25px;
    box-shadow: 0px 0px 10px #0000003d;
    width: 100%;
}

.HR-services-finance-plan img{
    border-radius: 25px;
    box-shadow: 0px 0px 10px #0000003d;
    width: 100%;
}
.HR-search-form{
    width: 100%;
}
.btn.dropdown-toggle::after {
    display: none !important;
}

.TB-container {
            padding: 30px;
            border-radius: 10px;
            width: 95%;
            height: 80vh;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-image: url("web_image/WELCOME_TO_Corporate_Dekho_EMPLOYMENT_CORNER.png");
            background-position: center;
            background-size: cover;
        }
        .TB-container h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            text-align: center;
        }
        .TB-highlight {
            color: #ff0000;
        }
        .TB-highlight-alt {
            color: white;
        }
        .TB-container h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 10px 0;
        }
        .TB-subtitle {
            font-size: 1.1rem;
            margin: 15px 0;
            color: white;
            text-align: center;
        }
        .TB-btn {
            display: inline-block;
            padding: 12px 25px;
            background: #6C63FF;
            border: none;
            border-radius: 25px;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
        }
        .TB-btn:hover {
            background: #5548E7;
        }
        .pdeve{
            width: 80px;
        }
        .industy_scroll{
            text-align: end;
            color: white;
            margin-top: 15px;
            display: none;
        }
        @media (max-width: 768px) {
              .TB-container h1 {
            font-size: 1.5rem;
          
        }
          .pdeve{
            width: 50px;
        }
        .TB-container {
            height: 60vh;
            }
        .industy_scroll{
          display: block;  
            }
        }
/* _____________________forgot password______________________ */
.HR-Login-container {
            
            margin: 50px auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
        }
        .HR-Login-left {
            flex: 1;
            padding: 20px;
        }
        .HR-Login-right {
            flex: 1;
            padding: 30px;
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.216);
            border-radius: 20px;
            border-top: 3px solid #4000ff;
        }
        .HR-Login-form input {
            margin-bottom: 10px;
        }
        .HR-Login-btn {
            width: 100%;
            background: #5a67d8;
            border: none;
            padding: 10px;
            color: #fff;
            border-radius: 5px;
            transition: 0.3s;
        }
        .HR-Login-btn:hover {
            background: #434190;
        }
        .HR-Login-register-btn {
            background: red;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
            text-decoration: none;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .HR-Login-container {
                flex-direction: column;
                text-align: center;
            }
            .HR-Login-right {
            flex: 1;
            padding: 20px;
            width: 100%;
        }
        .HR-Login-form{
            display: flex;
            flex-direction: column;
            align-items: start;
        }
        }

/* _____________________________FAQ______________________ */
.heading-container {
            text-align: center;
            margin-top: 20px;
        }
    
        .main-heading {
            font-size: 28px;
            font-weight: bold;
            color: #064663;
        }
    
        .sub-heading {
            font-size: 20px;
            color: #333;
            margin-top: 5px;

        }
        @media (max-width: 768px) { 
    .main-heading {
        font-size: 24px;
    }

    .sub-heading {
        font-size: 18px;
    }
}

@media (max-width: 576px) { 
    .main-heading {
        font-size: 20px;
    }

    .sub-heading {
        font-size: 16px;
    }
}
/* _________________img_________________________ */
.image-container {
        text-align: center;
        margin-top: 20px;
    }

    .responsive-img {
        width: 100%;
        max-width: 500px; /* Limits the image size */
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Responsive for mobile and tablet */
    @media (max-width: 768px) { 
        .responsive-img {
            max-width: 400px;
        }
    }

    @media (max-width: 576px) { 
        .responsive-img {
            max-width: 300px;
        }
    }

        /* first */
        .faq-container_js {
            
            margin: auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .accordion-button_js {
            font-weight: bold;
            color: #064663;
            background-color: #f8f9fa;
        }

        .accordion-button_js:hover {
            background-color: #e0f7fa;
        }

        .accordion-body_js {
            font-size: 15px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) { 
            .faq-container_js {
                padding: 20px 15px;
            }

            .accordion-button_js {
                font-size: 14px;
                padding: 12px;
            }

            .accordion-body_js {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) { 
            .faq-container_js {
                padding: 15px;
                border-radius: 8px;
            }

            h2 {
                font-size: 22px;
            }

            .accordion-button_js {
                font-size: 13px;
                padding: 10px;
            }

            .accordion-body_js {
                font-size: 13px;
            }
        }
       /* second */

       .faq-container_rc_in {
            
            margin: auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .accordion-button_rc_in {
            font-weight: bold;
            color: #040438;
            background-color: #f8f9fa;
        }

        .accordion-button_rc_in:hover {
            background-color: #e9ecef;
        }

        .accordion-body_rc_in {
            font-size: 15px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) { 
            .faq-container_rc_in {
                padding: 20px 15px;
            }

            .accordion-button_rc_in {
                font-size: 14px;
                padding: 12px;
            }

            .accordion-body_rc_in {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) { 
            .faq-container_rc_in {
                padding: 15px;
                border-radius: 8px;
            }

            h2 {
                font-size: 22px;
            }

            .accordion-button_rc_in {
                font-size: 13px;
                padding: 10px;
            }

            .accordion-body_rc_in {
                font-size: 13px;
            }
        }
       /* third */
       body {
            font-family: Arial, sans-serif;
            background-color: #f8f9fa;
        }

        .faq-container {
            margin: auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .accordion-button {
            font-weight: bold;
            color: #040438;
            background-color: #f8f9fa;
        }

        .accordion-button:hover {
            background-color: #e9ecef;
        }

        .accordion-body {
            font-size: 15px;
        }
       
        /* Responsive Styles */
@media (max-width: 768px) { 
    .faq-container {
        padding: 20px 15px;
    }
}
/*strong{*/
/*    color: red;*/
/*}*/
/* ___________________emp registration____________________ */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f8f9fa;
  padding: 20px;
}

.container_rc {
  display: flex;
  gap: 20px;
  max-width: 1100px;
}

.left-section {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card {
    border-radius: 10px !important;
    border-top: 5px solid darkblue;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.info-image {
  width: 100%;
  max-width: 180px;
  margin-bottom: 15px;
}

.info-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.info-card li {
  margin: 8px 0;
  font-size: 14px;
  color: #666;
}

.right-section {
  width: 65%;
}

.register-card {
    border-top: 5px solid darkblue;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.register-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.register-card h4 strong {
  color: #ff3b3b;
}

.subtext {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
  display: block;
}

.register-form {
  margin-top: 10px;
  text-align: left;
}

.register-form label {
  display: block;
  font-weight: 600;
  margin: 10px 0 5px;
  font-size: 14px;
  color: #333;
}

.register-form input, 
.register-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease-in-out;
}

.register-form input:focus, 
.register-form textarea:focus {
  border-color: #5667f7;
  box-shadow: 0 0 5px rgba(86, 103, 247, 0.5);
}

.register-form textarea {
  resize: vertical;
  min-height: 60px;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  align-items: center;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.radio-group input {
  width: auto;
}

.register-btn {
  width: 100%;
  padding: 12px;
  background: #5667f7;
  color: white;
  border: none;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.register-btn:hover {
  background: #4557e6;
}

.login-link {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.login-link a {
  color: #5667f7;
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

.or-divider {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin: 10px 0;
}
.error {
        color: red;
        font-size: 12px;
        display: block;
        margin-top: 3px;
      }
.frm_reg
{
    border-radius: 10px !important;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
@media screen and (max-width: 1024px) {
  .container_rc {
    flex-direction: column;
    align-items: center;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .info-card {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 10px;
  }

  .register-card {
    padding: 20px;
  }

  .register-form input,
  .register-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .register-btn {
    font-size: 14px;
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .container_rc {
    gap: 10px;
  }

  .info-card h5 {
    font-size: 16px;
  }

  .info-card ul {
    font-size: 12px;
  }

  .register-card h4 {
    font-size: 18px;
  }

  .subtext {
    font-size: 12px;
  }

  .register-form label {
    font-size: 12px;
  }

  .register-form input,
  .register-form textarea {
    padding: 8px;
    font-size: 12px;
  }

  .register-btn {
    font-size: 12px;
    padding: 8px;
  }

  .login-link {
    font-size: 12px;
  }
}


/* _______________________about us____________________ */

.about-section_rcr_in {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: rgb(191 223 233 / 13%);
}
/*strong{*/
/*    color:red;*/
/*}*/
.about-container_rcr_in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
   
}

.text-content h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.light-text {
    color: #3f3e3e;
    font-weight: 600;
    font-size: 50px;
}

.bold-text {
    color: #020f3f;
    font-weight: 800;
    font-size: 55px;
}

.image-content_rcr_in img {
    max-width: 400px; /* Adjust size as needed */
    height: auto;
}
/*________________________secondsection_css_____________ */
/* Mission Section */
.mission-section_rcr_in {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #f9f9f9;
    font-family: sans-serif;
}

/* Container */
.mission-container_rcr_in {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 90%;
}

/* Image Section */
.mission-image_rcr_in {
    flex: 1;
    padding-right: 30px;
}

.mission-image_rcr_in img {
    width: 100%;
    height: 65vh;
    border-left: 5px solid rgb(241 83 83);
    border-bottom: 5px solid rgb(6 3 73);
    border-radius: 25px;
}

/* Text Section */
.mission-text_rcr_in {
    flex: 1;
}

.mission-title-light_rcr_in {
    font-size: 2.5rem;
    color: red;
    font-weight: 900;
    margin-bottom: 20px;
}

.mission-title-bold_rcr_in {
    font-size: 2rem;
    color: #807676;
    font-weight: 800;
    margin-top: -10px;
}

.mission-description_rcr_in {
    font-size: 1rem;
    color: #746f6f;
    line-height: 1.6;
    margin-bottom: 15px;
}

 li{
    list-style-type: style diamond;
    color: #555;
 }
 /* _________third_section________________ */
 .rabout-section_rcr_in {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.rabout-container_rcr_in {
    display: flex;
     align-items: center;
    gap: 20px;
    width: 100%;
}

.image-container_rcr_in {
    position: relative;
    left: 8%;
    bottom:140px;
    width: 30%;
    height: 380px;
    animation: rotateAnimation 6s infinite ease-in-out;  
}
    @keyframes rotateAnimation {
            0% { transform: rotate(0deg); }
            50% { transform: rotate(5deg); } /* Slight tilt */
            100% { transform: rotate(0deg); }
        }

.circle-orange_rcr_in {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: orange;
    border-radius: 50%;
    top: 10px;
    left: 60px;
    z-index: 1;
}

.circle-gray_rcr_in {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    left: 10px;
    top: 20px;
    z-index: 2;
    background-image: url("https://corporatedekhoventure.com/web_image/beautiful-curly-girl-pointing-finger.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.rabout-text_rcr_in {
    width: 70%;
    flex: 1;
    margin-left: 20px;
    padding: 40px 30px;
    border-top: 5px solid rgb(241, 83, 83);
    border-right: 5px solid rgb(6, 3, 73);
    border-radius: 25px;
}

.rabout-text_rcr_in h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.rabout-text_rcr_in p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ul_rcr_in {
    padding-left: 20px;
}

.li_rcr_in {
    font-size: 18px;
    font-weight: bold;
    color: #c83737;
    margin-bottom: 10px;
}

.ull_rcr_in {
    padding-left: 15px;
    font-weight: 400;
}

.lil_rcr {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 5px;
}
/* ______forth_css______ */
.team_section_new {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
}

.container_team_new {
    width: 80%;
    margin: auto;
}

.team_heading_new {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.team_text_outline_new {
    font-size: 40px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px #bbb;
    display: block;
}

.team_grid_new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.team_member_new {
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team_member_new img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team_info_new {
    padding: 15px;
}

.team_name_new {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.team_role_new {
    font-size: 14px;
    color: #777;
}
/* Responsive Styles */
/* Tablet Screens (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .about-container_rcr_in {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
        width: 100%;
    }

    .text-content h2 {
        font-size: 2rem; /* Reduce font size */
    }

    .light-text {
        font-size: 25px;
    }

    .bold-text {
        font-size: 28px;
    }

    .image-content_rcr_in img {
        max-width: 80%; /* Reduce image size */
        height: auto;
        margin-bottom: 20px;
    }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .about-section_rcr_in {
        padding: 30px 0;
    }

    .about-container_rcr_in {
        width: 100%;
        padding: 0 15px; /* Add padding for better spacing */
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .light-text {
        font-size: 25px;
    }

    .bold-text {
        font-size: 28px;
    }

    .image-content_rcr_in img {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .contact_info_rcr_in {
    padding: 1px;
    }
}
/* second */

/* Tablet Screens (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .mission-container_rcr_in {
        flex-direction: column; /* Stack content vertically */
        text-align: left; /* Keep text left-aligned */
        width: 90%;
    }

    .mission-image_rcr_in {
        padding-right: 0;
        margin-bottom: 20px; /* Space between image and text */
    }

    .mission-image_rcr_in img {
        width: 80%;
        height: auto;
        border-left: 3px solid rgb(241 83 83);
        border-bottom: 3px solid rgb(6 3 73);
        border-radius: 20px;
    }

    .mission-text_rcr_in {
        width: 100%;
    }

    .mission-title-light_rcr_in {
        font-size: 2rem;
        text-align: left;
    }

    .mission-title-bold_rcr_in {
        font-size: 1.7rem;
        text-align: left;
        margin-top: -5px;
    }

    .mission-description_rcr_in {
        font-size: 0.95rem;
        text-align: left;
    }

    li {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .mission-section_rcr_in {
        padding: 30px 15px;
    }

    .mission-container_rcr_in {
        width: 100%;
        padding: 0 15px;
    }

    .mission-image_rcr_in img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .mission-text_rcr_in {
        width: 100%;
    }

    .mission-title-light_rcr_in {
        font-size: 1.8rem;
        text-align: left;
    }

    .mission-title-bold_rcr_in {
        font-size: 1.5rem;
        text-align: left;
    }

    .mission-description_rcr_in {
        font-size: 0.9rem;
        text-align: left;
    }

    li {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* third */
/* Tablet Screens (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .rabout-container_rcr_in {
        flex-direction: column-reverse; /* Move image below text */
        text-align: left;
        width: 90%;
    }

    .image-container_rcr_in {
        position: relative;
        left: 0;
        bottom: 0;
        width: 50%;
        height: 300px;
        margin: 20px auto 0; /* Added margin for better spacing */
    }

    .circle-orange_rcr_in {
        width: 150px;
        height: 150px;
        top: 10px;
        left: 30px;
    }

    .circle-gray_rcr_in {
        width: 200px;
        height: 200px;
        left: 5px;
        top: 15px;
    }

    .rabout-text_rcr_in {
        width: 100%;
        padding: 30px 20px;
    }

    .rabout-text_rcr_in h2 {
        font-size: 28px;
        text-align: left;
    }

    .rabout-text_rcr_in p {
        font-size: 15px;
        text-align: left;
    }

    .li_rcr_in {
        font-size: 16px;
        text-align: left;
    }

    .lil_rcr {
        font-size: 14px;
        text-align: left;
    }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .rabout-section_rcr_in {
        padding: 30px 10px;
    }

    .rabout-container_rcr_in {
        flex-direction: column-reverse; /* Ensure image is below text */
        width: 100%;
        padding: 0 10px;
    }

    .image-container_rcr_in {
        width: 80%;
        height: 250px;
        margin: -55px auto 0; /* Proper margin for spacing */
    }

    .circle-orange_rcr_in {
        width: 120px;
        height: 120px;
        left: 20px;
    }

    .circle-gray_rcr_in {
        width: 160px;
        height: 160px;
        left: 3px;
        top: 10px;
    }

    .rabout-text_rcr_in {
        width: 100%;
        padding: 20px;
    }

    .rabout-text_rcr_in h2 {
        font-size: 24px;
        text-align: left;
    }

    .rabout-text_rcr_in p {
        font-size: 14px;
        text-align: left;
    }

    .li_rcr_in {
        font-size: 14px;
        text-align: left;
    }

    .lil_rcr {
        font-size: 13px;
        text-align: left;
    }
}
/* forth */
@media (max-width: 1024px) {
    .container_team_new {
        width: 90%;
    }

    .team_grid_new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team_heading_new {
        font-size: 32px;
    }

    .team_text_outline_new {
        font-size: 36px;
    }

    .team_member_new img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .container_team_new {
        width: 95%;
    }

    .team_grid_new {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .team_heading_new {
        font-size: 28px;
    }

    .team_text_outline_new {
        font-size: 32px;
    }

    /*.team_member_new img {*/
    /*    height: 220px;*/
    /*}*/

    .team_info_new {
        padding: 10px;
    }

    .team_name_new {
        font-size: 16px;
    }

    .team_role_new {
        font-size: 12px;
    }
}
/* fift section */
.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);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    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;
    width: 100%;
}

.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;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact_container_rcr_in {
        flex-direction: column;
    }
    
   
}

@media (max-width: 768px) {
    .contact_section_rcr_in {
        padding: 20px;
    }
    .fs-5{
        font-size: 1rem !important;
    }

    .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-services-job-placement img{
    border-radius: 25px;
    box-shadow: 0px 0px 10px #0000003d;
    width: 100%;
}

/*web_image/job.png*/

.HR-services-insurance-plan img{
    border-radius: 25px;
    box-shadow: 0px 0px 10px #0000003d;
    width: 100%;
}

.HR-services-finance-plan img{
    border-radius: 25px;
    box-shadow: 0px 0px 10px #0000003d;
    width: 100%;
}
.HR-search-form{
    width: 100%;
}
.btn.dropdown-toggle::after {
    display: none !important;
}

        .TB-container {
            padding: 30px;
            border-radius: 10px;
            width: 95%;
            height: 80vh;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-image: url("web_image/WELCOME_TO_Corporate_Dekho_EMPLOYMENT_CORNER.png");
            background-position: center;
            background-size: cover;
        }
        .TB-container h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            text-align: center;
        }
        .TB-highlight {
            color: #ff0000;
        }
        .TB-highlight-alt {
            color: white;
        }
        .TB-container h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 10px 0;
        }
        .TB-subtitle {
            font-size: 1.1rem;
            margin: 15px 0;
            color: white;
            text-align: center;
        }
        .TB-btn {
            display: inline-block;
            padding: 12px 25px;
            background: #6C63FF;
            border: none;
            border-radius: 25px;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
        }
        .TB-btn:hover {
            background: #5548E7;
        }
        .pdeve{
            width: 80px;
        }
        .industy_scroll{
            text-align: end;
            color: white;
            margin-top: 15px;
            display: none;
        }
        @media (max-width: 768px) {
              .TB-container h1 {
            font-size: 1.5rem;
          
        }
          .pdeve{
            width: 50px;
        }
        .TB-container {
            height: 60vh;
            }
        .industy_scroll{
          display: block;  
            }
        }



/*________________--our values_________________________*/


 .main-ethics{
      margin: 0;
      padding-left: 100px;
      display: flex;
      justify-content: Start;
      align-items: center;
      height: 100vh;
      /*background: linear-gradient(8deg, #1252c738, #00000000);*/
      background-image: url('https://corporatedekhoventure.com/web_image/top_banner1.jpg');
      background-position: center;
      background-size: cover;
      
        
    }
    .ethics-container {
      position: relative;
      width: 84vmin;
      height: 84vmin;
      background: white;
      border-radius: 300px;
      box-shadow: 0px 0px 20px #0000002f;
    }

    .ethics-circle {
      position: absolute;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background-color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-weight: bold;
      color: #000;
      border:10px solid;
      box-shadow: inset 0px 0px 20px #0000002f, 10px 15px 20px #0000002f, inset 0px 0px 20px #ffffff;
      transform: translate(-50%, -50%);
      transition: all 0.3s ease;
      font-size: 18px;
    }

    .ethics-circle.center {
      color: #0b61a4;
      position: absolute;
      top: 50%;
      left: 50%;
    }

    svg {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    line {
      stroke: #999;
      stroke-width: 2;
      stroke-dasharray: 4, 4; 
    }

    @media (max-width: 600px) {
      .ethics-circle {
        width: 80px;
        height: 80px;
        font-size: 10px;
      }
          .main-ethics{
                   padding-left: 0px;
              margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60vh;
        
    }
      .ethics-circle {

      border:5px solid;
    }

    }
    
      .values-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
        }
        
        .values-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .values-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .values-header h2::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #9b59b6);
            bottom: -10px;
            left: 15%;
            border-radius: 2px;
        }
        
        .values-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #3498db, #9b59b6);
            transition: height 0.3s ease;
            z-index: -1;
        }
        
        .value-card:hover::before {
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            color: white;
        }
        
        .value-card:hover .value-icon {
            background: white;
            color: #3498db;
        }
        
        .value-card:hover h3 {
            color: white;
        }
        
        .value-card.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3498db, #9b59b6);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        
        .value-card p {
            color: #7f8c8d;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        
        .value-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .values-header h2 {
                font-size: 2rem;
            }
        }
        .ethics-values{
               background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }