/* CSS Custom Properties (Variables) */
:root {
  /* Primary Colors */
  --primary-color: #132440;
  --primary-light: #2c4a63;
  --primary-dark: #1a2a38;
  --secondary-color: #00a1b8;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --text-color: #333333;
  --text-muted: #6c757d;
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #132440;
  
  /* Border Colors */
  --border-light: #dee2e6;
  --border-medium: #ced4da;
  
  /* Status Colors */
  --success-color: #28a745;
  --success-light: #20c997;
  --info-color: #17a2b8;
  --info-light: #6f42c1;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  
  /* Shadow Colors */
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  
  /* Overlay Colors */
  --overlay-primary: rgba(33, 52, 72, 0.7);
  --overlay-light: rgba(33, 52, 72, 0.4);
  --white-75: rgba(255, 255, 255, 0.75);
  --white-85: rgba(255, 255, 255, 0.85);
}

/* Base Styles */
html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
  }
  
  @media (min-width: 768px) {
    html {
      font-size: 16px;
    }
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
  }
  a{
    text-decoration: none;
  }
  /* Focus Styles */
  .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--white), 0 0 0 0.25rem var(--primary-color);
  }
  
  /* Header Styles */
  header {
    box-shadow: 0 2px 10px var(--shadow-light);
  }
  
  /* Navigation Styles */
  .navbar-dark .navbar-nav .nav-link {
    color: var(--white-85);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link:focus {
    color: var(--white);
  }
  
  ul.navbar-nav{
    row-gap: 1rem;
  }
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px var(--shadow-light);
    border-radius: 0.25rem;
  }
  
  .dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s ease;
  }
  
  .text-justify{
    text-align: justify !important;
  }
  /* Card Styles */
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 10px 20px var(--shadow-light) !important;
  }
  
  .card-header {
    font-weight: 600;
    border-bottom: none;
  }
  
  /* Button Styles */
  .btn {
    border-radius: 0.25rem;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .btn-sm {
    padding: 0.25rem 0.5rem;
  }
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
 
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
   .btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  .btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
  }

  /* Footer Styles */
  footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
  }
  
  footer a {
    color: var(--white-75);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: var(--white);
  }
  
  /* Hero Banner Styles */
  .hero-banner {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .hero-banner .carousel {
    /* border-radius: 15px; */
    border-end-start-radius: 5px;
    border-end-end-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-medium);
    position: relative;
  }
  

  
  .hero-banner .carousel-item {
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  
  .hero-banner .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 6s ease;
    filter: brightness(0.85) contrast(1.1);
  }
  
  .carousel-item.active img {
    transform: scale(1.06);
  }
  
  .overlay-gradient {
    display: none;
  }
  
  .hero-banner .carousel-caption {
    bottom: 20%;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .animate-caption {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }
  
  .carousel-fade .carousel-item.active {
    opacity: 1;
  }
  
  /* Enhanced Carousel Controls */
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--overlay-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--white-75);
    transition: all 0.3s ease;
  }
  
  .hero-banner .carousel-control-prev {
    left: 15px;
  }
  
  .hero-banner .carousel-control-next {
    right: 15px;
  }
  
  .hero-banner .carousel-control-prev:hover,
  .hero-banner .carousel-control-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px var(--shadow-dark);
    border-color: var(--white-85);
  }
  
  .hero-banner .carousel-control-prev-icon,
  .hero-banner .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
  
  /* Enhanced Carousel Indicators */
  .hero-banner .carousel-indicators {
    bottom: 15px;
    margin-bottom: 0;
  }
  
  .hero-banner .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--white-75);
    border: 2px solid var(--white-85);
    transition: all 0.3s ease;
    opacity: 0.7;
  }
  
  .hero-banner .carousel-indicators .active {
    background-color: var(--white);
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 8px var(--white-75);
  }
  
  /* Carousel Caption Enhancement */
  .hero-banner .carousel-caption {
    bottom: 22%;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--shadow-medium);
    border-radius: 12px;
    border: 1px solid var(--white-75);
  }
  
  .hero-banner .carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px var(--shadow-dark);
  }
  
  .hero-banner .carousel-caption p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white-85);
    text-shadow: 1px 1px 4px var(--shadow-dark);
  }
  
  .hero-banner .carousel-caption .btn {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    color: var(--primary-color);
    border: none;
    box-shadow: 0 6px 20px var(--shadow-medium);
    transition: all 0.3s ease;
  }
  
  .hero-banner .carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-dark);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
  }

  /* Professional Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Enhanced Section Titles */
  .section-title {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
  }
  
  .section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin: 2rem 0;
  }

  /* Service Cards */
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;

