body {
            background-color: #f3e5f5 !important;
            font-family: Poppins;
        }

        /* Navbar adjustments */
        .nav-wrapper {
            z-index: 9999 !important;
            padding-right: 20px;
        }

        .sidenav-overlay {
            z-index: 0;
        }

        .nav-wrapper .brand-logo {
            font-size: 1.5rem;
            padding-left: 20px;
        }

        .nav-wrapper ul li a {
            font-size: 1.2rem;
        }

        /* Slider adjustments */
        .slider {
            height: 650px !important;
        }

        .slider .slides li .caption {
            background: rgba(0, 0, 0, 0.6);
            padding: 10px;
        }

        .slider .slides li img {
            filter: brightness(70%);
        }

        /* Slider arrows */
        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 99;
        }

        .slider-arrows a {
            color: white;
            font-size: 48px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
            transition: color 0.3s;
        }

        .slider-arrows a:hover {
            color: #eeeeee;
        }

        /* News Section Styles */
        .news-section {
            position: absolute;
            bottom: 20px;
            left: 20px;
            max-width: 400px;
            z-index: 1000;
        }

        .news-section-first {
            position: absolute;
            bottom: 20px;
            left: 20px;
            max-width: 400px;
            z-index: 1000;
        }

        .news-section .card {
            display: flex;
            flex-direction: row;
        }

        .news-section .card-image img {
            width: 100px;
            height: auto;
        }

        .news-section .card-content {
            padding: 10px;
        }

        .news-tag {
            display: inline-block;
            font-weight: bold;
            padding: 5px 10px;
            margin-bottom: 10px;
            border-radius: 4px;
        }

        .news-time {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .news-description {
            font-size: 10px !important;
        }

        /* About Us Section */
        .about-us {
            padding: 50px 0;
        }

        h4,
        h2 {
            font-weight: 900;
            margin-bottom: 20px;
        }

        .about-us p,
        .departments p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .about-us img,
        .departments img {
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 992px) {

            .about-us .col.s12.m6,
            .departments .col.s12.m6.l8,
            .departments .col.s12.m6.l4 {
                text-align: center;
            }

            .about-us .col.s12.m6 img,
            .departments .col.s12.m6.l4 img {
                margin-top: 20px;
            }

            .card-panel {
                margin-bottom: 20px;
            }
        }

        /* Our Departments Section */
        .dept_bg1,
        .dept_bg2 {
            position: relative;
            z-index: 1;
        }

        .dept_bg1::before,
        .dept_bg2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position-y: 25%;
            /* opacity: 0.5; */
            z-index: -1;
        }

        .dept_bg1::before {
            background-image: url('Ecological_engineering.webp');
        }

        .dept_bg2::before {
            background-image: url('Geomatic_engineering.webp');
        }

        .departments {
            padding: 50px 0;
        }

        .yellow.darken-1 {
            background-color: #fdc52d !important;
        }

        .card-panel {
            padding: 20px;
            border-radius: 8px;
        }

        .card-panel h6 {
            font-weight: bold;
        }

        @media (min-width: 992px) {
            .l2 {
                width: 20% !important;
            }
        }

        /* Career Perspectives */
        .career-perspective1 {
            text-align: center;
            padding: 10px;
        }

        .card.career {
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            padding: 30px 20px 20px 20px;
            margin: 12px !important;
            /* width: 300px !important; */
            height: 400px !important;
            color: white;
            border-bottom: 10px solid #fdc52d;
            border-radius: 7px;
        }

        .l3 {
            width: 30% !important;
        }

        .card-header {
            /* background-color: #9b59b6; */
            padding: 10px 15px;
            border-radius: 10px;
            font-size: 1em;
            color: white;
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            z-index: 99;
        }

        .card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .card.career li {
            margin: 10px 0;
            display: flex;
            /* align-items: center; */
        }

        /*.card.career li::before {
            content: '◆';
            margin-right: 5px;
            color: #ecf0f1;
        }*/

        .card.career::before,
        .card.career::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .card.career::before {
            background-image: url('career.webp');
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
            opacity: 0.3;
        }

        .card.career::after {
            background-color: rgba(155, 89, 182, 0.3);
        }

        /* Student Life and Partners */
        .flow-text {
            font-size: 1.3rem;
        }

        .carousel .indicators .indicator-item {
            background-color: gray;
            /* Change this to your desired color */
        }

        .carousel .indicators .indicator-item.active {
            background-color: #fdc52d;
        }

        .partner {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 1em;
        }

        .part {
            width: 100px !important;
            height: fit-content;
        }

        @media screen and (max-width: 670px) {
            .valign-wrapper {
                display: block !important;
            }
        }

        /* Footer */
        .footer {
            background-color: #aa44f9;
            color: white;
            padding: 20px;
        }

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

        .social-icons a {
            margin-right: 10px;
        }

        .social-icons img {
            width: 30px;
            height: 30px;
        }

        .footer-right iframe {
            border: none;
        }

        .purple.lighten-2 {
            background-color: #aa44f9 !important;
        }

        .purple.darken-4 {
            background-color: #492358 !important;
        }

        .modal {
            border-bottom: 10px solid #aa44f9;
        }

        @media screen and (max-width: 670px) {
            .director_vid {
                width: 320px !important;
            }

            .card.career {
                width: 90% !important;
            }
        }