 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 html {
   scroll-behavior: smooth;
 }

 a {
   text-decoration: none !important;
   color: inherit;
 }

 body {
   font-family: 'Segoe UI', sans-serif;
   line-height: 1.6;
   background-color: #f5f5f5;
   color: #333;
 }

 /* Header + Navbar */
 .navbar {
   background-color: #1a325d;
   padding: 15px 30px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   position: sticky;
   top: 0;
   z-index: 1000;
   ;
 }

 .navbar-nav .nav-link {
   color: #fff;
   font-weight: 500;
   margin-right: 10px;
 }

 .navbar-nav .nav-link:hover,
 .navbar-nav .nav-link.active {
   color: #F7cb45;
 }

 .navbar-brand img {
   max-height: 45px;
 }

 .dropdown-menu {
   background-color: #1a325d;
 }

 .dropdown-item {
   color: #fff;
 }

 .dropdown-item:hover {
   background-color: #F7cb45;
   color: #1a325d;
 }

 /* About us  */

 .about-section {
   padding: 70px 30px;
   background-color: #f7f7f7;
 }

 .about-container {
   max-width: 1200px;
   margin: auto;
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   align-items: center;
 }

 .about-text {
   flex: 1 1 500px;
 }

 .about-text h2 {
   font-size: 32px;
   margin-bottom: 20px;
   color: #023047;
 }

 .about-text p {
   font-size: 16px;
   line-height: 1.7;
   color: #333;
   margin-bottom: 15px;
 }

 .about-btn {
   display: inline-block;
   margin-top: 15px;
   background-color: #222E50;
   color: #fff;
   padding: 12px 25px;
   border-radius: 6px;
   text-decoration: none;
   transition: background 0.3s ease;
 }

 .about-btn:hover {
   background-color: #FCCB06;
 }

 .about-image {
   flex: 1 1 400px;
 }

 .about-image img {
   width: 100%;
   border-radius: 8px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .timeline {
   position: relative;
   margin: 0 auto;
   padding-left: 30px;
   border-left: 3px solid #F7cb45;
   max-width: 600px;
 }

 .timeline-item {
   margin-bottom: 40px;
   position: relative;
 }

 .timeline-year {
   position: absolute;
   left: -30px;
   top: 0;
   background: #F7cb45;
   color: #1a325d;
   font-weight: bold;
   padding: 5px 10px;
   border-radius: 4px;
 }

 .timeline-content {
   padding-left: 20px;
   font-size: 1.05rem;
 }


 /* Categories section */


 .job-categories-section {
   background-color: #f7f7f7;
 }

 .section-header h2 {
   color: #1a325d;
   font-weight: 700;
 }

 .category-card {
   background-color: #ffffff;
   border: 2px solid #1a325d12;
   transition: all 0.3s ease;
 }

 .category-card:hover {
   background-color: #1a325d;
   color: white !important;
   transform: translateY(-5px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
 }

 .category-card:hover h5 {
   color: white !important;;
 }

 .category-icon {
   width: 50px;
   height: 50px;
 }


 /* job display section */
 .featured-jobs-modern {
   background: #f9f9f9;
   padding: 60px 20px;
   color: #1a325d;
 }

 .featured-jobs-modern .section-title {
   text-align: center;
   font-size: 32px;
   margin-bottom: 10px;
   color: #1a325d;
 }

 .featured-jobs-modern .subtext {
   text-align: center;
   color: #555;
   margin-bottom: 40px;
 }

 .job-card-alt {
   background-color: #fff;
   padding: 25px;
   border-radius: 10px;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s;
   border-left: 5px solid #F7cb45;
 }

 .job-card-alt.closed {
   opacity: 0.6;
 }

 .job-card-alt:hover {
   transform: translateY(-6px);
 }

 .job-card-alt h3 {
   font-size: 20px;
   margin-bottom: 15px;
   color: #1a325d;
 }

 .job-card-alt ul.job-details {
   list-style: none;
   padding: 0;
   margin: 0 0 15px 0;
 }

 .job-card-alt ul.job-details li {
   margin-bottom: 8px;
   font-size: 14px;
   color: #444;
 }

 .job-card-alt ul.job-details i {
   margin-right: 8px;
   color: #F7cb45;
 }

 .job-footer {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
 }

 .job-footer .posted-by {
   font-size: 13px;
   color: #666;
 }

 .apply-btn {
   background-color: #F7cb45;
   color: #1a325d;
   font-weight: 600;
   padding: 8px 16px;
   border-radius: 6px;
   text-decoration: none;
   transition: all 0.3s ease;
   border: 1px solid transparent;
 }

 .apply-btn i {
   margin-right: 5px;
 }

 .apply-btn:hover {
   background-color: #1a325d;
   color: #fff;
   border-color: #F7cb45;
 }

 .view-all-jobs {
   margin-top: 30px;
 }

 .btn-view-all {
   display: inline-block;
   padding: 10px 24px;
   background-color: #1a325d;
   color: #F7cb45;
   border-radius: 6px;
   font-size: 16px;
   font-weight: bold;
   text-decoration: none;
   transition: all 0.3s ease;
   border: 2px solid transparent;
 }

 .btn-view-all i {
   margin-right: 8px;
 }

 .btn-view-all:hover {
   background-color: #F7cb45;
   color: #1a325d;
   border-color: #1a325d;
 }



 .featured-jobs-modern .job-card-alt h5 {
   color: #1a325d;
   font-weight: 600;
 }

 .featured-jobs-modern .btn-primary {
   background-color: #1a325d;
   border-color: #1a325d;
   color: #F7cb45;
 }

 .featured-jobs-modern .btn-primary:hover {
   background-color: #F7cb45;
   color: #1a325d;
   border-color: #1a325d;
 }

 .featured-jobs-modern .btn-warning {
   background-color: #F7cb45;
   border-color: #F7cb45;
   color: #1a325d;
 }

 .job-feature {
   display: flex;
   justify-content: space-between;
   gap: 30px;
 }

 @media screen and (max-width: 768px) {
   .job-feature {
     flex-direction: column;
   }

 }

 /* Online resume  */

 .resume-builder-modern {
   position: relative;
   background-color: #1a325d;
   color: #fff;
   overflow: hidden;
   padding: 50px;
 }

 .resume-builder-modern .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(26, 50, 93, 0.9);
   /* dark blue overlay */
   z-index: 1;
 }

 .resume-builder-modern .btn-warning {
   background-color: #F7cb45;
   border-color: #F7cb45;
   color: #1a325d;
 }

 .resume-builder-modern .btn-warning:hover {
   background-color: #e6b937;
   color: #1a325d;
 }


 /* blog section */

 .blog-section {
   padding: 60px 30px;
   background-color: #fff;
   text-align: center;
 }

 .blog-list {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 25px;
   max-width: 1100px;
   margin: auto;
   text-align: left;
 }

 .blog-card {
   background-color: #f9f9f9;
   border-radius: 10px;
   padding: 0 0 20px;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   overflow: hidden;
 }

 .blog-card:hover {
   transform: translateY(-5px);
 }

 .blog-card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
 }

 .blog-card h3 {
   font-size: 18px;
   color: #023047;
   margin: 10px 20px 5px;
 }

 .blog-date {
   font-size: 13px;
   color: #777;
   margin: 10px 20px 0;
 }

 .blog-card p {
   font-size: 15px;
   color: #444;
   margin: 10px 20px;
 }

 .read-more {
   color: #FCCB06;
   font-weight: bold;
   text-decoration: none;
   margin-left: 20px;
 }

 .read-more:hover {
   text-decoration: underline;
 }


 /* counselling section */

 .counselling-section {
   background: linear-gradient(to right, #222E50, #023047);
   color: white;
   text-align: center;
   padding: 70px 30px;
 }

 .counselling-content h2 {
   font-size: 32px;
   margin-bottom: 15px;
 }

 .counselling-content p {
   font-size: 18px;
   margin-bottom: 25px;
   color: #e0f7fa;
 }

 .counselling-btn {
   background-color: #ffb703;
   color: #023047;
   padding: 12px 30px;
   font-weight: bold;
   border-radius: 6px;
   text-decoration: none;
   display: inline-block;
   transition: background-color 0.3s ease;
 }

 .counselling-btn:hover {
   background-color: #FCCB06;
   color: white;
 }


 /* footer */


 .site-footer-modern {
   background-color: #1a325d;
   color: white;
 }

 .site-footer-modern h5 {
   color: #F7cb45;
   font-weight: 600;
   margin-bottom: 1rem;
 }

 .site-footer-modern ul li a {
   color: #ffffffb2;
   text-decoration: none;
   display: block;
   margin-bottom: 6px;
   transition: color 0.3s ease;
 }

 .site-footer-modern ul li a:hover {
   color: #F7cb45;
 }

 .footer-logo {
   max-width: 180px;
 }

 .social-icons a {
   color: #F7cb45;
   font-size: 18px;
   margin-right: 12px;
   transition: color 0.3s ease;
 }

 .social-icons a:hover {
   color: white;
 }

 .footer-newsletter-form .form-control {
   border-radius: 30px 0 0 30px;
   border: none;
   padding: 10px 15px;
   font-size: 15px;
 }

 .footer-newsletter-form .btn {
   border-radius: 0 30px 30px 0;
   font-weight: 600;
   padding: 10px 20px;
   transition: background 0.3s ease;
 }

 .footer-newsletter-form .btn:hover {
   background-color: #e6b733;
 }




 /* WhatsApp float button */

 .whatsapp-float {
   position: fixed;
   bottom: 83px;
   right: 30px;
   background-color: #25d366;
   color: white;
   font-size: 34px;
   padding: 15px;
   border-radius: 50%;
   height: 60px;
   width: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   z-index: 1000;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
   text-align: center;
   transition: background 0.3s;
 }

 .whatsapp-float:hover {
   background-color: #128c7e;
 }

 /* why chpose us */

 .why-us-modern .card:hover {
   background-color: #F7cb45 !important;
   color: #1a325d;
   transform: translateY(-5px);
   transition: all 0.3s ease;
 }

 .why-us-modern .card:hover .card-title,
 .why-us-modern .card:hover .card-text,
 .why-us-modern .card:hover i {
   color: #1a325d !important;
 }

 .why-us-modern {
   background-image: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1');
   background-size: cover;
   background-position: center;
   position: relative;
   z-index: 1;
 }

 .why-us-modern .bg-overlay {
   background: rgba(26, 50, 93, 0.66);
   /* dark blue overlay */
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   z-index: 0;
 }

 .why-us-modern .card {
   background-color: rgba(255, 255, 255, 0.05);
   border-radius: 15px;
   transition: all 0.3s ease;
   padding: 20px;
   min-width: 280px;
   box-shadow: 1px 1px 5px 1px rgba(221, 217, 217, 0.52);
 }

 .why-us-modern .card:hover {
   background-color: #F7cb45;
   color: #1a325d;
 }

 .why-us-modern .card:hover h5,
 .why-us-modern .card:hover p,
 .why-us-modern .card:hover i {
   color: #1a325d !important;
 }

 /* testimonial */

 .testimonials-section {
   background-color: #f8f9fa;
 }

 .section-title {
   font-size: 2.5rem;
   font-weight: 700;
   color: #1a325d;
 }

 .testimonial-box {
   background-color: #ffffff;
   border: 2px solid #1a325d12;
   transition: all 0.3s ease-in-out;
 }

 .testimonial-box:hover {
   box-shadow: 0 12px 20px rgba(26, 50, 93, 0.15);
   transform: translateY(-5px);
 }

 .quote-icon {
   font-size: 30px;
   color: #F7cb45;
   margin-bottom: 15px;
 }

 .testimonial-text {
   font-size: 1rem;
   color: #1a325d;
   margin-bottom: 15px;
 }

 .testimonial-author {
   font-weight: 600;
   color: #1a325d;
 }

 /* scroll to top */

 #scrollToTopBtn {
   display: none;
   position: fixed;
   bottom: 10px;
   right: 30px;
   z-index: 999;
   background-color: #fb8500;
   color: white;
   border: none;
   padding: 12px 16px;
   border-radius: 50%;
   font-size: 20px;
   cursor: pointer;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   transition: background 0.3s;
 }

 #scrollToTopBtn:hover {
   background-color: #d97706;
 }

 /* all jobs */

 .employers-section {
   padding: 60px 20px;
   background-color: #f9f9f9;
   text-align: center;
 }

 .employers-section .section-title {
   font-size: 32px;
   margin-bottom: 30px;
   color: #023047;
 }

 @media (max-width: 430px) {
   .para {
     flex-direction: column;
     justify-content: space-between;
   }
 }

 .pagination {
   justify-content: center;
 }

 .pagination .page-item.active .page-link {
   background-color: #1a325d;
   border-color: #1a325d;
   color: #F7cb45;
 }

 .pagination .page-link {
   color: #1a325d;
 }

 .pagination .page-link:hover {
   background-color: #f7cb45;
   color: #1a325d;
 }

 .pagination .page-item.disabled .page-link {
   color: #ccc;
 }

 /* General Text Styles */
 h5,
 .card-title {
   color: #1a325d;
   font-weight: 600;
 }

 .text-secondary {
   color: #6c757d !important;
 }

 /* Form Controls */
 form input.form-control,
 form select.form-select {
   border-radius: 6px;
   border: 1px solid #ced4da;
   transition: all 0.3s ease;
 }

 form input.form-control:focus,
 form select.form-select:focus {
   box-shadow: 0 0 0 0.2rem rgba(26, 50, 93, 0.25);
   border-color: #1a325d;
 }

 /* Buttons */
 .btn-warning {
   background-color: #F7cb45;
   border: none;
   font-weight: 600;
   transition: 0.3s ease;
 }

 .btn-warning:hover {
   background-color: #e0b832;
   color: #fff;
 }

 /* Employer Card */
 .card {
   border-radius: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   box-shadow: 1px 1px 5px 1px rgba(221, 217, 217, 0.944);
   /* width: 100%; */
   font-size: 20px;
 }

 .card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 20px rgba(109, 104, 104, 0.51);
 }

 /* Badge Styling */
 .badge.bg-warning {
   font-size: 0.85rem;
   padding: 0.4em 0.75em;
   background-color: #F7cb45 !important;
   color: #1a325d;
   font-weight: 600;
 }

 /* Alerts */
 .alert-warning {
   background-color: #fff8e1;
   border-left: 6px solid #F7cb45;
   color: #6b5e00;
 }

 /* Mobile Adjustments */
 @media (max-width: 576px) {

   .form-select,
   .form-control {
     width: 100% !important;
   }

   .btn {
     width: 100%;
   }

   form.d-flex {
     flex-direction: column;
   }
 }


 /* find - jobs */

 .job-list-section {
   padding: 60px 20px;
   background: #f7f9fc;
 }

 .job-container {
   display: flex;
   gap: 40px;
   max-width: 1200px;
   margin: auto;
   flex-wrap: wrap;
 }

 .job-sidebar {
   flex: 1 1 280px;
   background: white;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
 }

 /* @media screen and (max-width: 768px) {
   .job-container {
     flex-direction: column {
  
 } */

 .job-sidebar h3 {
   margin-top: 20px;
   margin-bottom: 10px;
   color: #023047;
   font-size: 16px;
 }

 .job-container {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   animation: fadeInUp 1s ease;
 }

 @keyframes fadeInUp {
   0% {
     opacity: 0;
     transform: translateY(20px);
   }

   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* === Sidebar Filter === */
 .job-sidebar {
   flex: 1 1 250px;
   background-color: #fff;
   padding: 30px;
   border-radius: 10px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
   position: sticky;
   top: 120px;
   max-height: calc(100vh - 120px);
 }

 @media (max-width: 991px) {
   .job-sidebar {
     max-height: calc(100vh - 300px);
     overflow-y: auto;
   }
 }

 .job-sidebar h3 {
   font-size: 16px;
   margin-bottom: 10px;
   font-weight: 600;
   color: #1a325d;
 }

 .input-field {
   width: 100%;
   padding: 10px 14px;
   border: 1px solid #ccc;
   border-radius: 8px;
   margin-bottom: 18px;
   transition: all 0.3s ease;
 }

 .input-field:focus {
   border-color: #1a325d;
   box-shadow: 0 0 0 2px #f7cb45a1;
   outline: none;
 }

 /* === Filter Button === */
 .find-btn {
   background-color: #f7cb45;
   border: none;
   padding: 12px;
   width: 100%;
   font-weight: 600;
   color: #1a325d;
   border-radius: 6px;
   transition: all 0.3s ease;
 }

 .find-btn:hover {
   background-color: #e3b828;
   transform: translateY(-1px);
 }

 /* === Job Header & Sort === */
 .job-header {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 15px;
   margin-bottom: 30px;
 }

 .sorting-form select.input-field {
   min-width: 180px;
   font-size: 14px;
 }

 /* === Job Cards === */
 .job-card {
   background: #ffffff;
   border-radius: 12px;
   padding: 25px;
   margin-bottom: 25px;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
   transition: transform 0.25s ease, box-shadow 0.25s ease;
   animation: fadeInUp 0.6s ease forwards;
 }

 .job-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .job-card h4 a {
   color: #1a325d;
   text-decoration: none;
   font-size: 20px;
   font-weight: 600;
   transition: color 0.3s ease;
 }

 .job-card h4 a:hover {
   color: #f7cb45;
 }

 .category {
   font-size: 14px;
   color: #6c757d;
   margin-bottom: 10px;
 }

 .badges {
   margin-bottom: 10px;
 }

 .meta {
   font-size: 13px;
   color: #777;
 }

 /* === No Results === */
 .no-results {
   text-align: center;
   font-size: 16px;
   color: #dc3545;
   margin-top: 40px;
   animation: fadeInUp 0.5s ease;
 }

 /* === Responsive Adjustments === */
 @media (max-width: 991px) {
   .job-container {
     flex-direction: column;
   }

   .job-header {
     flex-direction: column;
     align-items: flex-start;
   }

   .sorting-form {
     flex-direction: column;
     width: 100%;
     gap: 10px;
   }
 }

 /* toggle */
 /* Filter Toggle Button */
 .filter-toggle {
   display: inline-block;
   background-color: #1a325d;
   color: #fff;
   padding: 10px 16px;
   border: none;
   margin: 15px;
   font-weight: bold;
   border-radius: 5px;
   transition: 0.3s;
 }

 .filter-toggle:hover {
   background-color: #f7cb45;
   color: #1a325d;
 }

 /* Wrapper handles open/close */
 .filter-wrapper {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease, padding 0.3s ease;
 }

 .filter-wrapper.open {
   max-height: 1000px;
   /* large enough to show full form */
   padding: 10px 0;
 }

 /* On desktop, always show */
 @media (min-width: 992px) {
   .filter-toggle {
     display: none;
   }

   .filter-wrapper {
     max-height: none !important;
     overflow: visible !important;
     padding: 0 !important;
   }
 }

 /* dhw */


 .input-field {
   width: fit-content;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 6px;
   margin-bottom: 15px;
 }

 .filter-list {
   list-style: none;
   padding: 0;
   margin: 0 0 20px 0;
 }

 .filter-list li {
   margin-bottom: 10px;
   font-size: 14px;
 }

 .find-btn {
   width: 100%;
   background: #1a325d;
   color: white;
   padding: 12px;
   border: none;
   border-radius: 6px;
   font-weight: bold;
   cursor: pointer;
 }

 .job-content {
   flex: 1 1 600px;
 }

 .job-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
   flex-wrap: wrap;
   gap: 10px;
 }

 .job-card {
   background: white;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
   margin-bottom: 20px;
 }

 .job-card h4 {
   font-size: 18px;
   color: #023047;
   margin-bottom: 6px;
 }

 .category {
   font-size: 14px;
   color: #777;
   margin-bottom: 8px;
 }

 .badge {
   display: inline-block;
   padding: 4px 10px;
   border-radius: 5px;
   font-size: 12px;
   color: white;
   margin-right: 6px;
 }

 .badge.full-time {
   background: #4caf50;
 }

 .badge.freelance {
   background: #03a9f4;
 }

 .badge.part-time {
   background: #ff9800;
 }

 .badge.remote {
   background: #ff5722;
 }

 .badge.internship {
   background: #9c27b0;
 }

 .badge.open {
   background: #2a9d8f;
 }

 .badge.closed {
   background: #e76f51;
 }

 /* .badge.closed { background: #e76f51; } */
 .badge.temporary {
   background: #8e44ad;
 }

 .badge.urgent {
   background: #e74c3c;
 }

 .job-card p {
   font-size: 14px;
   color: #555;
   margin-bottom: 10px;
 }


 .job-card .apply-btn:hover {
   background: #1a7f9c;
 }

 .job-card .posted-by {
   font-size: 12px;
   color: #999;
   margin-top: 10px;
 }

 .job-card .posted-by a {
   color: #219ebc;
   text-decoration: none;
 }

 .job-card .posted-by a:hover {
   text-decoration: underline;
 }

 .job-card .featured {
   position: absolute;
   top: 10px;
   right: 10px;
   background: #ff9800;
   color: white;
   padding: 5px 10px;
   border-radius: 5px;
   font-size: 12px;
   font-weight: bold;
 }

 .job-card .featured:hover {
   text-decoration: none;
   color: white;
 }

 .featured {
   color: green;
   font-weight: bold;
   margin-left: 10px;
   font-size: 12px;
 }

 /* job - seeker  */

 .jobseekers-section {
   padding: 60px 20px;
   background: #f7f9fc;
 }

 .jobseekers-container {
   display: flex;
   gap: 40px;
   max-width: 1200px;
   margin: auto;
   flex-wrap: wrap;
 }

 .jobseekers-sidebar {
   flex: 1 1 280px;
   background: white;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
   /* position: sticky; */
   top: 120px;
   max-height: fit-content;
 }

 @media screen and (max-width: 768px) {
   .jobseekers-container {
     flex-direction: column;
   }

   .jobseekers-sidebar {
     margin-bottom: 20px;
   }

   .jobseekers-sidebar {
     min-height: calc(100vh - 160px);
     overflow-y: auto;
   }

 }

 .jobseekers-sidebar h3 {
   margin-top: 20px;
   margin-bottom: 10px;
   color: #023047;
   font-size: 16px;
 }

 .input-field {
   width: fit-content;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 6px;
   margin-bottom: 15px;
 }

 .filter-list {
   list-style: none;
   padding: 0;
   margin: 0 0 20px 0;
 }

 .filter-list li {
   margin-bottom: 10px;
   font-size: 14px;
 }

 .find-btn {
   width: 100%;
   background: #1a325d;
   color: white;
   padding: 12px;
   border: none;
   border-radius: 6px;
   font-weight: bold;
   cursor: pointer;
 }

 .jobseekers-content {
   flex: 1 1 600px;
 }

 .jobseekers-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
   flex-wrap: wrap;
   gap: 10px;
 }

 .candidate-card {
   background: white;
   padding: 20px;
   border-radius: 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
   margin-bottom: 20px;
 }

 .candidate-info {
   display: flex;
   align-items: center;
   gap: 15px;
 }

 .candidate-info h4 {
   margin: 0;
   font-size: 20px;
   font-weight: bold;
   text-transform: capitalize;
   color: #023047;
 }

 .view-btn {
   background: #1a325d;
   color: white;
   padding: 8px 16px;
   border: none;
   border-radius: 6px;
   font-weight: 500;
   cursor: pointer;
 }

 .view-btn:hover {
   background: #234077;
 }

 .candidate-info img {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   object-fit: cover;
 }

 .candidate-info p {
   margin: 0;
   font-size: 14px;
   font-style: italic;
   color: #555;
 }

 .no-results {
   text-align: center;
   font-size: 18px;
   color: #666;
   margin-top: 50px;
   font-weight: bold;
   padding: 20px;
 }

 ::-webkit-scrollbar {
   width: 8px;
 }

 ::-webkit-scrollbar-thumb {
   background-color: #1a325d;
   border-radius: 10px;
 }

 ::-webkit-scrollbar-track {
   background-color: #f7f7f7;
 }

 /* services section */

 .services-section {
   background: linear-gradient(to right, #1a325d, #1a325df1, #1a325df2);
 }

 .service-card {
   background-color: rgba(255, 255, 255, 0.05);
   border-radius: 12px;
   transition: all 0.3s ease;
   backdrop-filter: blur(4px);
   border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .service-card:hover {
   transform: translateY(-6px);
   background-color: rgba(255, 255, 255, 0.1);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
 }

 .service-icon i {
   font-size: 2.5rem;
   color: #ffc107;
 }

 .service-card h5 {
   color: #fff !important;
 }

 .notes {
   background-color: #1a325d;
   color: #e0b832;
   padding: 12px;
   border-radius: 10px;
   box-shadow: 2px 2px 8px rgba(218, 217, 217, 0.177);
   /* margin-bottom: 20px; */
 }

 .main-content {
   display: flex;
 }

 /*main {*/
 /*  padding: 30px;*/
 /*}*/

 @media screen and (max-width: 768px) {
   .main-content {
     flex-direction: column;
   }

   .main {
     /*padding: 0% !important;*/
   }
 }