/* Base Navbar Style */
.navbar_index {
  background: url('../images/job03.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 10;
  padding: 15px 0;
  color: white; 
  transition: background-color 0.8s ease, color 0.8s ease;
}

.navbar .nav-link {
  color: white; /* Default link color */
  transition: color 0.8s ease;
}
.navbar-nav .nav-link:hover{
  background-color: transparent !important;
}
.navbar-nav .nav-item:hover{
  background-color: transparent !important;
}

/* Dark Overlay for Navbar */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.622); 

  z-index: -1;
  transition: background 0.8s ease;
}

/* Navbar on Scroll */
.navbar.scrolled {
  background: rgb(239, 239, 239); /* New background color */
  color: black !important; /* Text color changes to black */
  box-shadow: 0 0px 0px rgba(255, 255, 255, 0) ; 
}

.navbar.scrolled .nav-link {
  color: black !important;
}

.navbar.scrolled::before {
  background: rgba(255, 255, 255, 0); 
}

/* Logo Styling */
.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-brand img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.1);
}

/* Navbar Links Styling */
.navbar-nav .nav-item {
  margin-left: 25px;
}

.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 15px !important;
  font-weight: bolder;
  color: #fff !important; /* White text */
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  /* padding: 14px 20px; */
  position: relative;
  transition: color 0.3s ease, padding 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color:blue !important; /* Highlighted color on hover/active */
  text-decoration: none;
  transform: scale(1.05);
  font-weight: 800;
}

/* Active Link Styling */
.navbar-nav .nav-link.active {
  font-weight: 700 !important;
}



/* Button Styling */
.btn-outline-light {
  color: #fff;
  border-color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #0800ff;
  color: #123bf3;
  border-color: #123bf3;
}

.btn-primary {
  background-color: #0800ffbf;
  color: #fff;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2229e6;
  color: #fff;
}


.nav-item {
  position: relative;
}





.nav-item .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}


.nav-item:hover .nav-link {
  color: #007bff;
}

 @keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .btn-outline-light,
  .btn-primary {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .navbar-brand img {
    height: 60px; /* Smaller logo for mobile */
  }

}


.dropdown-menu {
  width: auto; /* Let it take the content's width */
}

@media (max-width: 576px) {
  .dropdown-menu {
    width: 80%; 
    max-width: 200px; 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* background-color: transparent; */
    border: none;
    color: white !important;

  }
}

@media (max-width: 991px){
  .dropdown-menu {
    width: 50%; 
    max-width: 100px; 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* background-color: transparent; */
    border: none;
    color: white !important;

  }
}


/* landing page navbar */
.sidebar {
  position: fixed !important;
  top: -30px !important;
  left: 0 !important;
  bottom: 0;
  width: 250px !important;
  background-color: #f8f9fa !important;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  margin-top: 30px;
}
.sidebar .nav-link{
  color:black !important;
}
.sidebar.show {
  display: block;
}
.sidebar .dropdown-menu{
  background-color: transparent !important;
border:none !important;
}
/* Ensure dropdown items fill the full width */
.sidebar .dropdown-menu > li {
  width: 240px !important;
  background-color:transparent!important ;
  padding:6px !important;
  display: flex !important;
  justify-content: center !important; 
  align-items: center !important; 
}
.NNN > .navbar-nav .dropdown-menu > li{
  background-color: #e72c2c !important;
  margin-left: -30px !important;
  width:200px !important;
}
.sidebar .dropdown-menu > li{
  background-color: transparent !important;
}
.sidebar .dropdown-menu .dropdown-item {
  width: 100% !important; 
  display: block;
  text-align: center !important; 
  padding: 10px 15px !important; 
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
  
  .sidebar {
    display: none;
  }
  
  .sidebar.show {
    display: block;
  }
  
  .navbar-toggler {
    display: none;
  }

  #sidebarToggleBtn {
    display: block;
  }
}


/* dashboard nav-bar */
.sidebar .navbar-nav .dropdown-menu{
  background-color: transparent !important;
border:none !important;
} 
 
/* Ensure dropdown items fill the full width */
.sidebar .navbar-nav .dropdown-menu > li {
  width: 200px !important;
  background-color: transparent !important ;
  padding:6px !important;
  display: flex !important;
  justify-content: center !important; 
  align-items: center !important; 

}

.sidebar   .navbar-nav .dropdown-menu > li{
  background-color: transparent !important;
  display: flex !important;
  justify-content: center !important; 
  align-items: center !important; 
}
.sidebar  .navbar-nav  .dropdown-menu .dropdown-item {
  width: 100% !important; 
  display: block;
  text-align: center !important; 
  padding: 10px 15px !important; 
}


/* dashboard sidebar */
#resumeDropdownMenu :hover{
background-color: transparent;
}
#resumeDropdownMenu{
  background-color: white;
}
.sidebar-drp{
  background-color: transparent !important;
}
.sidebar-drp:hover{
  background-color: transparent !important;
}


/* sidebar */
.sidebar-drp{
  background-color: white !important;
}
.sidebar-drp:hover{
  background-color: white !important;
}