.hero-banner .carousel-control-next {
right: 15px;
}

.hero-banner .carousel-control-prev:hover,
.hero-banner .carousel-control-next:hover {
background: var(--primary-color);
transform: translateY(-50%) scale(1.1);
box-shadow: 0 8px 20px var(--shadow-dark);
border-color: var(--white-85);
}

.hero-banner .carousel-control-prev-icon,
.hero-banner .carousel-control-next-icon {
width: 18px;
height: 18px;
background-size: 18px 18px;
}

/* Enhanced Carousel Indicators */
.hero-banner .carousel-indicators {
bottom: 15px;
margin-bottom: 0;
}
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }

  .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  }

  .value-item {
    transition: transform 0.3s ease;
  }

  .value-item:hover {
    transform: translateY(-5px);
  }

  .value-item i {
    transition: transform 0.3s ease;
  }

  .value-item:hover i {
    transform: scale(1.1);
  }

  /* PAG Message Card */
  .pag-message-card {
    position: relative;
    overflow: hidden;
  }

  .pag-message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
  }

  .pag-image-container {
    position: relative;
  }

  .pag-image-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
  }
  
  .pag-image-placeholder:hover {
    transform: scale(1.05);
  }
  
  .pag-image-placeholder i {
    font-size: 2.5rem !important;
    color: var(--primary-color);
  }
  
  .pag-message-card blockquote {
    position: relative;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
  }
  
  .pag-message-card blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    opacity: 0.3;
  }
