body {
    font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    /* font-family: "Times New Roman", Times, serif; */
    letter-spacing: 1.6px;
}

.orgtitle {
    font-size: 20px;
    font-weight: normal;
    color: #f70c0c;
    /* font-family: "Times New Roman", Times, serif; */

}

.mainorgtitle {
    font-size: 30px;
    font-weight: bold;
    color: #f70c0c;
    /* font-family: "Times New Roman", Times, serif; */
}

.top-notice {
    background-color: #8B0000;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    margin-top: 22px;
}

.navbar {
    background-color: #8B0000 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: white !important;
    padding: 0.5rem !important;
}

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

.header-logo {
    max-width: 100%;
    height: auto;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-selector a {
    color: white;
    text-decoration: none;
    padding: 2px 5px;
}

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    background-color: #6B0F0F;
    color: white;
    padding: 12px 0;
}

.scrolling-text-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.carousel-item img {
    filter: brightness(0.8);
}

.btn-custom {
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-custom:hover {
    background-color: #6B0F0F;
    color: white;
}

.dropdown-menu {
    background-color: #6B0F0F;
    border: none;
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #8B0000;
    color: white;
}

.offcanvas {
    background-color: #8B0000;
}

.offcanvas-title,
.offcanvas .nav-link {
    color: white;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
}

.bg-header {
    background: linear-gradient(rgb(253 253 253 / 77%), #ccc), url(../images/mt-everest.jpg);
    ;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-header h1,
.bg-header h2,
.bg-header h3 {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.red-heading {
    background: #800215;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 12px 16px;
}

.gallery-item {
    position: relative;
}

.gallery-title {
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 16px;
    z-index: 2;
    display: none;
}

.gallery-section .gallery-item a:hover>.gallery-title {
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .bg-header {
        background: linear-gradient(rgb(253 253 253 / 77%), #ccc), url(../images/mt-everest.jpg);
        ;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .orgtitle {
        font-size: 16px;
    }

    .mainorgtitle {
        font-size: 20px;
    }

    .w-sm-100 {
        width: 100% !important;
    }
}

.stylish-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.slide-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.slide-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8B0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.slide-button:hover {
    background-color: #6B0F0F;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-nav-item.active {
    background-color: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.quick-links {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.quick-links-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 15px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    text-align: center;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    fill: #dc3545;
}

.quick-link-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    color: #333;
}

@media (max-width: 768px) {
    .quick-links-grid {
        /* grid-template-columns: repeat(2, 1fr); */
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        /* grid-template-columns: 1fr; */
    }
}

.metro-info-section {
    background-color: #004AAD;
    padding: 40px;
    color: white;
    font-family: 'Arial', sans-serif;
}

.metro-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.metro-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.orange-link {
    color: #FF8C42;
    text-decoration: none;
}

.orange-link:hover {
    text-decoration: underline;
}

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

.info-card {
    background-color: #FF8C42;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .metro-info-section {
        padding: 20px;
    }

    .metro-title {
        font-size: 2rem;
    }

    .metro-description {
        font-size: 1rem;
    }
}

.welcome-section {
    padding: 60px 20px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.welcome-label {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.decorative-line {
    width: 60px;
    height: 4px;
    background-color: #8B0000;
    margin-bottom: 40px;
}

.welcome-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    /* max-width: 90ch; */
    text-align: justify;

}

.explore-more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.explore-more:hover {
    color: #8B0000;
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.explore-more:hover .arrow-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-description {
        font-size: 1rem;
    }
}

.quick-link-item img {
    width: 100%;
    height: 200px;
    justify-content: center;
}

.profile-card {

    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #333;
}

.profile-name {
    background-color: #6B0F0F;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}

.profile-designation {
    padding: 10px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
}

/* table start  */
.nav-tabs .nav-link.active {
    color: #e63946;
    border-color: #e63946;
}

.table-header {
    background-color: #333;
    color: #fff;
}

.download-icon {
    color: #e63946;
    font-size: 1.5em;
}

.projects-list a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.projects-list a:hover {
    color: #e63946;
    text-decoration: none;
}

.explore-more {
    color: #e63946;
    text-align: right;
    padding: 10px;
}

/* table end */
.search-icon {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.search-popup {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.search-popup input {
    padding: 0.5rem;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.search-popup button {
    padding: 0.5rem 1rem;
    background-color: #6B0F0F;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.notice-header {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: white;
    padding: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.notice-icon {
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.notice-icon i {
    color: #1e3a8a;
    font-size: 24px;
}

.notice-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

.notice-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.notice-subtitle {
    color: #6b7280;
    margin-bottom: 10px;
}

.notice-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.read-more {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.pdf-icon {
    color: #ef4444;
    font-size: 24px;
}

.btn-view-details {
    background-color: #6B0F0F;
    /* Sky blue */
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-view-details:hover {
    background-color: #ef4444;
    /* Slightly darker blue */
}