:root {
    --primary-color: #2B1B5E;
    --secondary-color: #4169E1;
    --accent-color: #FF6B35;
}
.navbar-nav {
    --bs-nav-link-color: darkgray;
}
.table-light {
    --bs-table-bg: #F1F1F1
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

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

.header-wrapper {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.logo-section {
    /* padding: 15px 0; */
    background: #ffffff;
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B1874 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border: 80px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.tabs-container {
    background: var(--primary-color);
    border-radius: 10px;
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    color: white;
    border: none;
    padding: 15px 25px;
    font-weight: 500;
    background: transparent;
}

.nav-tabs .nav-link.active {
    background: rgba(255,255,255,0.2);
    border-radius: 8px 8px 0 0;
}

.vision-mission-section {
    padding: 60px 0;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 35px;
}

.mission-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
}

.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #004687;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    color: white;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 0;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.stat-description {
    font-size: 0.9rem;
    color: #999;
    margin-top: 10px;
}

.logos-section {
    padding: 40px 0;
    background: white;
}

.logo-item {
    text-align: center;
    padding: 20px;
}

.logo-item img {
    /* max-width: 120px;s */
    height: 120px;
    /* filter: grayscale(100%); */
    transition: all 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
}

footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    text-decoration: none;
}

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

.site-stats {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.site-stats span {
    margin-right: 30px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}
/* -------------------------------------------------- */

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    background-image: none !important;
    content: "/" !important;   /* or "" if you want no divider */
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0.5rem;
    color: #fff; /* your color */
}

/* ----------------table css -------------------- */

.board-container {
    max-width: 1320px;
    margin: 40px auto;
    background: white;
    /* border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}
.board-header {
    margin-bottom: 10px;
}
.board-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}
.board-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 30px;
}
.table-header {
    background-color: #f8f9fa;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.member-row {
    border-bottom: 1px solid #e9ecef;
    padding: 16px 0;
}
.member-row:last-child {
    border-bottom: none;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}
.member-name {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
}
.badge-role {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
}
.email-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.email-link:hover {
    text-decoration: underline;
}
.email-icon {
    font-size: 14px;
}

.bg-primary {
   background: var(--primary-color) !important;
}

.objective-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.objective-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.hover_card {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.hover_card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

@keyframes pulse-blue {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
            }
        }

.dropdown-menu li {
    border-bottom: 1px solid #dee2e6;
}

.dropdown-menu li a {
    color: #a9a9a9;
}

.dropdown-menu {
    background: var(--primary-color);
}

/* Responsive Dropdown & Mobile Menu Fixes */
/* @media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
} */

@media (max-width: 991.98px) {
    .nav-item.dropdown {
        flex-wrap: wrap;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        box-shadow: none;
        margin-top: 0;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8);
        padding-left: 20px;
    }
    
    .dropdown-menu li a:hover {
        color: #fff;
        background: transparent;
    }

    .logo-section img {
        height: 60px !important;
    }

    .nav-link {
        font-size: 14px;
    }

    .navbar-nav {
    font-size: small;
    }
}

/* -----------------tender css---------------------- */



.tender-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.tender-title {
    color: #3e4c7e;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.tender-file {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.tender-details-link {
    color: #3e4c7e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.tender-details-link:hover {
    text-decoration: underline;
}

.tender-date {
    color: #adb5bd;
    font-size: 0.85rem;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.page-header {
    text-align: right;
    margin-bottom: 30px;
     background: white;
}

.page-header a {
    color: #3e4c7e;
    text-decoration: none;
    font-weight: 500;
}

.page-header a:hover {
    text-decoration: underline;
}

.pagination {
    margin-top: 30px;
}

.page-link {
    color: #3e4c7e;
}

.page-item.active .page-link {
    background-color: #3e4c7e;
    border-color: #3e4c7e;
}
@media (max-width: 1413px) {
    .nav-item{
        font-size: small;
    }

    .dropdown-item {
        font-size: small;
    }
}
.gallery-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
    
    
    /* Custom Dropdown Styles */
    .custom-navbar {
      background-color: var(--primary-color, #1e40af);
      padding: 0;
    }
    
    .custom-nav {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .custom-nav-item {
      position: relative;
    }
    
    .custom-nav-link {
      display: block;
      padding: 10px;
      color: #a9a9a9;
      text-decoration: none;
      transition: background-color 0.3s;
      white-space: nowrap;
      font-weight: 500;
    }
    
    .custom-nav-link:hover {
      
      color: rgba(255, 255, 255, 0.75);
    }
    
    .custom-nav-link.active {
      color: white;
    }
    
    /* Dropdown Container */
    .custom-dropdown {
      position: relative;
      display: inline-block;
    }
    
    .custom-dropdown-toggle {
      cursor: pointer;
      display: flex;
      align-items: center;
      /* gap: 0.5rem; */
      position: relative;
    }
    
    .custom-dropdown-toggle a {
      flex: 1;
      color: inherit;
      text-decoration: none;
    }
    
    .custom-dropdown-toggle i {
      font-size: 0.75rem;
      transition: transform 0.3s;
      padding: 0.5rem;
      cursor: pointer;
    }
    
    @media (max-width: 1413px) {
    .custom-nav-item{
        font-size: small;
    }
  }

    
    .custom-dropdown.active .custom-dropdown-toggle i {
      transform: rotate(90deg);
    }
    
    .custom-dropdown.active .custom-dropdown-toggle::after {
      transform: rotate(180deg);
    }
    
    /* Dropdown Menu */
    .custom-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--primary-color);
      min-width: 220px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 8px 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
      /* padding: 0.5rem 0; */
      max-height: 0;
      overflow: hidden;
    }
    
    .custom-dropdown.active .custom-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      max-height: 500px;
    }
    
    .custom-dropdown-item {
      display: block;
      padding: 0.75rem 1.5rem;
      color: white;
      text-decoration: none;
      border-bottom: 1px solid #e9e9ef;
      transition: background-color 0.2s;
    }
    
    .custom-dropdown-item:hover {
      background-color: #f3f4f6;
      color: #1e40af;
    }
    
    /* Mobile Responsive Menu */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      padding: 1rem;
      cursor: pointer;
    }
    
          /* Mobile Responsive Styles */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: block;
      }
      
      .custom-nav {
        display: none;
        flex-direction: column;
        width: 100%;
      }
      
      .custom-nav.mobile-active {
        display: flex;
      }
      
      .custom-nav-item {
        width: 100%;
      }
      
      .custom-nav-link {
        padding: 10px;
      }
      
      .custom-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
      }
      
      .custom-dropdown-toggle a {
        flex: 1;
      }
      
      .custom-dropdown-toggle i {
        flex-shrink: 0;
      }
      
      .custom-dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        transform: none;
        border-radius: 0;
        max-height: 0;
        padding: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }
      
      .custom-dropdown.active .custom-dropdown-menu {
        transform: none;
        max-height: 500px;
        /* padding: 0.5rem 0; */
      }
      
      .custom-dropdown-item {
        padding-left: 2.5rem;
      }
    }
   .page-item {
  padding: 10px;
}
.bhashini-plugin-container svg path{
    fill: white !important;
    d:"M 850 300 C 850 300 350 300 350 300 L 348.1 205.39 L 120 400.39 L 348.1 606.19 L 350 500 C 850 500 850 500 850 500 z" !important;
    stroke-width: 0;
}

p {
  margin: 0px !important;
}