.blockquote{
  font-size: 1rem;
}
  .pag-signature {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
  }

  /* What's New Section */
  .news-item {
    transition: background-color 0.3s ease;
  }

  .news-item:hover {
    background-color: var(--light-gray);
  }

  .news-scroll::-webkit-scrollbar {
    width: 4px;
  }

  .news-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
  }
  
  .news-scroll::-webkit-scrollbar-thumb {
    background: var(--dark-gray);
    border-radius: 2px;
  }
  
  .news-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--text-color);
  }

  /* Tenders & Contracts Section */
  .tender-item {
    transition: background-color 0.3s ease;
  }

  .tender-item:hover {
    background-color: var(--light-gray);
  }
  
  .tender-scroll::-webkit-scrollbar {
    width: 4px;
  }
  
  .tender-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
  }
  
  .tender-scroll::-webkit-scrollbar-thumb {
    background: var(--dark-gray);
    border-radius: 2px;
  }
  
  .tender-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--text-color);
  }

  /* Quick Links Section */
  .quick-link-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .quick-link-item:hover {
    background-color: var(--light-gray) !important;
    color: inherit;
    border-color: var(--border-light);
    transform: translateX(5px);
  }
  
  .quick-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .quick-link-item:hover .quick-icon {
    background-color: var(--medium-gray);
    transform: scale(1.1);
  }

  .quick-icon i {
    font-size: 1.2rem;
  }

  /* Enhanced Card Headers */
  .card-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  }
  
  .card-header.bg-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-light) 100%) !important;
  }
  
  .card-header.bg-info {
    background: linear-gradient(135deg, var(--info-color) 0%, var(--info-light) 100%) !important;
  }

  /* Tab Styles */
  .nav-tabs {
    border-bottom: none;
  }

  .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    background: var(--light-gray);
    color: var(--text-muted);
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
  }
  
  .nav-tabs .nav-link:hover {
    background: var(--medium-gray);
    color: var(--primary-color);
    border-color: transparent;
  }
  
  .nav-tabs .nav-link.active {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-bottom-color: var(--primary-color);
    box-shadow: 0 -2px 10px var(--shadow-light);
  }

  .tab-content {
    background: var(--white);
  }

  .tab-pane {
    min-height: 350px;
  }

  /* Tab Footer Styles */
  .tab-footer-content .whats-new-footer,
  .tab-footer-content .tenders-footer {
    transition: opacity 0.3s ease;
  }

  .tab-footer-content .tenders-footer.active {
    display: block !important;
  }

  .tab-footer-content .whats-new-footer.d-none {
    display: none !important;
  }
  
  /* Responsive Carousel Design */
  @media (max-width: 768px) {
    .hero-banner .carousel-item {
      height: 350px;
    }
    
    .hero-banner .carousel-caption {
      bottom: 15%;
      padding: 1rem 1.5rem;
      border-radius: 8px;
    }
    
    .hero-banner .carousel-caption h2 {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }
    
    .hero-banner .carousel-caption p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    
    .hero-banner .carousel-caption .btn {
      padding: 8px 20px;
      font-size: 0.9rem;
    }
    
    .hero-banner .carousel-control-prev,
    .hero-banner .carousel-control-next {
      width: 40px;
      height: 40px;
    }
    
    .hero-banner .carousel-control-prev {
      left: 10px;
    }
    
    .hero-banner .carousel-control-next {
      right: 10px;
    }
    
    .hero-banner .carousel-control-prev-icon,
    .hero-banner .carousel-control-next-icon {
      width: 14px;
      height: 14px;
      background-size: 14px 14px;
    }
    
    .hero-banner .carousel-indicators [data-bs-target] {
      width: 8px;
      height: 8px;
      margin: 0 3px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-banner .carousel-item {
      height: 280px;
    }
    
    .hero-banner .carousel-caption {
      bottom: 10%;
      padding: 0.75rem 1rem;
    }
    
    .hero-banner .carousel-caption h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    
    .hero-banner .carousel-caption p {
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
    }
    
    .hero-banner .carousel-caption .btn {
      padding: 6px 16px;
      font-size: 0.8rem;
    }
    
    .hero-banner .carousel-control-prev,
    .hero-banner .carousel-control-next {
      width: 35px;
      height: 35px;
    }
  }
  
  /* Announcement Styles */
  .announcement-scroll::-webkit-scrollbar {
    width: 5px;
  }
  
  .announcement-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
  }
  
  .announcement-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }
  
  /* Quick Access Button Styles */
  .quick-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 0.5rem;
    border-radius: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--light-gray);
    height: 100%;
    box-shadow: 0 4px 6px var(--shadow-light);
  }
  
  .quick-access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow-light);
    color: var(--primary-color);
  }
  
  .quick-access-item.pension:hover {
    background-color: var(--primary-color);
  }
  
  .quick-access-item.gpf:hover {
    background-color: var(--primary-light);
  }
  
  .quick-access-item.forms:hover {
    background-color: var(--primary-color);
  }
  
  .quick-access-item.grievance:hover {
    background-color: var(--primary-light);
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--overlay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .icon-circle i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .quick-access-item:hover .icon-circle {
    background-color: var(--white-75);
  }
  
  .quick-access-item:hover .icon-circle i {
    color: var(--white);
  }
  
  .quick-access-item span {
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }
  
  .hover-card {
    transition: all 0.3s ease;
  }
  
  .hover-card:hover {
    transform: translateY(-5px);
  }
  
  /* Enhanced Animation System */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .animate-fade-left.animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  .animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .animate-fade-right.animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  .animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .animate-scale.animate {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Text Animations */
  .animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .animate-text.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .animate-text-slide {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.7s ease;
  }
  
  .animate-text-slide.animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Staggered Animation Delays */
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }
  
  /* Enhanced Card Animations */
  .card.animate-fade-up {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .card.animate-fade-up.animate {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  
  /* Section Title Animation */
  .section-title.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .section-title.animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Icon Animation */
  .animate-icon {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .animate-icon.animate {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  
  /* Statistics Section Styles */
  .display-4 {
    font-weight: 700;
  }
  
  .bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--white-75);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }
  
  .stat-icon i {
    font-size: 2rem;
    color: var(--white);
  }
  
  .counter-value {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--white), var(--medium-gray));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--white-85);
    font-weight: 500;
  }
  
  .stat-item:hover .stat-icon {
    transform: scale(1.1);
    background-color: var(--white-85);
    box-shadow: 0 0 20px var(--white-75);
  }
  
  /* News & Events Card Styles */
  .card-img-top {
    height: 200px;
    object-fit: cover;
  }
  
  /* Service Item Styles */
  .service-item {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--overlay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
  }
  
  .service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .service-item:hover .service-icon {
    background-color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  .service-item:hover .service-icon i {
    color: var(--white);
  }
  
  /* Message Card Styles */
  .message-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .message-img-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--overlay-light);
    box-shadow: 0 10px 20px var(--shadow-light);
  }
  
  .message-quote {
    position: relative;
    padding: 0 20px;
    line-height: 1.8;
  }
  
  .message-quote:before,
  .message-quote:after {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    opacity: 0.1;
    font-family: Georgia, serif;
  }
  
  .message-quote:before {
    top: -20px;
    left: -10px;
  }
  
  .message-quote:after {
    content: '\201D';
    bottom: -40px;
    right: 0;
  }
  
  /* Document Card Styles */
  .document-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-light) !important;
  }
  
  .document-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: var(--overlay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  
  .document-icon i {
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .document-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .document-meta span {
    display: flex;
    align-items: center;
  }
  
  .document-meta i {
    margin-right: 5px;
  }
  
  .document-card:hover .document-icon {
    background-color: var(--primary-color);
  }
  
  .document-card:hover .document-icon i {
    color: var(--white);
  }
  
  .section-title {
    font-weight: 700;
    position: relative;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--overlay-light));
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    border: none;
  }
  
  .news-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-light) !important;
  }
  
  .news-img-container {
    position: relative;
    overflow: hidden;
  }
  
  .news-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 8px;
    z-index: 2;
    text-align: center;
    box-shadow: 0 4px 10px var(--shadow-light);
    font-weight: 600;
    display: flex;
    flex-direction: column;
  }
  
  .date-day {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
  }
  
  .date-month {
    font-size: 0.85rem;
    text-transform: uppercase;
  }
  
  .news-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
  }
  
  .news-card .card-title {
    font-size: 1.25rem;
    transition: color 0.3s ease;
  }
  
  .news-card:hover .card-title {
    color: var(--primary-color);
  }
  
  .news-card .btn-link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .news-card .btn-link:hover {
    transform: translateX(5px);
  }
  
  /* Footer Styles */
  .footer-area {
    background-color: var(--primary-color);
    color: var(--white-85);
  }
  
  .bg-gradient-footer {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .footer-widget-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .footer-widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--white);
  }
  
  .footer-desc {
    margin-bottom: 0;
    line-height: 1.8;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white-75);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  .footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links li a {
    color: var(--white-85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .footer-links li a i {
    margin-right: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }
  
  .footer-links li a:hover {
    color: var(--white);
    transform: translateX(5px);
  }
  
  .contact-info {
    margin-bottom: 0;
  }
  
  .contact-item {
    display: flex;
    margin-bottom: 15px;
  }
  
  .contact-item i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 5px;
  }
  
  .contact-item p {
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  .footer-bottom {
    background-color: var(--shadow-medium);
    padding: 20px 0;
  }
  
  .copyright {
    color: var(--white-75);
  }
  
  .footer-bottom-links a {
    color: var(--white-75);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: var(--white);
  }
  
  /* Breadcrumb Styles */
  .breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
  }
  
  .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .breadcrumb-item.active {
    color: var(--text-muted);
  }
  
  /* Accessibility Styles */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  /* Timeline Styles */
  .timeline {
    position: relative;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border-light);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
  }
  
  .timeline-marker {
    position: absolute;
    top: 50%;
    left: -9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  .col-md-6:nth-child(even) .timeline-marker {
    left: auto;
    right: -9px;
  }
  
  @media screen and (max-width: 767.98px) {
    .timeline::before {
      left: 18px;
    }
    
    .timeline-marker {
      left: 9px !important;
    }
  }
  
  /* Custom Colors */
  .bg-primary {
    background-color: var(--primary-color) !important;
  }
  
  /* Custom Navbar Styles */
  .custom-navbar {
    background-color: var(--primary-color);
    box-shadow: 0 4px 6px var(--shadow-light);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .right-navbar{
    flex-direction: row !important;
  }
  .custom-navbar .nav-item {
    position: relative;
    margin: 0 2px;
  }
  
  .custom-navbar {
    min-height: auto;
  }
  
  .custom-navbar .nav-link {
    color: var(--white);
    padding: 0.2rem 1.5rem !important;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.25s ease;
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
    margin: 0 2px;
    font-size: 0.95rem;
  }
  
  .custom-navbar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.3s ease;
    transform: skewX(-15deg);
    z-index: -1;
  }
  
  .custom-navbar .nav-link:hover::before,
  .custom-navbar .nav-link:focus::before,
  .custom-navbar .nav-item.show .nav-link::before {
    width: 130%;
  }
  
  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link:focus,
  .custom-navbar .nav-item.show .nav-link {
    color: var(--white);
    box-shadow: 0 4px 8px var(--shadow-light);
  }
  
  .custom-navbar .nav-link.active {
    background-color: var(--white-75);
    box-shadow: 0 4px 8px var(--shadow-medium);
  }
  
  /* Dropdown toggle icon styles */
  .toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .dropdown.show .toggle-icon {
    transform: rotate(180deg);
  }
  
  /* Remove default Bootstrap dropdown arrow */
  .dropdown-toggle::after {
    display: none;
  }
  
  /* Active nav link styles without underline */
  .custom-navbar .nav-link.active {
    background-color: var(--white-75);
    font-weight: 600;
  }
  
  .nav-icon {
    margin-right: 8px;
    font-size: 1.1rem;
  }
  
  /* Enhanced Dropdown Styles */
  @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }
    
    .mega-dropdown {
      margin-top: 0;
      border: none;
      border-radius: 8px;
      box-shadow: 0 10px 30px var(--shadow-medium);
      padding: 1rem;
      min-width: 280px;
      animation: fadeIn 0.3s ease;
      border-top: 3px solid var(--primary-color);
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .dropdown-header {
      color: var(--primary-color);
      font-weight: 600;
      padding: 0.5rem 1rem;
      margin-bottom: 0.5rem;
      border-bottom: 1px solid var(--shadow-light);
      font-size: 1rem;
    }
    
    .dropdown-item {
      padding: 0.75rem 1rem;
      border-radius: 6px;
      margin-bottom: 0.25rem;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .dropdown-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -20px;
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--overlay-light) 0%, var(--overlay-primary) 100%);
      transition: all 0.3s ease;
      transform: skewX(-10deg);
      z-index: -1;
    }
    
    .dropdown-item:hover {
      transform: translateX(5px);
      box-shadow: 0 2px 5px var(--shadow-light);
    }
    
    .dropdown-item:hover::before {
      width: 120%;
    }
    
    .dropdown-icon {
      color: var(--primary-color);
      font-size: 1.2rem;
      margin-right: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 24px;
    }
    
    .dropdown-item div {
      display: flex;
      flex-direction: column;
    }
    
    .dropdown-title {
      font-weight: 500;
      color: var(--primary-color);
    }
    
    .dropdown-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 2px;
    }
  }
  
  /* Mobile Navigation Styles */
  @media (max-width: 991.98px) {
    body {
      overflow-x: hidden; /* Prevent horizontal scroll when menu is open */
    }
  header .row .col-8 h1{
  font-size: 1.3rem !important;
  }
  header .row .col-8 h2{
  font-size: 1rem !important;
  }
    .custom-navbar {
      position: relative;
    }
  
    .custom-navbar .navbar-toggler {
      border: none;
      color: var(--white);
      font-size: 1.5rem;
      z-index: 1050;
      position: relative;
      background: transparent;
      padding: 0.5rem;
    }
    
    .custom-navbar .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }
    
    /* Overlay when menu is open */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--shadow-dark);
      z-index: 1030;
      transition: opacity 0.3s ease;
      opacity: 0;
    }
    
    .mobile-menu-overlay.show {
      display: block;
      opacity: 1;
    }
    
    /* Side menu container */
    .custom-navbar .navbar-collapse {
      position: fixed;
      top: 0;
      left: -300px; /* Start off-screen */
      width: 290px;
      height: 100vh;
      background-color: var(--primary-color);
      padding: 1rem;
      transition: all 0.3s ease-in-out;
      overflow-y: auto;
      z-index: 9999;
      box-shadow: 5px 0 15px var(--shadow-light);
      /* padding-top: 60px; */
      display: block !important;
      transform: translateX(0);
      visibility: visible;
    }
    
    /* When menu is open */
    .custom-navbar .navbar-collapse.show {
      left: 0;
      transform: translateX(0);
    }
    
    /* Close button for mobile menu */
    .mobile-menu-close {
      position: absolute;
      /* top: 8px; */
      right: 3px;
      color: var(--white);
      background-color: var(--white-75);
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 1rem;
      cursor: pointer;
      z-index: 10000;
      padding: 0;
      display: flex !important;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px var(--shadow-medium);
    }
    
    .mobile-menu-close i {
      color: var(--white);
    }
    
    .mobile-menu-close:hover {
      background-color: var(--white-85);
    }
    
    .mobile-menu-close:focus {
      outline: none;
    }
    
    .custom-navbar .nav-link {
      padding: 0.75rem 1rem;
      border-radius: 6px;
      margin-bottom: 0.5rem;
    }
    
    /* Override Bootstrap's dropdown behavior completely */
    .custom-navbar .dropdown-menu,
    .custom-navbar .mega-dropdown {
      position: static !important;
      float: none !important;
      background-color: var(--white-75) !important;
      border: none !important;
      padding: 0.5rem !important;
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
      border-radius: 6px !important;
      box-shadow: none !important;
      width: 100% !important;
      transform: none !important;
      display: none !important;
      transition: none !important;
      opacity: 1 !important;
      pointer-events: all !important;
    }
    
    .custom-navbar .dropdown-menu.show,
    .custom-navbar .mega-dropdown.show {
      display: block !important;
    }
    
    /* Make dropdown toggle more touch-friendly */
    .custom-navbar .dropdown-toggle {
      cursor: pointer;
    }
    
    .dropdown-header {
      color: var(--white-85);
      border-bottom: 1px solid var(--white-75);
      padding: 0.75rem 0.5rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      font-size: 1rem;
    }
    
    .dropdown-item {
      color: var(--white);
      padding: 0.75rem;
      border-radius: 4px;
      margin-bottom: 0.5rem;
      display: flex !important;
      align-items: center !important;
      transition: all 0.2s ease;
    }
    
    .dropdown-item:hover {
      background-color: var(--white-75);
      color: var(--white);
    }
    
    .dropdown-icon {
      color: var(--white-85);
      margin-right: 12px !important;
      font-size: 1.2rem !important;
      min-width: 20px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .dropdown-item div {
      display: flex !important;
      flex-direction: column !important;
    }
    
    .dropdown-title {
      color: var(--white);
      font-weight: 500;
      margin-bottom: 2px;
    }
    
    .dropdown-desc {
      color: var(--white-75);
      font-size: 0.8rem !important;
    }
  }
  
  .bg-dark {
    background-color: var(--primary-dark) !important;
  }
  
  /* Important Links Styles */
  .important-links-container {
    display: flex;
    flex-direction: column;
  }
  
  .important-link-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--shadow-light);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .important-link-item:last-child {
    border-bottom: none;
  }
  
  .important-link-item:hover {
    background-color: var(--overlay-light);
    transform: translateX(5px);
  }
  
  .link-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    background-color: var(--overlay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
  }
  
  .link-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
  }
  
  .link-content {
    flex: 1;
  }
  
  .link-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--primary-color);
  }
  
  .link-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
  }
  
  .link-arrow {
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .link-arrow i {
    font-size: 1.2rem;
    color: var(--primary-color);
  }
  
  .important-link-item:hover .link-icon {
    background-color: var(--primary-color);
  }
  
  .important-link-item:hover .link-icon i {
    color: var(--white);
  }
  
  .important-link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(5px);
  }
  
  .text-primary {
    color: var(--primary-color) !important;
  }
  
  .border-primary {
    border-color: var(--primary-color) !important;
  }
  
  /* Print Styles */
  @media print {
    header, footer, .no-print {
      display: none !important;
    }
    
    body {
      margin: 0;
      padding: 0;
    }
    
    .container {
      max-width: 100% !important;
      width: 100% !important;
    }
  }

  .container-fluid {
        padding-right: 3rem;
    padding-left: 3rem;
  }
  @media (min-width: 325px) {
    .container-fluid {
        padding-right: 0.5rem;
    padding-left: 0.5rem;
    }
  }
  @media (min-width: 576px) {
    .container-fluid {
        padding-right: 1rem;
    padding-left: 1rem;
    }
  }
  @media (min-width: 768px) {
    .container-fluid {
        padding-right: 2rem;
    padding-left: 2rem;
    }
  }
  @media (min-width: 1200px) {
    .container-fluid {
        padding-right: 4rem;
    padding-left: 4rem;
    }
  }

.pagination {
  gap: 5px;
}

.pagination li a {
  padding: 5px 10px !important;
  border: 1px solid #2c2c2c !important;
  color: #2c2c2c !important;
  border-radius: 3px !important;
}

.pagination li a:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.pagination li.active a {
  background-color: var(--primary-color) !important;
  color: white !important;
}

/* Login Cards Styles */
.login-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.login-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.login-card:hover .login-icon-wrapper {
  transform: scale(1.1);
}

.gpf-card {
  border-left: 4px solid #198754 !important;
}

.pension-card {
  border-left: 4px solid #00d0d0 !important;
}

.login-card .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.login-card .btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
