/* Base Styles */
:root {
  --primary-color: #004aad;
  --secondary-color: #2e8b57;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #003d8f;
  border-color: #003d8f;
}

.btn-outline-light:hover {
  color: var(--dark-color);
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
}

.section-title:after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--gray);
  font-size: 1.1rem;
}

/* Topbar */
.topbar {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.topbar-contact span {
  margin-right: 15px;
}

.topbar-contact i, .topbar-links i {
  margin-right: 5px;
  color: var(--white);
}

.topbar-links a {
  color: var(--white);
  margin-left: 15px;
}

.topbar-links a:hover {
  color: var(--info-color);
}


/* Logo*/
.logo{
  width: 100%;
  height: 70px;
  margin-top: -10px;
  margin-bottom: -10px;
}

/* Navbar */
.navbar {
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
}

.logo-text span {
  color: var(--secondary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 15px;
  margin-right: 20px;;
  color: var(--dark-color);
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
  position: relative;
}

.hero-slide {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.hero-slide-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/a1-career-slide-1.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/a1-career-slide-2.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/a1-career-slide-3.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-slide .lead {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons .btn {
  margin: 0 10px;
  padding: 12px 25px;
  font-size: 1.1rem;
}

.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-size: 100% 100%;
}

/* Highlights */
.highlights-section {
  background-color: var(--white);
}

.highlight-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 74, 173, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 2rem;
}

.highlight-card h3 {
  font-size: 2.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.highlight-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Client Logos */
.client-logos {
  position: relative;
  overflow: hidden;
}

.logo-slider {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(250px * 8);
}

.logo-slide {
  width: 250px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  max-width: 100%;
  max-height: 80px;
  /*filter: grayscale(100%);*/
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 4));
  }
}

/* Job Categories */
.job-categories {
  background-color: var(--white);
}

