  :root {
            --primary: #1a4b8c;
            --primary-light: #2a5da1;
            --secondary: #f5a623;
            --dark: #2d3748;
            --light: #f7fafc;
            --gray: #e2e8f0;
            --dark-gray: #718096;
            --success: #38a169;
            --danger: #e53e3e;
        }

        [data-theme="dark"] {
            --primary: #2a5da1;
            --primary-light: #3a6db1;
            --secondary: #ffb732;
            --dark: #f7fafc;
            --light: #1a202c;
            --gray: #2d3748;
            --dark-gray: #a0aec0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s, color 0.3s;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        a {
    text-decoration: none;
}
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header & Navigation */
        header {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0px;
        }
        @media(max-width:767px){
            .nav-container{
                padding: 15px 15px;
            }
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 20px;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
        }

        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .theme-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .search-bar {
    max-width: 600px;
    margin: 20px auto;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px !important;
    border: 2px solid #0b1d4b;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-submit {
    background-color: #0b1d4b;
    color: #fff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.search-submit i {
    /* no text, just icon */
}
.search-bar button {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

        .job-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
.filter-btn {
    font-weight: 500;
}

        .filter-btn {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--secondary);
            color: var(--dark);
        }

        /* Main Content */
        .main-content {
            display: flex;
            padding: 40px 0;
        }

        .content {
            flex: 1;
            margin-right: 30px;
        }

        .sidebar {
            width: 300px;
        }

        /* Latest Jobs Section */
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }
        .job-cards {
            display: grid;
            /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
            gap: 20px;
        }
        .single-post .main-content{
            display: block !important;
        }
        .job-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        [data-theme="dark"] .job-card {
            background-color: var(--gray);
        }

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

        .job-card-header {
            padding: 15px;
            border-bottom: 1px solid var(--gray);
        }
        
        .job-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .job-card-org {
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
        .job-card-detail {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .job-card-detail i {
            margin-right: 10px;
            color: var(--primary);
        }

        .job-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: rgba(245, 166, 35, 0.1);
        }

        .job-card-date {
            font-size: 0.9rem;
            color: var(--danger);
            font-weight: 500;
        }

        .apply-btn {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .apply-btn:hover {
            background-color: #e69500;
        }

        /* Categories Grid */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .category-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s;
            cursor: pointer;
        }

        [data-theme="dark"] .category-card {
            background-color: var(--gray);
        }

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

        .category-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .category-title {
            font-weight: 600;
        }

        /* Sidebar */
        .sidebar-widget {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-bottom: 20px;
        }

        [data-theme="dark"] .sidebar-widget {
            background-color: var(--gray);
        }

        .widget-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary);
            border-bottom: 2px solid var(--gray);
            padding-bottom: 10px;
        }

        .important-links {
            list-style: none;
        }

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

        .important-links a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .important-links a:hover {
            color: var(--primary);
        }

        .important-links i {
            margin-right: 10px;
            color: var(--primary);
        }

        .quick-update {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--gray);
        }

        .quick-update:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .update-badge {
            background-color: var(--secondary);
            color: var(--dark);
            font-size: 0.8rem;
            padding: 3px 8px;
            border-radius: 4px;
            margin-right: 10px;
            font-weight: 600;
        }

        .update-text {
            font-size: 0.9rem;
        }
           /* New: Exam Preparation Section */
        .exam-prep {
            background-color: #f8f9fa;
            padding: 60px 0;
            margin: 40px 0;
        }

        [data-theme="dark"] .exam-prep {
            background-color: #2d3748;
        }

        .prep-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .prep-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s;
        }

        [data-theme="dark"] .prep-card {
            background-color: var(--gray);
        }

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

        .prep-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .prep-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* New: Previous Year Papers Section */
        .pyq-section {
            padding: 40px 0;
        }

        .pyq-tabs {
            display: flex;
            border-bottom: 1px solid var(--gray);
            margin-bottom: 20px;
        }

        .pyq-tab {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            border-bottom: 3px solid transparent;
        }

        .pyq-tab.active {
            border-bottom-color: var(--secondary);
            color: var(--primary);
        }

        .pyq-content {
            display: none;
        }

        .pyq-content.active {
            display: block;
        }

        .pyq-list {
            list-style: none;
        }

        .pyq-list li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--gray);
        }

        .pyq-list li:last-child {
            border-bottom: none;
        }

        .pyq-list a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pyq-list a:hover {
            color: var(--primary);
        }

        .pyq-list i {
            color: var(--primary);
        }

        /* New: Admit Card Status Section */
        .admit-card-status {
            background-color: var(--primary);
            color: white;
            padding: 40px 0;
            border-radius: 8px;
            margin: 40px 0;
        }

        .status-form {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            max-width: 600px;
            margin: 0 auto;
        }

        [data-theme="dark"] .status-form {
            background-color: var(--gray);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        [data-theme="dark"] .form-group label {
            color: var(--dark);
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--gray);
            border-radius: 4px;
            font-size: 1rem;
        }

        .status-btn {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
        }

        /* New: Blog/Articles Section */
        .blog-section {
            padding: 40px 0;
        }

        .blog-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .blog-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        [data-theme="dark"] .blog-card {
            background-color: var(--gray);
        }

        .blog-image {
            height: 180px;
            background-color: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            font-size: 0.8rem;
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .blog-excerpt {
            font-size: 0.9rem;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .read-more {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(3px);
        }
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 50px 0 20px;
        }

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

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

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .content {
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .sidebar {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .container-ad {
    width: 100%;
    padding-top: 50px;
    max-width: 1300px;
    justify-self: center;
    display: grid
;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
}
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding-top: 30px;
                transition: left 0.3s;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 0 0 20px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .search-bar {
                flex-direction: column;
            }

            .search-bar input {
                border-radius: 4px;
                margin-bottom: 5px;
            }

            .search-bar button {
                border-radius: 4px;
                padding: 15px;
            }

            .job-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-out forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }


          .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .text-rotator {
            min-height: 60px; /* Adjust based on your largest text */
            display: inline-block;
            text-align: center;
        }



          .container-ad {
            width: 100%;
            padding-top: 50px;
            max-width: 1300px;
            justify-self: center;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: auto;
    }
    .box {
      border: 2px solid #1a4b8c;
      padding: 10px;
      background: #fff;
    }
    .box h2 {
      background: #1a4b8c;
      color: #fff;
      font-size: 20px;
      margin: -10px -10px 10px -10px;
      padding: 8px;
      text-align: center;
    }
    .box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .box ul li {
      margin-bottom: 6px;
    }
    .box ul li a {
    text-decoration: none;
    color: #1a4b8c;
    font-size: 14px;
    font-weight: 600;
}
    .box ul li a:hover {
    text-decoration: none;
    color: #f4a523;
}
/* Remove default bullets and padding */
.box ul {
  padding: 0;
  margin: 0;
}

/* Style for li */
.box ul li {
  font-size: 14px;        /* text size */
  list-style: none;        /* default bullet remove */
  position: relative;      /* pseudo-element ke liye */
  margin-bottom: 8px;      /* spacing between items */
  padding-left: 20px;      /* arrow ke liye space */
  color: #0b1d4b;          /* text color */
}

/* Arrow before li text */
.box ul li::before {
  content: '➤';            /* arrow symbol */
  position: absolute;
  left: 0;                 /* li ke start me align */
  top: 0;                  /* top aligned, center nahi */
  color: #ff5722;          /* arrow color */
  font-size: 14px;         /* arrow size same as text */
  transition: transform 0.3s;
}

/* Optional: hover effect */
.box ul li:hover::before {
  transform: translateX(5px); /* arrow slide effect on hover */
}

.box ul li a {
  text-decoration: none;
  color: inherit;           /* li ka color follow kare */
  transition: color 0.3s;
}

.box ul li a:hover {
  color: #ff5722;           /* text color on hover */
}


    /* latest job  css */

    .listings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .sort-options {
            display: flex;
            align-items: center;
        }

        .sort-options label {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .sort-options select {
            padding: 8px 12px;
            border: 1px solid var(--gray);
            border-radius: 4px;
            background-color: white;
            color: var(--dark);
        }

        [data-theme="dark"] .sort-options select {
            background-color: var(--gray);
            border-color: var(--dark-gray);
        }

        .job-listings {
            display: grid;
            gap: 20px;
        }

        .job-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        [data-theme="dark"] .job-card {
            background-color: var(--gray);
        }

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

        .job-card.featured {
            border-left: 4px solid var(--secondary);
        }

        .job-card-header {
            padding: 20px;
            border-bottom: 1px solid var(--gray);
            display: flex;
            align-items: flex-start;
        }

        .job-info {
            flex: 1;
        }

        .job-org {
            color: var(--dark-gray);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

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

        .job-detail {
            flex: 1;
            min-width: 200px;
        }

        .detail-title {
            font-size: 0.8rem;
            color: var(--dark-gray);
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .detail-value {
            font-weight: 500;
        }

        .job-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: rgba(245, 166, 35, 0.1);
        }

        .job-date {
            font-size: 0.9rem;
            color: var(--danger);
            font-weight: 500;
        }

        .job-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s;
        }

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

        .btn-primary:hover {
            background-color: #e69500;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: rgba(26, 75, 140, 0.1);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .pagination-list {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .pagination-item a, .pagination-item span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
        }

        .pagination-item a {
            color: var(--dark);
            background-color: white;
            border: 1px solid var(--gray);
        }

        [data-theme="dark"] .pagination-item a {
            background-color: var(--gray);
        }

        .pagination-item a:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination-item.active a {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination-item.disabled span {
            color: var(--dark-gray);
            background-color: var(--gray);
        }

        .listings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .sort-options {
            display: flex;
            align-items: center;
        }

        .sort-options label {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .sort-options select {
            padding: 8px 12px;
            border: 1px solid var(--gray);
            border-radius: 4px;
            background-color: white;
            color: var(--dark);
        }

        [data-theme="dark"] .sort-options select {
            background-color: var(--gray);
            border-color: var(--dark-gray);
        }

        .job-listings {
            display: grid;
            gap: 20px;
        }

        .job-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        [data-theme="dark"] .job-card {
            background-color: var(--gray);
        }

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

        .job-card.featured {
            border-left: 4px solid var(--secondary);
        }

        .job-card-header {
            padding: 20px;
            border-bottom: 1px solid var(--gray);
            display: flex;
            align-items: flex-start;
        }

        .job-info {
            flex: 1;
        }


        .job-org {
            color: var(--dark-gray);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

       

        .job-card-body {
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .job-detail {
            flex: 1;
            min-width: 200px;
        }

        .detail-title {
            font-size: 0.8rem;
            color: var(--dark-gray);
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .detail-value {
            font-weight: 500;
        }

        .job-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: rgba(245, 166, 35, 0.1);
        }

        .job-date {
            font-size: 0.9rem;
            color: var(--danger);
            font-weight: 500;
        }

        .job-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s;
        }

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

        .btn-primary:hover {
            background-color: #e69500;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: rgba(26, 75, 140, 0.1);
        }
        /* Pagination container */
.pagination {
    text-align: center;
    margin: 30px 0;
}

/* Remove default list styles */
.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
}

/* Pagination links and current page */
.pagination .page-numbers {
    display: flex;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Current page style */
.pagination .page-numbers.current {
    /* background-color: #1e40af; Primary color */
    color: black;
    border-color: #1e40af;
    cursor: default;
}

/* Hover effect */
.pagination .page-numbers:hover:not(.current) {
    background-color: #1e40af;
    /* color: #fff; */
    border-color: #1e40af;
}

/* Next/prev button icon */
.pagination .next i,
.pagination .prev i {
    font-size: 14px;
}

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .pagination-list {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .pagination-item a, .pagination-item span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
        }

        .pagination-item a {
            color: var(--dark);
            background-color: white;
            border: 1px solid var(--gray);
        }

        [data-theme="dark"] .pagination-item a {
            background-color: var(--gray);
        }

        .pagination-item a:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination-item.active a {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination-item.disabled span {
            color: var(--dark-gray);
            background-color: var(--gray);
        }
        .job-cards {
    display: grid
;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)) !important;
    gap: 20px;
}


/* contact us */
   /* Page Header */
        .page-header {
            background: linear-gradient(to right, #2c77ba, #1a5276);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 8px;
        }
        
        .page-header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-info h2 {
            color: #1a5276;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        
        .info-item {
            display: flex;
            margin-bottom: 20px;
        }
        
        .info-item .icon {
            background: #1a5276;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .info-content h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-form h2 {
            color: #1a5276;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        #your-message {
    height: 70px; /* Set height of textarea */
}

        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .form-group textarea {
            min-height: 70px;
            resize: vertical;
        }
        
        .submit-btn {
            background: #1a5276;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #2c77ba;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 50px;
        }
        
        .faq-section h2 {
            color: #1a5276;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        
        .faq-question {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 10px;
            color: #1a5276;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: #555;
            padding: 10px 0;
            display: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
            
            .page-header {
                padding: 30px 0;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .page-header p {
                font-size: 16px;
                padding: 0 15px;
            }
        }



        /* latest */
          /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 50px 0 30px;
            margin-bottom: 30px;
        }

        .page-header h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            text-align: center;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }

        .breadcrumb li {
            margin: 0 10px;
            position: relative;
        }

        .breadcrumb li:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: -12px;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* Main Content */
        .main-content {
            display: flex;
            padding: 20px 0 40px;
        }

        .sidebar {
            width: 280px;
            margin-right: 30px;
            flex-shrink: 0;
        }

        .content {
            flex: 1;
        }

        /* Filters Widget */
        .widget {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-bottom: 20px;
        }

        [data-theme="dark"] .widget {
            background-color: var(--gray);
        }

        .widget-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray);
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-group h4 {
            font-size: 1rem;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .filter-options {
            list-style: none;
        }

        .filter-options li {
            margin-bottom: 8px;
        }

        .filter-options label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .filter-options input[type="checkbox"] {
            margin-right: 10px;
            accent-color: var(--primary);
        }

        .filter-options .count {
            margin-left: auto;
            color: var(--dark-gray);
            font-size: 0.8rem;
        }

        .apply-filters {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
        }

        .apply-filters:hover {
            background-color: #e69500;
        }

        /* Job Listings */
        .listings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .sort-options {
            display: flex;
            align-items: center;
        }

        .sort-options label {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .sort-options select {
            padding: 8px 12px;
            border: 1px solid var(--gray);
            border-radius: 4px;
            background-color: white;
            color: var(--dark);
        }

        [data-theme="dark"] .sort-options select {
            background-color: var(--gray);
            border-color: var(--dark-gray);
        }

        .job-listings {
            display: grid;
            gap: 20px;
        }

        .job-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        [data-theme="dark"] .job-card {
            background-color: var(--gray);
        }

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

        .job-card.featured {
            border-left: 4px solid var(--secondary);
        }

        .job-card-header {
            padding: 20px;
            border-bottom: 1px solid var(--gray);
            display: flex;
            align-items: flex-start;
        }

        .job-logo {
            width: 40px;
            height: 40px;
            background-color: var(--gray);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .job-info {
            flex: 1;
        }

        .job-title {
            font-size: 1rem;
            font-weight: 600;
            margin-top: 5px;
            color: var(--primary);
        }

        .job-org {
            color: var(--dark-gray);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .job-detail {
            flex: 1;
            min-width: 200px;
        }

        .detail-title {
            font-size: 0.8rem;
            color: var(--dark-gray);
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .detail-value {
            font-weight: 500;
        }

        .job-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: rgba(245, 166, 35, 0.1);
        }

        .job-date {
            font-size: 0.9rem;
            color: var(--danger);
            font-weight: 500;
        }

        .job-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s;
        }

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

        .btn-primary:hover {
            background-color: #e69500;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: rgba(26, 75, 140, 0.1);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .pagination-list {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .pagination-item a, .pagination-item span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
        }

        .pagination-item a {
            color: var(--dark);
            background-color: white;
            border: 1px solid var(--gray);
        }

        [data-theme="dark"] .pagination-item a {
            background-color: var(--gray);
        }

        .pagination-item a:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination-item.active a {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination-item.disabled span {
            color: var(--dark-gray);
            background-color: var(--gray);
        }