/* message page blink */
 /* Glowing dot styles */
 .glowing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  margin-right: 8px;
  animation: blink-glow 1s infinite alternate; /* Apply blinking animation */
}

/* Blinking animation for the box-shadow */
@keyframes blink-glow {
  0% {
    box-shadow: 0 0 8px 5px rgba(235, 233, 233, 0.7); /* Glow visible */
  }
  50% {
    box-shadow: 0 0 8px 5px rgba(235, 233, 233, 0); /* Glow invisible */
  }
  100% {
    box-shadow: 0 0 8px 5px rgba(235, 233, 233, 0.7); /* Glow visible again */
  }
}


  /* Styling the contact name and time */
  .contact-item {
    position: relative;
  }

  .message-time-container {
    display: flex;
    align-items: center;
  }

  .message-time-container .glowing-dot {
    margin-right: 8px;
  }

  /* Optional hover glow effect for interactive UI */
  .contact-item:hover .glowing-dot {
    box-shadow: 0 0 15px 5px rgba(235, 233, 233, 0.9);
  }

  .message-time-container{
    font-size: 12px;
  }
  
  
 /* Hero Section */
.hero-section {
  display: flex;
  /* justify-content: space-between;  */
  justify-content: center;
  align-items: center;
  padding: 50px 15px;
  background: url('../images/job03.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh; 
  width: 100%;
  position: relative;
  color: white;
  text-align: left; 
}

/* Overlay Effect Class */
.overlay {
  content: '';
  position: absolute;
  top: 50;  
  left: 0;
  width: 100%;
  height: 100%; 
  background: rgba(0, 0, 0, 0.48); 
  /* background: rgba(0, 0, 0, 0.566); */
  z-index: 1;
}

/* Hero Text Styling */
.hero-text {
  position: relative;
  z-index: 5;
  padding: 20px;
  /* text-align: center; */
}

.hero-text h1 {
  font-size: 45px;
  margin-bottom: 20px;
  margin-top: -80px;
  color: #ffffff;
  font-family: 'Young Serif';
  gap: 2px;
}

.hero-text p {
  font-size:20px;
  margin-bottom: 40px;
  color: #ffffff !important;
  font-weight: 600;
}


.span_h1 {
  color: rgb(255, 255, 255);
  border-bottom: 4px solid rgb(0, 255, 166);
}

/* Hero Image Section */
.hero-image {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 50%;
  background-size: cover;
  background-position: center;
  filter: brightness(2); /* Start at brightness 0 */
  animation: brightenEffect 2s ease-in-out forwards; /* Apply the animation */
}

/* Keyframes for brightness transition */
@keyframes brightenEffect {
  0% {
    filter: brightness(0.3); /* Start at brightness 0 */
  }
  100% {
    filter: brightness(0.9); /* End at brightness 0.9 */
  }
}


.hero-image img {
  margin-top: -100px;
}

/* Keyframe Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* Default position */
  }
  50% {
    transform: translateY(-10px); /* Move up */
  }
}

/* Apply Animation to the Image */
.hero-image img {
  animation: bounce 3s infinite; /* Duration: 3s, Loops: Infinite */
  transition: transform 0.3s ease-in-out; /* Smooth bounce */
}