.category-card {
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 74, 173, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.category-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Latest Jobs */
.latest-jobs .section-header {
  margin-bottom: 30px;
}

.job-card {
  padding: 25px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  max-width: 80%;
  max-height: 80%;
}

.job-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.company-name {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.job-details {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.job-details span {
  font-size: 0.9rem;
  color: var(--gray);
}

.job-details i {
  margin-right: 5px;
  color: var(--primary-color);
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-time {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
}

.testimonial-card {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-rating {
  color: var(--warning-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--gray);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* CTA */
.cta-section {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section .lead {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
}

.footer-top {
  padding: 60px 0 30px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-about p {
  color: #aaa;
  margin-bottom: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5:after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-top: 5px;
  margin-right: 15px;
  color: var(--primary-color);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #aaa;
  margin-left: 15px;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-slide h1 {
    font-size: 2.5rem;
  }
  
  .hero-slide .lead {
    font-size: 1.1rem;
  }
  
  .highlight-card {
    padding: 20px 15px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .highlight-card h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    display: none;
  }
  
  .hero-slide {
    padding: 80px 0;
  }
  
  .hero-slide h1 {
    font-size: 2rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-about {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero-slide h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .category-card, .job-card, .testimonial-card {
    padding: 20px 15px;
  }
}









/* ===== JOBS PAGE STYLES - UPDATED ===== */

/* Jobs Container */
.jobs-page-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

/* Jobs Header */
.jobs-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d8f 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.jobs-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.jobs-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* Jobs Filters Section */
.jobs-filters-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.filter-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-header h3 {
    color: var(--dark-color);
    margin: 0;
    font-size: 1.5rem;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid #ced4da;
    border-radius: 25px;
    font-size: 0.95rem;
    background: #f8f9fa;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-select, .filter-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: white;
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-select:focus, .filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-filter {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background: #003d8f;
    transform: translateY(-2px);
}

.btn-reset {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #5a6268;
}

/* Jobs Results */
.jobs-results {
    margin-bottom: 2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.results-count span {
    color: var(--primary-color);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-controls label {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    font-size: 0.9rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: white;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Jobs Grid */
.jobs-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Job Card Modern */
.job-card-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.job-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.job-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card-modern:hover::before {
    opacity: 1;
}

.job-header-modern {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.job-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    flex: 1;
}

.job-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-stream-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stream-icon-modern {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Job Details Modern */
.job-details-modern {
    margin: 1.25rem 0;
}

.job-detail-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.job-detail-modern i {
    width: 16px;
    color: var(--primary-color);
    text-align: center;
}

.job-skills-modern {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    border-left: 3px solid var(--primary-color);
}

.skills-label-modern {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skills-list-modern {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Job Footer Modern */
.job-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e9ecef;
}

.job-meta-modern {
    color: var(--gray);
    font-size: 0.8rem;
}

.time-ago-modern {
    font-style: italic;
    color: var(--gray) !important;
}

.apply-btn-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d8f 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.apply-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.4);
    color: white;
}

/* Loading State */
.jobs-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.loading-spinner-modern {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

/* Error State */
.jobs-error {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--danger-color);
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    margin: 2rem 0;
}

.jobs-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--danger-color);
}

/* No Jobs State */
.jobs-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
    background: #f8f9fa;
    border-radius: 10px;
    margin: 2rem 0;
}

.jobs-empty i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

.jobs-empty h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Pagination */
.jobs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-info {
    color: var(--gray);
    font-size: 0.9rem;
}

.pagination-controls {
    display: flex;
    gap: 0.5rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ced4da;
    background: white;
    color: var(--dark-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .jobs-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .jobs-hero {
        padding: 3rem 0;
    }
    
    .jobs-hero h1 {
        font-size: 2.2rem;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .results-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .job-header-modern {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .job-footer-modern {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .filter-actions {
        justify-content: stretch;
    }
    
    .filter-actions button {
        flex: 1;
    }
}

/* Animation for job cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card-modern {
    animation: fadeInUp 0.5s ease forwards;
}

/* Ensure text visibility */
.job-card-modern,
.job-title-modern,
.job-detail-modern,
.skills-label-modern,
.skills-list-modern,
.job-meta-modern {
    color: var(--dark-color) !important;
}

.job-stream-modern,
.time-ago-modern {
    color: var(--gray) !important;
}






        .jobs-hero {
            background: linear-gradient(135deg, #004aad 0%, #003d8f 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
        }
        
        .filter-sidebar {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        
        .job-card {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .job-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        
        .job-card-grid {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .job-card-grid:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        
        .job-badge {
            background: #004aad;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        
        .view-btn.active {
            background: #004aad;
            color: white;
            border-color: #004aad;
        }
        
        .pagination .page-link {
            color: #004aad;
        }
        
        .pagination .page-item.active .page-link {
            background: #004aad;
            border-color: #004aad;
        }











        /* Topbar Dropdown Styles */
.topbar .dropdown-toggle {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.topbar .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.topbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
}

.topbar .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.topbar .dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

/* Login Modal Styles */
.login-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.login-modal .modal-body {
    padding: 0;
}

.login-sidebar {
    background: linear-gradient(135deg, var(--primary-color), #003d8f);
    color: white;
    position: relative;
    overflow: hidden;
}

.login-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.positive-content {
    position: relative;
    z-index: 2;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

/* Form Styles */
.login-form .input-group-text {
    background: #f8f9fa;
    border-right: none;
}

.login-form .form-control {
    border-left: none;
    background: #f8f9fa;
}

.login-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.1);
}

/* Password Toggle */
.password-toggle {
    background: #f8f9fa;
    border-left: none;
    cursor: pointer;
}

.password-toggle:hover {
    background: #e9ecef;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .login-modal .col-lg-6 {
        width: 100%;
    }
    
    .login-sidebar {
        order: -1;
        min-height: 300px;
    }
}

/* Animation for modal entrance */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.modal.fade .modal-dialog {
    animation: slideInFromRight 0.3s ease-out;
}









/*Alert ticker*/

.alert-ticker {
    width: 100%;
    background: #f9a825; /* black background */
    color: #fff;
    display: flex;
    align-items: center;
    /*padding: 0px 0px;*/
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    position: relative;
    z-index: 99999;
    /*height: 36px;  fixed height to keep alignment clean */
}

.alert-label {
    flex-shrink: 0;
    margin-right: 20px;
    padding-right: 10px;
    padding-top:5px;
    padding-bottom:5px;
    padding-left: 10px;
    font-weight: 900;
    z-index: 2;
    background: #000; /* ensures background behind label stays solid */
}

.alert-ticker-content {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%; /* ensures smooth entry */
    animation: ticker-scroll 22s linear infinite;
    font-weight: 700;
    color: #000;
    position: absolute;
    left: calc(10px + 170px); /* adjusts start point below label width */
}

/* Slow smooth scroll */
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.alert-ticker-content:hover {
    animation-play-state: paused;
}




