 * {
   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.redesigned {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float.redesigned i {
    font-size: 20px;
}

.whatsapp-float.redesigned:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.whatsapp-float.redesigned span {
    white-space: nowrap;
}

 /* 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: #f0cd5e;
 }

 .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: 20px;
   background: #f7f9fc;
 }

 .job-container {
   display: flex;
   gap: 10px;
   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);
 }

 .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;
     gap: 1px;
   }

   .job-header {
     /*flex-direction: column;*/
     align-items: flex-start;
   }

   .sorting-form {
     flex-direction: row;
     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: 16px;
   /*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;
     padding: 5px !important;
   }

   .main {
     padding: 10px !important;
            margin-bottom: 10px;
     
   }
   .main-conatent{
   }
 }
 
 .section-head{
    display: flex;
    justify-content: space-between;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 800;
}

.section-head p {
  color: #6b7280;
  font-size: 16px;
}

.job-card-pro2 {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  /*height: 100%;*/
}

.job-card-pro2:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

/* Image */
.job-image {
  position: relative;
  /*width: 40%;*/
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-type {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* Body */
.job-body {
  padding: 24px;
  /*width: 60%;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-body h5 {
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #f7cb45;
}

.job-desc {
  color: #374151;
  line-height: 1.6;
  margin: 7px 0 9px;
}

.job-info {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #6b7280;
}

.job-info i {
  color: #2563eb;
  margin-right: 5px;
}

/* Footer */
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.company {
  font-size: 14px;
  color: #374151;
  font-weight: 600;
  text-decoration: none;
}

.apply-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.apply-btn:hover {
  background: linear-gradient(135deg,#1e40af,#1e3a8a);
}

/* Responsive */
  .job-card-pro2 {
    flex-direction: column;
  }

  .job-image,
  .job-body {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    }

  .job-image {
    height: 200px;
  }
  .job-footer{
      margin-top: 12px;
      font-size: 12px;
  }
  .job-footer a {
      font-size: 11px;
      padding:6px 8px;
  }
  .job-body {
      padding: 10px;
  }

  .about-section{
      padding:20px 10px ;
  }
  .feature{
      display: flex;
      flex-direction: column;
  }
@media (max-width: 768px) {
  .section-head{
      display: flex;
      flex-direction: column;
  }
}


/* ------------------------------------------------------------   INDEX.PHP   ----------------------------------------------------------*/

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #1a325d;
            /* Dark blue for better visibility */
            border-radius: 50%;
            padding: 18px !important;
            /* Increase size */
        }
        .carousel-control-prev-icon:hover,
        .carousel-control-next-icon:hover {
            background-color: #F7cb45;
            /* Highlight color on hover */
        }
        .carousel-indicators li {
            background-color: #1a325d;
            /* Dark blue for indicators */
        }
        .carousel-indicators li.active {
            background-color: #F7cb45;
            /* Highlight color for active indicator */
        }
        @media screen and (min-width: 768px) {
            .carousel-item img {
                height: 500px;
                /* Fixed height for smaller screens */
            }
            .carousel-item video {
                /* height: 500px; */
                /* Fixed height for smaller screens */
            }
        }
        .job-footer a {
            background-color: #1a325d !important;
            color: #F7cb45 !important;
            border-radius: 20px;
            padding: 8px 16px;
            transition: background-color 0.3s, color 0.3s;
            font-weight: 600;
        }
        button:hover {
            background-color: transparent !important;
            color: #1a325d !important;
        }
        .role-buttons {
            display: flex;
            justify-content: center;
            /* Center align buttons */
            gap: 15px;
            /* Spacing between buttons */
            flex-wrap: wrap;
            /* Wrap on small screens */
        }

        .btn-role {
            background: transparent;
            /* Blue gradient */
            border: none;
            color:  #ffc107;
            /* padding: 12px 25px; */
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            /* Rounded pill style */
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 150px;
            /* Same width look */
            text-transform: uppercase;
            letter-spacing: 1px;
            /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
             border-bottom: 2px solid red;
            font-weight: 700;
        }

        .btn-role:hover {
            background: transparent;
            color: #1a325d !important;
            /* Darker hover */
            transform: translateY(-3px);
            box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.15);
        }

        .btn-role:active {
            transform: translateY(1px);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
        }
        
        .featured-jobs-pro {
  background: #f8fafc;
}
.section-head{
    display: flex;
    justify-content: space-between;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 800;
}

.section-head p {
  color: #6b7280;
  font-size: 16px;
}

.job-card-pro2 {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  /*height: 100%;*/
}

.job-card-pro2:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

/* Image */
.job-image {
  position: relative;
  /*width: 40%;*/
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-type {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* Body */
.job-body {
  padding: 24px;
  /*width: 60%;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-body h5 {
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #f7cb45;
}

.job-desc {
  color: #374151;
  line-height: 1.6;
  margin: 7px 0 9px;
}

.job-info {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #6b7280;
}

.job-info i {
  color: #2563eb;
  margin-right: 5px;
}

/* Footer */
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.company {
  font-size: 14px;
  color: #374151;
  font-weight: 600;
  text-decoration: none;
}

.apply-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.apply-btn:hover {
  background: linear-gradient(135deg,#1e40af,#1e3a8a);
}

/* Responsive */
  .job-card-pro2 {
    flex-direction: column;
  }

  .job-image,
  .job-body {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
  }

  .job-image {
    height: 200px;
  }
  .job-footer{
      margin-top: 12px;
      font-size: 12px;
  }
  .job-footer a {
      font-size: 11px;
      padding:6px 8px;
  }
  .job-body {
      padding: 10px;
  }

  .about-section{
      padding:20px 10px ;
  }
  .feature{
      display: flex;
      flex-direction: column;
  }
  .job-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.job-image img {
  width: 100%;
  display: block;
}

/* Job Type */
.job-type {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #0d6efd;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}

/* Share Toggle */
.job-share-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 3;
}

.job-share-toggle:hover {
  background: #0d6efd;
}

/* Share Menu */
.job-share-menu {
  position: absolute;
  top: 60px;
  right: 12px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.25s ease;
  z-index: 4;
}

.job-share-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.job-share-menu .share {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.share.twitter { background: #000; }
.share.linkedin { background: #0a66c2; }
.share.whatsapp { background: #25d366; }
.share.facebook { background: #1877f2; }

  
@media (max-width: 768px) {
  .section-head{
      display: flex;
      flex-direction: column;
  }
}





/*  -----------------------------------------------------------             JOB DETAIL PHP             ----------------------------------------------------------*/



    .card p {
  font-size: 16px !important;
}

.badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  /*color: #fff;*/
  transition: transform 0.3s, box-shadow 0.3s;
}

.badge:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.badge.urgent { background: #dc3545; }
.badge.featured { background: #ffc107; color: #212529; }
.badge.type { background: #0d6efd; }
.badge.category { background: #6c757d; }

/* Animate Urgent/Featured */
.animate-badge {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Layout */
.job-detail-container {
  max-width: 1200px;
  margin: 25px auto;
  /*padding: 0 15px;*/
}

.job-main {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.job-left {
  flex: 2 1 600px;
}

.job-right {
  flex: 1 1 300px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* Job Header Modern */
.job-header-modern {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 120px;
}

/* Image */
.job-image-wrapper {
  position: relative;
  display: block;
}

.job-header-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.header-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.4s ease;
}

.header-bg:hover {
  transform: scale(1.05);
}

/* Overlays */
.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 1;
}

.header-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-bg:hover .header-hover-overlay {
  opacity: 1;
}

/* Header Content */
.header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.job-title-modern {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.company-name-modern {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 2px;
}

.job-location-modern {
  font-size: 0.95rem;
  color: #777;
}

/* View Badge */
.view-badge {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 14px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 13px;
}

/* Info Card */
.job-header-info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
  width: 300px;
}

.company-logo-modern {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 6px;
  background: #fff;
}

/* Meta */
.job-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 25px;
}

.job-meta div {
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Description */
.job-description h3 {
  margin: 20px 0 10px;
}

.job-description p {
  line-height: 1.7;
  color: #495057;
}

/* Action Cards */
.job-action-card,
.other-jobs {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.job-action-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.card .btn {
  width: 100%;
}

/* Other Jobs */
.other-jobs h4 {
  margin-bottom: 15px;
}

.other-job-card {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8f9fa;
  margin-bottom: 10px;
  text-decoration: none;
  color: #212529;
  transition: 0.3s;
}

.other-job-card:hover {
  background: #e9ecef;
}

.other-job-card .badge {
  font-size: 10px;
  padding: 3px 6px;
}

/* Login / WhatsApp */
.login-apply-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e3e6ea;
}

.whatsapp-apply-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
}

.whatsapp-apply-btn:hover {
  background-color: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .job-main {
    flex-direction: column;
  }

  .job-right {
    position: relative;
    top: auto;
  }

  .job-header-modern {
    flex-direction: column;
    height: 450px;
    gap: 1px;
  }

  .job-title-modern {
    font-size: 22px;
  }

  .company-name-modern {
    font-size: 16px;
  }

  .job-location-modern {
    font-size: 14px;
  }
}

@media (max-width: 475px) {
  .job-header-modern {
    height: 450px !important;
    gap: 1px;
  }
  .job-header-info-card{
      flex-direction: row !important;
  }
  .job-badges{
      gap: 4px !important;
  }
}


.job-detail__footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.share-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}



/*   -----------------------------------------------------------    Company page .php         -----------------------------------------------------------    */


body {
    background: #f4f6fb;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Layout */
.main-content {
    display: flex;
    gap: 24px;
}

/* Card */
.card, .readonly {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0px 1px 16px 5px rgb(32 49 90 / 11%);
    width: 100%;
}

/* Header */
.company-header {
    text-align: center;
    margin-bottom: 25px;
}

.company-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: #f1f3f9;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.company-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.company-header span {
    color: #6c757d;
    font-size: 14px;
}

/* Forms */
.form-group {
    margin-bottom: 16px;
}

label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4e73df;
    box-shadow: 0 0 0 3px rgba(78,115,223,.15);
}

/* Buttons */
button, .btn {
    border-radius: 10px;
    padding: 5px 15px;
    font-weight: 500;
    background: #20315a;
    color: #f0cd5e;
    font-size: 18px;
    font-weight: 700;
}

button, .btn:hover{
    color: #20315a;
    background: #f0cd5e;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #20315a, #20315a);
    color: #20315a;
    border: none;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

/* Info text */
.readonly p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
}

.readonly strong {
    color: #111;
}

/* Social links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 18px 0;
}

.social-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    background: #f1f3f9;
    color: #333;
    transition: .2s;
}

.social-links a:hover {
    background: #20315a;
    color: #fff;
}

/* Jobs */
.job-card {
    background: #fafbff;
    border: 1px solid #e4e7f2;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.job-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

/* Message */
.msg {
    background: linear-gradient(135deg, #1cc88a, #17a673);
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 16px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
}

.job-card-hover {
    transition: all 0.3s ease;
    background: aliceblue;
    font-size: 18px;
}

.job-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}





.company-profile-wrapper {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e9f2;
    padding: 25px;
}

/* Header */
.company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.company-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-logo-lg {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #e6ebf2;
    background: #f8fafc;
    padding: 8px;
}

.company-title {
    margin: 0;
    font-weight: 700;
    color: #1a325d;
}

.company-location {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Tabs */
.company-tabs {
    border-bottom: 2px solid #e9edf4;
}

.company-tabs .nav-link {
    font-weight: 600;
    color: #6c757d;
}

.company-tabs .nav-link.active {
    color: #1a325d;
    border-bottom: 3px solid #1a325d;
}

/* Tab Content */
.company-tab-content {
    padding-top: 20px;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

/* Social */
.company-social-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.company-social-row a {
    font-size: 28px;
    color: #1a325d;
    transition: 0.3s;
}

.company-social-row a:hover {
    color: #f0cd5e;
}



.social-media--job {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-media__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-media__link:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Platform colors */
.color-twitter { background: #000; }
.color-linkedin { background: #0077b5; }
.color-whatsapp { background: #25d366; }
.color-facebook { background: #1877f2; }
.color-instagram {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%,
    #285aeb 90%);
}

/* Mobile */
@media (max-width: 576px) {
  .social-media__link {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}



.job-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Header */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-direction: row;
}

.job-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Share Button */
.share-job-btn {
  /*background: #f1f5f9;*/
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.share-job-btn:hover {
  background: #0d6efd;
  color: #fff;
}

/* Badges */
.job-badges {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.badge-urgent {
  background: #fee2e2;
  color: #b91c1c;
}

.badge-featured {
  background: #fef3c7;
  color: #92400e;
}

.badge-type {
  background: #e0f2fe;
  color: #0369a1;
}

.badge-category {
  background: #ede9fe;
  color: #5b21b6;
}

/* Meta Info */
.job-meta-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.job-meta-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #475569;
    background: #d9d9d98c;
    padding: 3px 31px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0px 1px 10px 0px #0a13299e;
}

.job-meta-grid i {
  color: #0d6efd;
  font-size: 1.1rem;
}

/* Sections */
.job-section {
  margin-top: 22px;
}

.job-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.job-section p {
  color: #334155;
  line-height: 1.7;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .job-title {
    font-size: 1.4rem;
  }
}