/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-text h1 {
    font-size: 2.5rem;
    margin-top: 0px;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-section {
    flex-direction: column;
    align-items: center; 
    height: auto;  
  }
  .overlay {
    content: '';
    position: absolute;
    top: 50;  
    left: 0;
    width: 100%;
    height: 550px; 
    background: rgba(9, 9, 9, 0.734); 
    z-index: 1;
  }
  .hero-section {
    height: 550px; 
    width: 100%;
  }
  .hero-image img {  
    margin-left: 0px;
    margin-top: 0px;
    width: 300px;
  }
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2rem; 
    margin-top: 0px;

  }

  .button-job{
    font-size: 10px;
  }
  .hero-text p {
    font-size: 1rem; 
  }

  .hero-image {
    position: relative;
    z-index: 4;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9); 
    display: flex;
    justify-content: center; 
    align-items: center; 
    /* margin: 0 auto;  */
  }
  
  .overlay {
    content: '';
    position: absolute;
    top: 50;  
    left: 0;
    width: 100%;
    height: 700px; 
    background: rgba(9, 9, 9, 0.734); 
    z-index: 1;
  }
  .hero-section {
    height: 700px; 
    width: 100%;
    padding: 50px 15px;
  }
  .hero-image img {  
    margin-left: 0px;
    margin-top: 0px;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-brand .logo1 {
  width: 100px;
  height: 80px; 
  transition: transform 0.3s ease; 
  filter: brightness(1.2); 
  z-index:5;
}

.navbar-brand:hover .logo1 {
  transform: scale(1.1); 
}

.navbar-toggler {
  border-color: none;
  /* background-color: transparent; */
  color: white;
}

@media (max-width: 767px) {
  .navbar-brand .logo1 {
    height: 60px; 
  }
}

/* Gradient Animation */
@keyframes gradient-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Main Container */
.main-container {
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Form Wrapper */
.form-wrapper {
  overflow: hidden;
  position: relative;
}

.form-content {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 200%;
}

.form {
  width: 50%;
  padding: 30px;
  background: white;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.form.active {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  font-size: 24px;
}

p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 10px 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.input-group .input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #aaa;
}

.button_model {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 5px;
  background: linear-gradient(120deg, #2e24f1, #65ffe5);
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.switch-text {
  text-align: center;
  font-size: 13px;
  color: #555;
}

.switch-text .toggle-form {
  color: #6C63FF;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.switch-text .toggle-form:hover {
  text-decoration: underline;
}

.modal-content {
  padding: 0;
  border-radius: 15px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
}

.modal-header {
  border-bottom: 1px solid #ddd;
  padding: 15px;
  background-color: #f8f9fa;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
}

.modal-body {
  padding: 30px;
}

/* Modal Specific */
.modal-dialog {
  max-width: 500px;
  margin: 50px auto;
}

/* Transition for Modal content */
@keyframes slideIn {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.modal.fade .modal-dialog {
  animation: slideIn 0.5s ease-out;
}

/*======================================
    Apply Process CSS
========================================*/
.apply-process {
  background-color: #2042e3;
  padding: 80px 0;
}

.apply-process .process-item {
  padding-left: 92px;
  position: relative;
  padding-right: 25px;
}

.apply-process .process-item i {
  font-size: 30px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  height: 65px;
  width: 65px;
  border: 1px dashed #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 62px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.apply-process .process-item:hover i {
  background-color: #fff;
  color: #2042e3;
  border-color: transparent;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.apply-process .process-item h4 {
  font-size: 18px;
  color: #fff;
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.apply-process .process-item h4::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: #fff;
}

.apply-process .process-item p {
  color: #fff;
  display: block;
}



/* ==========================================================================
 Category Section Start
 ========================================================================== */
 .top_job{
  background-color: rgb(231, 231, 231);
 }

.f-category {
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  padding: 30px;
  text-align: center;
  overflow: hidden;
  display: block;
  margin-right: -1px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

.f-category a {
  display: block;
}

.f-category:hover {
  background: #f9fcff;
}

.f-category .icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 4px;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.f-category .icon i {
  font-size: 36px;
  color: #333;
  line-height: 50px;
}

.f-category h3 {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 0;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  color: #333;
  text-decoration: none !important;
}

.f-category p {
  color: #0409ff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
} 

.f-category:hover {
  background: #fff;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

.f-category:hover h3 {
  color: #000000;
}

.f-category:hover .icon {
  -webkit-transform: rotateY(160deg);
  -moz-transform: rotateY(160deg);
  -ms-transform: rotateY(160deg);
  -o-transform: rotateY(160deg);
  transform: rotateY(160deg);
}

.f-category:hover .icon i {
  color: #0020d4;
}

.job-href{
  text-decoration: none;
}

/* Style the section header container */
.section-header {
  padding: 40px 20px; 
  border-radius: 10px;
  text-align: center;
  margin-bottom: 10px;
}

/* Style the section title */
.section-title {
  font-size: 2.4rem; 
  font-family: 'Young Serif';
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 1px; 
  margin-bottom: 15px;
  text-transform: uppercase; 
  margin-top: 10px;
}

/* Style the description paragraph */
.section-header p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6; 
  margin-top: 0;
  margin-bottom: 0;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}


/*---------------------------- Search Box Styling -------------------------*/
.search-box {
  background-color:transparent ;  
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 ;
  transition: all 0.3s ease;
}


.search-box h3 {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6; 
    margin-top: 0;
    margin-bottom: 30;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
  }


.search-input {
  height: 50px;
  font-size: 16px;
  padding-left: 40px; 
  border-radius: 5px;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
  background-color: #fff;

}

.search-input:focus {
  border-color: #2042e3; 
  outline: none;
}

.search-input::placeholder {
  color: #999;
  font-style: italic;
}

.btn-search {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #2042e3;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 70%;
}

.btn-search:hover {
  background-color: #1a37b2; 
  transform: translateY(-3px); 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.form-group {
  flex: 1;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .search-box {
      padding: 30px 20px;
  }

  .btn-search {
      width: 100%;
      font-size: 14px; 
      padding: 8px 15px; 
  }

  .form-group {
      margin-bottom: 15px; 
  }

  .search-input {
      width: 100%; 
      margin-bottom: 10px; 
  }

  .form-group.mb-3.mb-sm-0 {
      margin-bottom: 10px; 
  }
}




/*----------------- job card heading ---------------------*/


.job-listing-heading {
  font-size: 30px; 
  font-family: 'Young Serif';
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 1px; 
  margin-bottom: 15px;
  text-transform: uppercase; 
  margin-top: 10px;
  text-align: center;
}

.job-listing-subheading {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6; 
  margin-top: 0;
  margin-bottom: 30;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}

.job-count {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  display: block;
  margin-top: 10px;
}

/* end of job card heading */

  /* Job Card Styling */
        .single-job {
          background-color: rgb(243, 243, 243);
          border: 1px solid #eee;
          border-radius: 8px;
          margin-bottom: 30px;
          padding: 20px;
          transition: all 0.3s ease;
          margin-top: 40px;
         
      }

      /* Hover effect for the job card */
      .single-job:hover {
        border: 1px solid rgb(0, 0, 255);
      }

      /* Job Image Container */
          .job-image {
      background-color: rgb(255, 255, 255);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: -50px;
      box-shadow: 6px 6px 6px rgba(1, 1, 1, 0.1); /* Adds soft shadow */
  }


      /* Job Image */
      .image_job_logo {
          width: 50px;
          height: 50px;
          object-fit: cover;
          border-radius: 50%;
      }

      /* Job Title and Type */
      .job-title {
          font-size: 18px;
          font-weight: 600;
          color: #081828;
      }

      .job-type {
          font-size: 14px;
          color: #2042e3;
          background-color: #e6f1ff;
          padding: 3px 10px;
          border-radius: 5px;
      }

      /* Job Content */
      .job-content {
          font-size: 14px;
          color: #777;
      }

      /* Job Description */
      .job-description {
          font-size: 16px;
          margin-bottom: 15px;
          color: #4a4a4a;
          font-family:Verdana, Geneva, Tahoma, sans-serif;
          font-weight: 500;
      }

      /* Job Details (Salary, Location, Save) */
      .job-detail {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .job-detail li {
          display: inline-block;
          font-size: 12px;
          margin-right: 15px;
          color: #2042e3;
      }

      .job-detail li a {
          color: #2042e3;
          text-decoration: none;
      }

      .job-detail li i {
          margin-right: 5px;
      }

      /* Time Posted */
      .time-posted {
          font-size: 12px;
          color: #888;
          margin: 15px 0;
      }

      .time-posted i {
          margin-right: 5px;
      }

      /* Apply Now Button */
      .apply-now {
          color: #2042e3;
          text-decoration: none;
          font-weight: bold;
          border: 1px solid #2042e3;
          padding: 8px 20px;
          border-radius: 3px;
          transition: background-color 0.3s ease, color 0.3s ease;
      }

      .apply-now:hover {
          background-color: #2042e3;
          color: #fff;
      }

      .heading_job {
          font-size: 14px;
          color: #ac20e3;
          background-color: #f5e6ff;
          padding: 3px 10px;
          border-radius: 20px;
          font-family: Georgia, 'Times New Roman', Times, serif;
      }

      .heading_job_part {
        font-size: 14px;
        color: #391aa1;
        background-color: #d0c9ff;
        padding: 3px 10px;
        border-radius: 20px;
        font-family: Georgia, 'Times New Roman', Times, serif;
    }

      .heading_job_full{
        font-size: 14px;
        color: #1aa13e;
        background-color: #c9ffd8;
        padding: 3px 10px;
        border-radius: 20px;
        font-family: Georgia, 'Times New Roman', Times, serif;
      }

      .heading_job_intern{
        font-size: 14px;
        color: #c34e18;
        background-color: #ffd3bc;
        padding: 3px 10px;
        border-radius: 20px;
        font-family: Georgia, 'Times New Roman', Times, serif;
      }

      /* Save Button Styling */
      .bookmark-btn {
        background-color: #007bff;
        transition: background-color 0.3s ease;
        border-radius: 100%;
        border: none;
        cursor: pointer;
    }

    .bookmark-btn i {
        color: white;
        transition: color 0.3s ease;
    }

   
    .bookmark-btn.active {
        background-color: white;
    }

    .bookmark-btn.active i {
        color: blue;
    }


      /* Responsive Styles */
      @media (max-width: 991px) {
          .single-job {
              padding: 15px;
          }

          .job-title {
              font-size: 16px;
          }

          .job-content {
              font-size: 13px;
          }

          .job-description {
              font-size: 14px;
          }
      }

      @media (max-width: 767px) {
          .job-title {
              font-size: 14px;
          }

          .job-content {
              font-size: 12px;
          }

          .job-description {
              font-size: 13px;
          }
          .job-image {
          background-color: rgb(255, 255, 255);
          width: 80px;
          height: 80px;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 0px;
          margin-bottom: 10px;
      }

      /* Job Image */
      .image_job_logo {
          width: 40px;
          height: 40px;
          object-fit: cover;
          border-radius: 50%;
      }
      .heading_job {
          font-size: 12px;
          color: #ac20e3;
          background-color: #f5e6ff;
          padding: 3px 10px;
          border-radius: 20px;
          font-family: Georgia, 'Times New Roman', Times, serif;
      }

      }
      @media (max-width: 320px) {
        .media_job{
          margin-top: 10px;
        }
      }
/*--------------- end ----------------------*/

/*------------- client review section-----------------  */

        /* General Styling for Review Section */
        .review-section {
          background: linear-gradient(to right, #ffffff, #ffffff);
          color: #fff !important;
          padding: 60px 0;
          text-align: center;
      }

      .review-section h2 {
          font-size: 30px !important;
          font-family: 'Georgia', serif;
          /* font-weight: bold; */
          margin-bottom: 20px;
          color: rgb(0, 0, 0);
      }

      .review-section .subheading {
          font-size: 18px;
          margin-bottom: 60px;
          font-family: 'Verdana', sans-serif;
          font-weight: 200 !important;
          color:grey;
          text-align: center;
          margin: 0 auto 50px auto;
          max-width: 800px;
          text-align: center;
      }

      /* Individual Review Card */
      .review-card {
          background-color: #fff;
          border-radius: 12px;
          padding: 40px;
          margin-bottom: 30px;
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          height: 100%;
          position: relative;
      }

      .review-card:hover {
          transform: translateY(-10px);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
      }

      /* Rating Stars */
      .rating i {
          color: #f39c12;
          margin-right: 5px;
          font-size: 20px;
      }

      /* Client Testimonial Text */
      .review-card p {
          font-size: 16px;
          line-height: 1.6;
          color: #333;
          font-style: italic;
      }

      .review-card h5 {
          font-size: 24px;
          font-family: 'Georgia', serif;
          font-weight: 600;
          color: #2c3e50;
      }

      /* Reviewer Info */
      .reviewer-info {
          margin-top: 20px;
      }

      .reviewer-name {
          font-size: 18px;
          font-weight: 600;
          color: #3498db;
      }

      .reviewer-location {
          font-size: 14px;
          color: #7f8c8d;
      }

      /* CTA Button Styling */
      .btn-review {
          background-color: #3498db;
          color: #fff;
          border-radius: 50px;
          padding: 12px 30px;
          font-size: 18px;
          font-weight: bold;
          text-decoration: none;
          transition: background-color 0.3s ease;
          margin-top: 40px;
      }

      .btn-review:hover {
          background-color: #2980b9;
      }

      /* Responsive Design */
      @media (max-width: 767px) {
          .review-section h2 {
              font-size: 36px;
          }

          .review-card {
              padding: 20px; /* Reduce padding for mobile */
              margin-bottom: 20px;
          }

          .review-card h5 {
              font-size: 20px; /* Slightly smaller title */
          }

          .review-card p {
              font-size: 14px; /* Smaller text for better fit */
          }

          .col-md-4 {
              flex: 0 0 100%; /* Full width for small screens */
              max-width: 100%;
              margin-bottom: 20px; /* Add some space between cards */
          }
      }

      /*------------- end ---------------------*/


/* ========================================================================== 
Pricing plan style
========================================================================== */
.pricing_plan{
  background-color: #f6f9fc;
}
.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  margin: 50px;
  padding: 0px 20px;
}

.pricing-table {
  box-shadow: 0px 0px 18px #ccc;
  text-align: center;
  padding: 30px 0px;
  border-radius: 5px;
  position: relative;
}

.pricing-table .head {
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
  transition: all 0.5s ease;
}

.pricing-table:hover .head {
  border-bottom: 1px solid #3498db;
}

.pricing-table .head .title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  font-family: 'Verdana', sans-serif;
}

.pricing-table .content .price {
  background: linear-gradient(to right, #1a9df4 0%, #113cfa 100%);
  width: 90px;
  height: 90px;
  margin: auto;
  line-height: 90px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0px 0px 10px #ccc;
  margin-top: -50px;
  transition: all 0.5s ease;
}

.pricing-table:hover .content .price {
  transform: scale(1.2);
}

.pricing-table .content .price h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  
}

.pricing-table .content ul {
  list-style-type: none;
  margin-bottom: 20px;
  padding-top: 10px;
}

.pricing-table .content ul li {
  margin: 20px 0px;
  font-size: 16px;
  font-family: 'Verdana', sans-serif;
  font-weight: 500;
  color: #555;
}

.pricing-table .content .sign-up {
  background: linear-gradient(to right, #0693f0 0%, #060ef2 100%);
  border-radius: 40px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.pricing-table .btn {
  color: #fff;
  padding: 14px 40px;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3 linear;
  transition: all 0.3 linear;
  border: none;
  font-size: 16px;
  font-family: 'Verdana', sans-serif;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  margin: 2px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 50px;
}

.pricing-table .btn:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.pricing-table .btn.bordered {
  z-index: 50;
  color: #333;
}

.pricing-table:hover .btn.bordered {
  color: #fff !important;
}

.pricing-table .btn.bordered:after {
  background: #fff none repeat scroll 0 0;
  border-radius: 50px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3 linear;
  transition: all 0.3 linear;
  width: 100%;
  z-index: -1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}

.pricing-table:hover .btn.bordered:after {
  opacity: 0;
  transform: scale(0);
}


@media screen and (max-width: 768px) {
  .wrapper {
      grid-template-columns: repeat(2, 1fr);
      margin: 20px;
  }
}

@media screen and (max-width: 600px) {
  .wrapper {
      grid-template-columns: 1fr; 
      margin: 10px; 
  }

  .pricing-table {
      margin-bottom: 20px; 
  }
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  /* margin-top: 50px; */
  text-align: center;
}

.section-description {
  font-size: 18px;
  color: #555;
  margin: 0 auto 50px auto;
  max-width: 800px;
  text-align: center;
  font-family: 'Verdana', sans-serif;
  font-weight:100;
}

/*--------------- footer start ------------------*/


/*======================================
	Footer CSS
========================================*/

.footer .footer-top {
  border-bottom: 1px solid #eee;
  padding: 60px 0;
}


    /* Footer Styles */
    .footer {
      background-color: #303030; /* Dark background */
      color: #fff; /* White text */
      padding: 50px 0;
  }

  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
  }

  /* Footer Top */
  .footer-top {
      padding-bottom: 40px;
  }

  .footer-logo img {
      width: 120px;
      height: auto;
  }

  .footer-description {
      font-size: 15px;
      color: #ccc;
      margin-top: 10px;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  .footer-top h4 {
      font-size: 18px;
      color: #274af8; /* Gold color */
      margin-bottom: 22px;
      font-weight: 600;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  .footer-links,
  .footer-contact {
      list-style: none;
      padding: 0;
  }

  .footer-links li,
  .footer-contact li {
      margin-bottom: 10px;
  }

  .footer-links a,
  .footer-contact li {
      font-size: 15px;
      color: #d4d4d4;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.3s;
      font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  .footer-contact i {
      margin-right: 8px;
      font-size: 16px;
  }

  /* Social Media Icons */
  .footer-social a {
      display: inline-block;
      margin-right: 15px;
      font-size: 20px;
      color: #fff;
      background-color: #7b7b7b; /* Blue background */
      padding: 10px;
      border-radius: 10%;
      transition: all 0.3s ease;
  }

  .footer-social a:hover {
      background-color: #0080ff; /* Hover gold */
      transform: scale(1.1); /* Slight grow effect */
  }

  /* Footer Bottom */
  .footer-bottom {
      background-color: #222;
      padding: 20px 0;
  }

  .footer-bottom p {
      color: #ccc;
      font-size: 15px;
      font-family: Verdana, Geneva, Tahoma, sans-serif ;
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
      .footer-top .row {
          text-align: center;
      }
      .footer-bottom {
          padding: 15px 0;
      }

      .footer-bottom p {
          font-size: 12px;
      }
      .footer-links a,
      .footer-contact li {
          font-size: 15px;
          color: #d4d4d4;
          text-decoration: none;
          display: flex;
          align-items: center;
          transition: color 0.3s;
          font-family:Verdana, Geneva, Tahoma, sans-serif;
          padding-left: 20px;
      }
  }


  
/*======================================
	Report CSS
========================================*/
.contact-us {
  position: relative;
  background-color: #f6f9fc;
  padding-bottom: 0;
}

.contact-us .contact-head {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
          box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  position: relative;
  z-index: 5;
}

.contact-us .title {
  margin-bottom: 30px;
}

.contact-us .contant-inner-title {
  margin-bottom: 45px;
}

.contact-us .contant-inner-title h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #081828;
  text-transform: capitalize;
}

.contact-us .contant-inner-title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 10px;
  display: block;
}

.contact-us .single-head {
  padding: 50px;
  height: 100%;
  background: #fff;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-left: 1px solid #eee;
}

.contact-us .single-info {
  text-align: left;
  margin-bottom: 16px;
  /* padding-left: 40px; */
  position: relative;
}

.contact-us .single-info i {
  color: #2042e3;
  font-size: 18px;
  display: inline-block;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}

.contact-us .single-info ul {
  display: inline-block;
}

.contact-us .single-info ul li:last-child {
  margin-bottom: 0;
}

.contact-us .single-info ul li {
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
}

.contact-us .single-info ul li a {
  font-weight: 500;
  color: #7E8890;
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
}

.contact-us .single-info ul li a:hover {
  color: #2042e3;
}

.contact-us .contact-social {
  display: block;
  margin-top: 5px;
}

.contact-us .contact-social h5 {
  color: #081828;
  font-weight: 600;
  font-size: 18px;
}

.contact-us .contact-social ul {
  display: inline-block;
  position: relative;
  left: -9px;
  margin-top: 15px;
}

.contact-us .contact-social ul {
  margin-left: 10px;
}

.contact-us .contact-social ul li {
  display: inline-block;
  margin-right: 6px;
}

.contact-us .contact-social ul li:last-child {
  margin-right: 0;
}

.contact-us .contact-social ul li a {
  font-size: 14px;
  color: #081828;
  height: 40px;
  width: 40px;
  text-align: center;
  display: block;
  line-height: 40px;
  background: #E8ECF1;
  border: none;
  border-radius: 4px;
  position: relative;
  z-index: 3;
}

.contact-us .contact-social ul li a:hover {
  color: #fff;
  background-color: #2042e3;
}

.contact-us .single-info .title {
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
}

.contact-us .single-info .title span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}

.contact-us .form-main {
  padding: 50px 35px 50px 50px;
}

.contact-us .forms .form-group {
  margin-bottom: 15px;
  display: block;
}

.contact-us .forms .form-group input {
  height: 55px;
  line-height: 55px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 0px 20px;
  color: #333;
  border-radius: 0px;
  font-weight: 400;
  border-radius: 5px;
}

.contact-us .forms .form-group textarea {
  height: 180px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 15px 20px;
  color: #333;
  border-radius: 0px;
  resize: none;
  font-weight: 400;
  border-radius: 5px;
}

.contact-us .forms .button {
  margin: 0;
}

.contact-us .forms .button .btn {
  height: 50px;
  border: none;
}

.report-image-contact {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}



/* ---------------- about us page --------------------- */


  /* General Layout Styles */
  .vision-section {
    padding: 60px 20px;
}

.vision-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}


.vision-content .section-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-bottom: 4px solid #0056b3;
    display: inline-block;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.vision-content strong {
    color: #0056b3;
}

/* Accordion Styles */
.accordion-container {
  padding: 20px;
}

.accordion {
  border: none;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: 1px solid #ddd; /* Add a full border */
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.accordion-button {
  background-color: #ffffff;
  color: #333;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background-color: #e3f2fd;
  color: #0056b3;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion-button.collapsed {
  color: #666;
}

.accordion-body {
  background-color: #f9f9f9;
  color: #555;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  border-left: none; 
  margin-left: 0;    
  box-shadow: none; 
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.accordion-item + .accordion-item {
  margin-top: 10px;
}

/* Remove extra top border line from accordion body */
.accordion .accordion-body {
  border-top: none;
}


.about-us-header {
  padding: 60px 20px;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
}

.about-title {
  font-size:40px;
  font-weight: 600;
  color: #1a1a1a; 
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  padding: 30px 20px;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
}

.about-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #0056b3; 
  margin: 10px auto 0;
}

.about-description {
  font-size: 20px;
  line-height: 1.9;
  color: #444444; 
  max-width: 850px;
  margin: 0 auto;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
}

.about-description .highlight {
  font-weight: 700;
  color: #0056b3; 
  text-decoration: underline;
}

.container_about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}
.hr_line_about{
border: 2px solid #0056b3;
}

.about-us .content-left {
  position: relative;
  padding-right: 60px;
}

.about-us .content-left .single-img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.about-us .content-left .single-img.minus-margin {
  position: relative;
}


.about-us .content-left .media-body {
  padding: 40px 30px;
  padding-bottom: 40px;
  border-radius: 5px;
  background-color: #2042e3;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  display: inline-block;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 48px;
}

.about-us .content-left .media-body i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #ffffff45;
  border-radius: 5px;
  display: block;
  margin-bottom: 20px;
}

.about-us .content-left .media-body h6 {
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.about-us .content-left .media-body p {
  color: #fff;
}

.about-us .content-right {
  padding-right: 70px;
  padding-left: 30px;
}

.about-us .content-right h2 {
  font-size: 32px;
  margin-bottom: 50px;
  line-height: 45px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
}

.about-us .content-right .single-list {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.about-us .content-right .single-list:last-child {
  margin-bottom: 0;
}

.about-us .content-right .single-list i {
  font-size: 27px;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  background: #2042e31c;
  color: #2042e3;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 3px;
}

.about-us .content-right .single-list .list-bod h5 {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  color: #081828;
}

.about-us .content-right .single-list .list-bod p {
  font-size: 14px;
  line-height: 24px;
}


/* Vision Section Styling */
.vision-section {
  background-color: rgb(255, 255, 255);
  padding: 30px 20px;
  color: #212121;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Add subtle background overlay for enhanced contrast */
.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay */
  z-index: -1;
}

/* Container Styling */
.vision-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title Styling */
.vision-content h2 {
  font-size: 43px;
  font-weight: 700;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Paragraph Styling */
.vision-content p {
  font-size: 18px;
  color: #3d3d3d;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Strong Text Styling */
.vision-content strong {
  color: #f1c40f; /* Golden color for emphasis */
  font-weight: 800;
  text-transform: uppercase;
}

/* Hover Effect on Paragraphs */
.vision-content p:hover {
  opacity: 1;
}

/* Add a custom animation to the Vision Section for a Grand Feel */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Apply animation to content */
.vision-content {
  animation: fadeInUp 1s ease-out;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .vision-section {
      padding: 60px 15px;
  }

  .vision-content h2 {
      font-size: 36px;
  }

  .vision-content p {
      font-size: 18px;
      max-width: 100%;
  }
}

/*------------------------ privicy policy----------------- */
.privacy-policy {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 1000px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.privacy-policy h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.privacy-policy h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
}

.privacy-policy h3 {
  font-size: 20px;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-policy p {
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.privacy-policy ul {
  margin-left: 20px;
  list-style-type: disc;
  color: #555;
}

.privacy-policy ul li {
  margin-bottom: 10px;
}

.privacy-policy a {
  color: #007bff;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* ---------------------------- Term and condition ------------------------------ */

.terms-and-conditions {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 1000px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.terms-and-conditions h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
}

.terms-and-conditions h4 {
  font-size: 18px;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.terms-and-conditions p {
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.terms-and-conditions a {
  color: #007bff;
  text-decoration: none;
}

.terms-and-conditions a:hover {
  text-decoration: underline;
}
.upload_photo{
  font-size: 24px !important;
  color: grey !important;
  font-weight: 600 !important;
}

/* ------------------ Start of Certification section -------------------- */

 
.certi_container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 30px;
  max-width: 800px;
  margin: 50px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #333333;
}

.certi_h2 {
  font-size: 30px;
  text-align: center;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.certi_h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  margin-top: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.certi_form-label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #000000;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.certi_form-control,
.certi_form-select {
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 12px;
  transition: 0.3s ease;
  box-shadow: none;
}

.certi_form-control:focus,
.certi_form-select:focus {
  border-color: #0046de;
  box-shadow: 0 0 4px rgba(0, 29, 147, 0.5);
}

.certi_btn {
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
  padding: 12px;
}



.quiz-question {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a636e;
}

.form-check-label {
  font-size: 1rem;
  color: #555555;
}

#timer {
  font-size: 1rem;
  color: #d9534f;
  text-align: right;
}

.step-container {
  display: none;
  animation: fadeIn 0.5s;
}

.active-step {
  display: block;
}


#result {
  font-size: 1.25rem;
  color: #4a636e;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.certi_line {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #0056b3;
  margin: 10px auto 0;
}

.certi_h6{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 25px;
}
.certi_para{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 20px;
}


.profile-section {
  display: flex;                  
  align-items: center;             
  gap: 15px;                       
}

.profile-img {
  width: 60px;                     
  height: 60px;                   
  object-fit: cover;              
  border-radius: 50%;             
  padding: 3px;                   
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}


.profile-name {
  font-size: 1.25rem;              
  font-weight: 600;               
  color: #333;                    
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
}

.profile-name:hover {
  color: #0056b3;                
  text-decoration: underline;   
}

.card ul {
  padding-left: 20px;
}
.card ul li {
  margin-bottom: 5px;
}
.table th, .table td {
  vertical-align: middle;
}

.test-time {
  display: flex;           
  align-items: center;    
  gap: 10px;               
  font-size: 16px;       
  font-weight: 500;      
  color: #333;             
  margin: 10px 0;        
}

.test-time-icon {
  width: 40px;            
  height: 40px;          
  object-fit: cover;      
  border-radius: 4px;     
  padding: 4px;          
}


.test-time-text {
  font-size: 18px;         
  color: #636363;          
  font-weight: 600;  
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;     
}

.test-time-text:hover {
  color: #0056b3;         
  text-decoration: underline; 
}

    /* Container for the slider */
    .slider-container {
      position: relative;
      display: inline-flex;
      background: rgb(245, 245, 245);
        padding-top: 5px;
        padding-bottom: 5px;
      border-radius: 3px;
      width: 100%;
      max-width: 400px; 
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      font-size: 17px;
    }

    /* The slider itself */
    .slider-active {
      position: absolute;
      background: rgb(5, 34, 255);
      height: 100%;
      width: 33.33%; 
      border-radius: 3px;
      top: 0;
      left: 0;
      opacity: 0.5;
      transition: left 0.3s ease, width 0.3s ease;
    }

    /* Each option button style */
    .slider-btn {
      cursor: pointer;
      color: rgb(0, 0, 0);
      padding: 10px 20px;
      transition: background-color 0.3s ease;
      z-index: 1;
      flex: 1;
      text-align: center;
    }

    /* Active button style */
    .slider-btn.active {
      color: white;
      
    }
    .slider-btn:focus {
      outline: none;
    }

    .suggestions-list {
      list-style-type: none;
      padding: 0;
      margin: 0;
      position: absolute;
      background-color: rgb(129, 129, 129);
      max-height: 200px;
      overflow-y: auto;
      z-index: 1000;
      width: auto;
      border-radius: 3px;
      color: white;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      font-size: 17px;
      font-weight: 600;
    }
  
    .suggestions-list li {
      padding: 8px;
      cursor: pointer;
    }
  
    .suggestions-list li:hover {
      background-color: #545454;
    }

    .modal-body {
      padding: 20px;
      background: #f9f9f9;
      border-radius: 10px;
      text-align: start;
      font-size: 20px !important;
    }
    
    .modal-text {
      font-size: 16px;
      color: #333;
      margin-bottom: 20px;
      font-family: 'Arial', sans-serif;
    }
    
    .cirti_amount{
      font-size: 18px;
      color: #e74c3c;
      font-weight: bold;
      margin-top: 10px;
    }
    .ceirt_para{
      font-size: 18px;
      color: #7b7b7b;
      font-weight: bold;
      margin-top: 10px;
    }
    .modal-footer {
      display: flex;
      justify-content: center;
      gap: 20px;
      background-color: white;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }
    .cieirt_para{
      font-size: 18px ;
      color: #0e0483 ;
      font-weight: bold ;
      margin-top: 10px ;
      font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }

    

    
/* ------------------ End of Certification section -------------------- */
