/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
  }
  
  /* Navbar */
  .navbar {
    padding: 1rem 0;
    background-color: #fff !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
  }

  .navbar .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
  }
  /* .navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #ff4d4f;
    transition: width 0.3s ease-in-out;
  } */
  
  /* .navbar .nav-link:hover::after {
    width: 100%;
  } */


@media (max-width: 991.98px) {
  .navbar-toggler {
    border-color: #f7254a; /* optional: changes border color */
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23f7254a' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}


  .nav-link.active {
    color: #ff4d4f !important; /* Red color */
    font-weight: bold;
  }
  .navbar .nav-link:hover {
    color: #ff4d4f !important;
  }
  .navbar .dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  /* Animated Logo */
  .animate-logo {
    animation: floatLogo 2s ease-in-out infinite alternate;
  }

  @keyframes floatLogo {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(-5px);
    }
  }
  
  /* Optional: Navbar on scroll */
  .navbar.scrolled {
    background-color: #f8f9fa !important;
    transition: background-color 0.3s ease-in-out;
  }
  
  /* Banner Section */
  .banner-section {
    background: url('../images/banner.jpg') no-repeat center center/cover;
    height: 400px;
    position: relative;
  }
  .text-color-change{
    color: #1e8449;
  }
  .banner-overlay {
    /* background: rgba(0, 0, 0, 0.5); */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .banner-title {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .job-search-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .job-search-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
  }
  
  .cta-button {
    margin-top: 20px;
  }
  
/* Latest Jobs Section */
.latest-jobs-section {
  padding: 50px 0;
  background: #fdfdfd;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
  position: relative;
  animation: fadeInDown 1s ease;
}

.jobs-slider {
  position: relative;
}

.job-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.job-card-header {
  padding: 20px;
  background: linear-gradient(135deg, #007bff, #0c8938);
  color: #fff;
  text-align: center;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.job-company {
  font-size: 1rem;
  font-weight: 400;
}

.job-card-body {
  padding: 20px;
}

.job-location,
.job-salary,
.job-description {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #444;
}

.job-location i,
.job-salary i {
  margin-right: 10px;
  color: #007bff; /* blue */
}

.job-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-card-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.btn-primary {
  background: #007bff; /* green */
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #1e8449;
  transform: scale(1.05);
}

/* Slick Slider Custom Styles */
.slick-prev,
.slick-next {
  background: #2c3e50; /* dark blue */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
}

.slick-prev:hover,
.slick-next:hover {
  background: #1a252f;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary-1 {
  background-color: #007bff; /* Your logo color */
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-1:hover {
  background-color: #1e8449; /* Slightly darker shade for hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}






  
  /* Services Section */
.services-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  position: relative;
  animation: fadeInDown 1s ease;
}

.service-card {
  text-align: center;
  padding: 25px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 30px;
}

/* Hover effect with border color animation */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color:  #f72545 ; /* Change border color on hover */
}

.service-card i {
  font-size: 3rem;
  color: #f72545;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .service-card {
    padding: 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



    /* job page  */

    .job-listings-section {
      padding: 50px 0;
      background: #f8f9fa;
    }



  /* Registration Section */
.registration-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.registration-form {
  /* max-width: 600px; */
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #3498db;
  outline: none;
}

.form-control::placeholder {
  color: #999;
}

.form-text {
  font-size: 0.875rem;
  color: #666;
}

.btn-primary {
  background: #3498db;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #2980b9;
}


/* Test Listing Section */
.test-listing-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.test-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.test-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.test-card-header {
  padding: 20px;
  background: #3498db;
  color: #fff;
}

.test-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.test-date {
  font-size: 1rem;
  font-weight: 400;
}

.test-card-body {
  padding: 20px;
}

.test-location,
.test-description {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #555;
}

.test-location i {
  margin-right: 10px;
  color: #3498db;
}

.test-card-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.btn-primary {
  background: #3498db;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #2980b9;
}

.btn-secondary {
  background: #2c3e50;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #1a252f;
}


/* About Us Section */
.home-about-us {
  background-color: #f9f9f9;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-about-us .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222; /* Updated color to match previous sections */
  text-align: center;
  position: relative;
  animation: fadeInDown 1s ease;
}

.home-about-us .about-content {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  padding-right: 20px;
  margin-bottom: 20px;
}

.home-about-us .btn-secondary {
  background-color: #27ae60; /* Green from Services Section */
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-about-us .btn-secondary:hover {
  background-color: #1e8449; /* Darker green on hover */
  transform: scale(1.05);
}

.home-about-us .about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-about-us .about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
  .home-about-us {
    padding: 60px 0;
  }

  .home-about-us .section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .home-about-us .about-content {
    font-size: 1rem;
    padding-right: 0;
  }

  .home-about-us .btn-secondary {
    padding: 10px 25px;
  }
}

@media (max-width: 767px) {
  .home-about-us .row {
    flex-direction: column;
    text-align: center;
  }

  .home-about-us .about-image img {
    margin-bottom: 20px;
  }

  .home-about-us .about-content {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* FAQs Section */
.home-faqs {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.home-faqs .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222; /* Updated color to match previous sections */
  text-align: center;
  position: relative;
  animation: fadeInDown 1s ease;
}

.accordion-item {
  margin-bottom: 15px;
  /* border-radius: 10px; */
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  border: none;
  /* border-radius: 10px; */
  padding: 15px;
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #f1f1f1; /* Light hover effect */
}

.accordion-button:focus {
  box-shadow: none; /* Removes the default blue outline */
}

.accordion-button:not(.collapsed) {
  background-color: #27ae60; /* Green from Services Section */
  color: #fff;
}

.accordion-button:not(.collapsed):hover {
  background-color: #1e8449; /* Darker green on hover */
}

.accordion-body {
  font-size: 1rem;
  color: #555;
  padding: 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

/* Hover effect on FAQ item */
.accordion-item:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


















  
 /* Footer Section */
.footer-section {
  background: #2c3e50; /* Dark background matching the theme */
  color: #fff;
  padding: 50px 0 20px 0;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ddd; /* Lighter text for readability */
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ddd;
}

.contact-info i {
  margin-right: 10px;
  color: #27ae60; /* Green color used in other sections */
}

.social-icons {
  margin-top: 20px;
}

.social-icons .social-icon {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons .social-icon:hover {
  color: #27ae60; /* Green color used in other sections */
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #27ae60; /* Green color used in other sections */
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  flex: 1;
}

.newsletter-form button {
  padding: 10px 20px;
  background: #27ae60; /* Green color matching theme */
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #1e8449; /* Darker green for hover effect */
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom .footer-text {
  margin: 0;
  font-size: 0.9rem;
  color: #ddd;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
}





/* contact us page */


.contact-us-section {
  background-color: #f9f9f9;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
}

.contact-form .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #f72545;
  box-shadow: none;
}

.contact-info-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.contact-info-box h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info-box p {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
}

.social-icons a {
  color: #555;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f72545;

}


/* about us page */

body {
  font-family: 'Roboto', sans-serif;
}

.about-banner {
  background: url('https://via.placeholder.com/1200x400') center/cover no-repeat;
  height: 300px;
}

.about-section h2,
.team-section h2 {
  font-weight: 700;
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}



