
    
        :root {
                --blue: #2b1871;
                --white: #ffffff; 
                --yellow: #fff981;
                --red: #a41717;
                --grey: #dee2e6; 
                --black: rgba(0, 0, 0, 0.775); 
                font-family: Georgia, 'Times New Roman', Times, serif;
            } 
        body {
            font-family: 'Inter', sans-serif; /* Using Inter font as per instructions */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f8f9fa; /* Light background */
        }
        /* Top bar background & color  */
.bred{
        color:#a41717;
        background-color: var(--white);
    }

        /* Reusable Card Styling */
        .custom-card {
            border: 1px solid #dee2e6; /* Light gray border */
            border-radius: 0.75rem; /* Rounded corners */
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); /* Soft shadow */
            padding: 1.5rem;
            background-color: #ffffff;
            height: 100%; /* Ensure cards in a row have equal height */
        }

        /* Header Styling */
        .header-top {
            background-color:var(--white); /* Dark blue */
            color: var(--red);
            padding: 3px 0;
            font-size: 0.9rem;
        }
        .header-top .social-icons a {
            color: var(--red);
            margin-left: 10px;
            transition: color 0.3s ease;
        }
        .header-top .social-icons a:hover {
            color: #cccccc;
        }
        .header-top .btn-login {
            background-color:var(--red); /* Tomato red */
            border-color:(--yellow);
            color:var(--white);
            border-radius: 0.5rem;
            padding: 0.3rem 0.8rem;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }
        .header-top .btn-login:hover {
            background-color: var(--yellow);
            border-color:var(--red);
            color:var(--black);
        }

        /* Navbar Styling */
        .navbar-custom {
            background-color: #ece9e9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        .navbar-custom .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color:var(--blue); /* Dark blue */
            display: flex;
            align-items: center;
        }
        .navbar-custom .navbar-brand img {
            height: 80px; /* Logo height */
            margin-right: 10px;
            border-radius: 0.5rem; /* Rounded corners for logo */
        }
        .navbar-custom .nav-link {
            color:var(--blue); /* Dark gray */
            font-weight: 500;
            padding-right: 1rem;
            padding-left: 1rem;
        }
        .navbar-custom .nav-link:hover {
            color:var(--red); /* Lighter blue on hover */
            background-color: var(--white);
        }
        .navbar-custom .dropdown-menu {
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            border: none;
        }
        .navbar-custom .dropdown-item {
            padding: 0.2rem 0.4rem;
            color: var(--red);
        }
        .navbar-custom .dropdown-item:hover {
            background-color:var(--red);
            color:var(--white);
        }

        /* Main Content Padding */
        main {
            flex-grow: 1; /* Allows main content to take available space */
            padding-top: 30px;
            padding-bottom: 30px;
        }

        /* Image Slider (Carousel) Styling */
        #mainCarousel .carousel-item img {
            height: 450px; /* Fixed height for carousel images */
            object-fit: cover; /* Cover the area, cropping if needed */
            border-radius: 0.75rem; /* Rounded corners */
        }
        #mainCarousel .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 0.5rem;
            padding: 10px 20px;
        }
        #mainCarousel .carousel-control-prev-icon,
        #mainCarousel .carousel-control-next-icon {
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            padding: 1rem;
        }

        /* News and Announcements Styling */
        .news-announcements .section-title {
            color:var(--red);
            font-weight: bold;
            margin-bottom: 25px;
            text-align: center;
        }
        .news-item, .announcement-item {
            margin-bottom: 15px;
        }
        .news-item h6, .announcement-item h6 {
            color: var(--black);
            font-weight: 600;
        }
        .news-item p, .announcement-item p {
            font-size: 0.95rem;
            color: #495057;
        }
        .news-item .date, .announcement-item .date {
            font-size: 0.85rem;
            color: #6c757d;
            font-style: italic;
        }

        /* Image Left, Text Right Section */
        .about-section {
            background-color: var(--white); /* Light blue background */
            padding: 40px 0;
            border-radius: 1rem;
            box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }
        .about-section img {
            border-radius: 0.75rem;
            border:2px solid var(--red);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            max-width: 100%;
            height: auto;
        }
        .about-section h3 {
            color: var(--red);
            font-weight: bold;
            margin-bottom: 20px;
        }
        .about-section p {
            color: #343a40;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Testimonial Slider Styling */
        .testimonial-carousel .carousel-item {
            padding: 30px 15px;
        }
        .testimonial-card {
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
            padding: 25px;
            text-align: center;
            height: 100%; /* Ensure equal height if multiple per slide */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .testimonial-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px auto;
            border: 3px solid #0056b3;
        }
        .testimonial-card p {
            font-style: italic;
            color: #495057;
            margin-bottom: 15px;
        }
        .testimonial-card .author {
            font-weight: bold;
            color: #004d99;
        }
        .testimonial-carousel .carousel-control-prev-icon,
        .testimonial-carousel .carousel-control-next-icon {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            padding: 0.8rem;
        }
        .testimonial-carousel .carousel-indicators [data-bs-target] {
            background-color: #004d99;
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* Footer Styling */
        .footer-custom {
            background-color: var(--black); /* Dark background */
            color: var(--white); /* Lighter text */
            padding: 40px 0;
            margin-top: 50px; /* Space above footer */
            border-top: 5px solid var(--red); /* Top border matching header */
        }
        .footer-custom h5 {
            color: var(--white);
            margin-bottom: 20px;
            font-weight: bold;
        }
        .footer-custom ul {
            list-style: none;
            padding: 0;
        }
        .footer-custom ul li {
            margin-bottom: 10px;
        }
        .footer-custom ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-custom ul li a:hover {
            color: var(--yellow);
            text-decoration: underline;
        }
        .footer-custom .col-md-4 {
            border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for footer divs */
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 1rem rgba(250, 120, 120, 0.2);
            padding: 25px;
            height: 100%; /* Ensure equal height */
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .footer-custom .bottom-bar {
            border-top: 1px solid #495057;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) { /* Adjust for medium and small devices */
            .navbar-custom .navbar-nav {
                text-align: center;
                margin-top: 15px;
            }
            .navbar-custom .dropdown-menu {
                text-align: center;
            }
            .about-section img {
                margin-bottom: 20px;
            }
            .footer-custom .col-md-4 {
                margin-bottom: 30px;
            }
        }
        @media (max-width: 767.98px) { /* Adjust for small devices */
            .header-top .d-flex {
                flex-direction: column;
                text-align: center;
            }
            .header-top .social-icons {
                margin-top: 10px;
            }
            #mainCarousel .carousel-item img {
                height: 250px;
            }
            .news-announcements .custom-card,
            .about-section .custom-card,
            .testimonial-carousel .testimonial-card,
            .footer-custom .col-md-4 {
                margin-bottom: 20px; /* Spacing for stacked elements */
            }
            /* Testimonial slider: show one card at a time */
            .testimonial-carousel .carousel-inner .carousel-item > div[class*='col-'] {
                display: block; /* Stack columns on small screens */
            }
            .testimonial-carousel .carousel-inner .carousel-item > div[class*='col-'] + div[class*='col-'] {
                display: none; /* Hide subsequent columns */
            }
        } 
        
       

        /* Reusable Card/Section Styling */
        .section-card {
            border: 1px solid #dee2e6; /* Light gray border */
            border-radius: 0.75rem; /* Rounded corners */
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08); /* Soft shadow */
            padding: 2rem;
            background-color: #ffffff;
            margin-bottom: 30px; /* Space between sections */
        }

        /* Breadcrumbs Styling */
        .breadcrumb-custom {
            background-color: #e9ecef;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 30px;
        }
        .breadcrumb-custom .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: #6c757d;
        }

        /* Image Styling */
        .top-image {
            max-width: 100%;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        /* Heading Styles */
        h2 {
            color: var(--red);
            font-weight: bold;
            margin-bottom: 25px;
            text-align: center;
        }
        h3 {
            color: var(--red);
            font-weight: bold;
            margin-bottom: 20px;
        }
        h4 {
            color: var(--red);
            font-weight: bold;
            margin-bottom: 20px;
        }
        h5 {
            color: var(--red);
            font-weight: bold;
            margin-bottom: 20px;
        }
         h6 {
            color: var(--red);
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* Text area styling (similar to .about-section content) */
        .text-content p {
            color: #343a40;
            line-height: 1.7;
            font-size: 1.05rem;
            text-align: justify;
        }
         .text-content ul {
            color: #343a40;
            line-height: 1.7;
            font-size: 1.05rem;
            text-align: justify;
        }


        /* Form Styling */
        .form-label {
            font-weight: 500;
            color: #343a40;
        }
        .form-control, .form-select {
            border-radius: 0.5rem;
            border: 1px solid #ced4da;
            padding: 0.75rem 1rem;
        }
        .form-control:focus, .form-select:focus {
            border-color: #80bdff;
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
        }
        .btn-submit {
            background-color: #28a745; /* Green for submit */
            border-color: #28a745;
            color: #ffffff;
            border-radius: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        .btn-submit:hover {
            background-color: #218838;
            border-color: #1e7e34;
        }

        /* Table Styling */
        .table-custom {
            width: 100%;
            margin-bottom: 1rem;
            color: #212529;
            border-collapse: collapse; /* Ensure borders collapse for a clean look */
        }
        .table-custom th, .table-custom td {
            padding: 0.75rem;
            vertical-align: top;
            border-top: 1px solid #dee2e6;
        }
        .table-custom thead th {
            vertical-align: bottom;
            border-bottom: 2px solid #dee2e6;
            background-color: #e9ecef;
            color: #495057;
        }
        .table-custom tbody tr:nth-of-type(odd) {
            background-color: rgba(0, 0, 0, 0.03);
        }
        .table-custom tbody tr:hover {
            background-color: rgba(0, 0, 0, 0.075);
        }
        .pdf-iframe {
            width: 100%;
            height: auto; /* Make iframe responsive to viewport height */
            min-height: 500px; /* Minimum height for smaller screens */
            border: 1px solid var(--red); /* No border for the iframe */
            display: block; /* Ensure it 
            lex-grow: 1; /* Allow iframe to grow and fill available space */
        }
    .btn-custom {
            background-color: var(--red); /* Green for "View PDF" */
            color: white;
            border: none;
            padding: 5px 5px;
            border-radius: 8px; /* Rounded corners */
            font-size: 1.0rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-custom:hover {
            background-color: var(--red); /* Darker green on hover */
            transform: translateY(-2px); /* Slight lift effect */
            color: white; /* Ensure text color remains white on hover */
        }
         /* Table Styling */
        .table-custom {
            width: 100%;
            margin-bottom: 1rem;
            /* Use clamp for fluid font sizing */
            font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1rem); /* 14px to 16px */
            color: #212529;
            border-collapse: collapse; /* Ensure borders collapse for a clean look */
        }
        .table-custom th, .table-custom td {
            padding: 0.75rem;
            vertical-align: top;
            border-top: 1px solid #dee2e6;
            text-align: left; /* Align text to left */
        }
        .table-custom thead th {
            vertical-align: bottom;
            border-bottom: 2px solid #dee2e6;
            background-color: #e9ecef;
            color: #495057;
            font-weight: 600; /* Slightly bolder for headers */
        }
        .table-custom tbody tr:nth-of-type(odd) {
            background-color: rgba(0, 0, 0, 0.03);
        }
        .table-custom tbody tr:hover {
            background-color: rgba(0, 0, 0, 0.075);
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .table-custom th, .table-custom td {
                padding: 0.5rem; /* Reduce padding on smaller screens */
                font-size: 0.825rem; /* Smaller font size */
            }
        }
        @media (max-width: 415px) {
            .table-custom th, .table-custom td {
                font-size: 0.50rem; /* Slightly smaller font size */
            }
        }

        /* Container for horizontal scrolling on small screens */
        .table-responsive-wrapper {
            overflow-x: auto; /* Enables horizontal scrolling if content overflows */
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
            border-radius: 0.5rem; /* Match table rounded corners */
        }
        /* Container for horizontal scrolling on small screens */
        .table-responsive-wrapper {
            overflow-x: auto; /* Enables horizontal scrolling if content overflows */
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
            border-radius: 0.5rem; /* Match table rounded corners */
        }

        }
/* Modal  */
.pdf-iframe {
            width: 100%;
            height: auto; /* Make iframe responsive to viewport height */
            min-height: 500px; /* Minimum height for smaller screens */
            border: 1px solid var(--blue); /* No border for the iframe */
            display: block; /* Ensure it 
            lex-grow: 1; /* Allow iframe to grow and fill available space */
        }
/* Button */
    .btn-custom {
            background-color: var(--red); /* Green for "View PDF" */
            color: white;
            border: none;
            padding: 5px 5px;
            border-radius: 8px; /* Rounded corners */
            font-size: 1.0rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-custom:hover {
            background-color: var(--blue); /* Darker green on hover */
            transform: translateY(-2px); /* Slight lift effect */
            color: white; /* Ensure text color remains white on hover */
        }
        .paragraph {
            font-size: 14px; /* Set font size for paragraphs */
            line-height: 1.5rem; /* Set line height for better readability */
            color: var(--black); /* Dark gray text color */
            margin-bottom: 1.5rem; /* Space between paragraphs */
            text-align: justify;
        }
        /* Responsive adjustments for fonts */
        @media (max-width: 768px) {
            .paragraph{
                padding: 0.5rem; /* Reduce padding on smaller screens */
                font-size: 10px; /* Smaller font size */
                color: var(--black);
                line-height: 1.5rem; 
                 margin-bottom: 1.5rem; /* Space between paragraphs */
            text-align: justify;
            }
        }
        @media (max-width: 415px) {
            .paragraph {
                font-size: 10px; /* Slightly smaller font size */
                color: var(--black);
                line-height: 1.5rem; 
                 margin-bottom: 1.5rem; /* Space between paragraphs */
            text-align: justify;
            }
        }
        /*Data Connecting Pages*/
         .table-container {
      background: white;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    .filter-section {
      background: #f8f9fa;
      padding: 20px;
      border-bottom: 1px solid #dee2e6;
    }
    .table th {
      background-color:  #a41717;
      color: white;
      border: none;
    }
    .active-session-badge {
      background-color:  #a41717;
      font-size: 0.8em;
      margin-left: 8px;
    }
    @media (max-width: 768px) {
      .table-responsive {
        font-size: 14px;
      }
      .table th, .table td {
        padding: 8px 4px;
      }
    }
    @media (max-width: 576px) {
      .table-responsive {
        font-size: 12px;
      }
      .filter-section .btn {
        width: 100%;
        margin-bottom: 10px;
      }
    }