 /* Base styles */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }

        /* Header and Navigation Bar */
        .header-bg {
            background-color: #4CAF50; /* A shade of green matching the image */
        }

        .navbar-bg {
            background-color: #43A047; /* A slightly darker shade for the navbar */
        }

        .navbar-nav .nav-link {
            font-weight: bold;
            color: white !important;
            padding: 0.5rem 1rem;
        }

        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
        }

        .navbar .login-btn {
            background-color: #2E7D32; /* Even darker green for login button */
            border-color: #2E7D32;
            color: white;
            padding: 0.5rem 1.5rem;
        }

        .navbar-brand img {
            width: 80px; /* Adjust logo size */
            height: auto;
        }

        .dropdown-menu {
            background-color: #43A047;
            border: none;
        }

        .dropdown-item {
            color: white;
        }

        .dropdown-item:hover {
            background-color: #2E7D32;
            color: white;
        }

        .btn-outline-light:hover {
            background-color: white;
            color: #4CAF50;
        }

        /* Sidebar Section Styles - New .std-section class is added here for consistency */
        .forms-section-bg, .notice-section-bg, .notice-board-bg, .calendar-section-bg, .std-section {
            background-color: #4CAF50;
            color: white;
            border-radius: 5px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .forms-section-bg h5, .notice-section-bg h5, .notice-board-bg h5, .calendar-section-bg h5, .std-section h5 {
            text-align: center;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .forms-list, .notice-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .forms-list li, .notice-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .forms-list li:last-child, .notice-list li:last-child {
            border-bottom: none;
        }

        .forms-list a, .notice-list a {
            color: white;
            text-decoration: none;
            display: block;
        }

        .forms-list a:hover, .notice-list a:hover {
            text-decoration: underline;
        }

        /* Styles for the moving line of text */
        .marquee-text {
            white-space: nowrap;
            overflow: hidden;
            box-sizing: border-box;
            background-color: #f0f0f0;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .marquee-content {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 15s linear infinite;
        }

        @keyframes marquee {
            0%   { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        /* News and Announcement Section */
        .news-announcement-bg {
            background-color: white;
            border-radius: 5px;
            padding: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .news-announcement-bg h4 {
            text-align: center;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #4CAF50;
        }

        .news-announcement-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .news-announcement-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .news-announcement-list li:last-child {
            border-bottom: none;
        }

        .news-announcement-list a {
            color: #333;
            text-decoration: none;
        }

        .news-announcement-list a:hover {
            color: #4CAF50;
            text-decoration: underline;
        }

        /* Styles for the auto-scrolling list containers */
        .auto-scrolling-container {
            max-height: 250px; /* Adjust height as needed */
            overflow: hidden; /* Hide the scrollbar */
        }

        /* Styles for the Calendar and Slider to be responsive */
        .calendar-section-bg {
            padding: 0;
            overflow: hidden;
        }

        .calendar-section-bg h5 {
            padding: 1rem;
            margin-bottom: 0;
        }

        .calendar-container {
            position: relative;
            width: 100%;
            height: 400px; /* Set a fixed height for the calendar */
        }

        .calendar-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 5px;
        }

        /* Custom "Zippy Louvers" Slider styles */
        .zippy-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            height: 400px; /* Set a fixed height for the slider */
            margin-bottom: 1rem;
        }

        .zippy-slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .zippy-slider-item.active {
            opacity: 1;
        }


        /* Breadcrumbs Section */
        .rs-breadcrumbs {
            background-color: #f0f0f0; /* A light grey background to match the image */
            padding: 20px 0;
            margin-bottom: 2rem;
        }
        .rs-breadcrumbs h1 {
            color: #4CAF50;
            font-weight: bold;
            font-size: 2rem;
            margin: 0;
        }
        .breadcrumbs-inner {
            text-align: center;
        }
        .breadcrumbs-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: inline-block;
        }
        .breadcrumbs-inner ul li {
            display: inline;
            font-size: 1rem;
            color: #666;
        }
        .breadcrumbs-inner ul li a {
            color: #4CAF50;
            text-decoration: none;
            font-weight: bold;
        }
        .breadcrumbs-inner ul li a:hover {
            text-decoration: underline;
        }
        .breadcrumbs-inner ul li::after {
            content: "/";
            padding: 0 5px;
            color: #666;
        }
        .breadcrumbs-inner ul li:last-child::after {
            content: "";
        }

        /* Course Table Styles */
        .rs-about {
            padding-bottom: 2rem;
        }
        .course-table-container {
            padding: 1.5rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .table-striped > tbody > tr:nth-of-type(odd) > * {
            background-color: rgba(0,0,0,0.05);
        }
        .table-bordered {
            border: 1px solid #dee2e6;
        }
        .table-bordered th, .table-bordered td {
            border: 1px solid #dee2e6;
        }
        .table th {
            background-color: #4CAF50;
            color: #000;
            font-weight: bold;
            vertical-align: middle;
            text-align: center;
        }
        .table td {
            vertical-align: middle;
        }


         /* Result Verification Section */
        .result-verification-container {
            padding: 2rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .result-verification-container h3 {
            color: #4CAF50;
            font-weight: bold;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .result-verification-container .form-control {
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
        }
        .result-verification-container .form-control:focus {
            border-color: #4CAF50;
            box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
            animation: inputFocusPulse 0.5s ease-in-out forwards;
        }
        .result-verification-container .btn-send {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .result-verification-container .btn-send:hover {
            background-color: #2E7D32;
            transform: scale(1.05);
        }

        /* Animation for form */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animated-form {
            animation: fadeInUp 1s ease-out forwards;
        }

        /* Animation for input focus */
        @keyframes inputFocusPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.25);
            }
            50% {
                box-shadow: 0 0 0 0.5rem rgba(76, 175, 80, 0);
            }
            100% {
                box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
            }
        }


         /* Contact Section */
        .contact-comment-section {
            padding: 2rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            animation: fadeInUp 1s ease-out forwards;
        }
        .contact-comment-section h3 {
            color: #4CAF50;
            font-weight: bold;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .contact-comment-section .form-control {
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
        }
        .contact-comment-section .form-control:focus {
            border-color: #4CAF50;
            box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
            animation: inputFocusPulse 0.5s ease-in-out forwards;
        }
        .contact-comment-section .textarea {
            resize: vertical;
        }
        .contact-comment-section .btn-send {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .contact-comment-section .btn-send:hover {
            background-color: #2E7D32;
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes inputFocusPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.25);
            }
            50% {
                box-shadow: 0 0 0 0.5rem rgba(76, 175, 80, 0);
            }
            100% {
                box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
            }
        }

        /* About Us Section */
        .about-us-section {
            padding-bottom: 2rem;
        }
        .about-us-content {
            padding: 2rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            animation: fadeInUp 1s ease-out forwards;
        }
        .about-us-content h3, .about-us-content h4 {
            color: #4CAF50;
            font-weight: bold;
        }
        .about-us-content p {
            color: #666;
        }
        .about-us-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        





         /* Footer */
        .footer {
            background-color: #333;
            color: white;
            padding: 2rem 0;
            margin-top: 2rem;
        }