 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f0f2f5;
        }

        /* ===================== NAVBAR ===================== */
        .navbar-container {
            width: 100%;
        }

        .navbar {
            background-color: #7c8ab5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 0;
        }

        .navbar-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 25px;
            background-color: #7c8ab5;
            border-bottom: 1px solid #e9ecef;
        }

        .faculty-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faculty-name {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        .institute-logo {
            font-weight: 800;
            font-size: 22px;
            color: #fff;
        }

        /* Main navbar */
        .navbar-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 25px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 18px 22px;
            text-decoration: none;
            color: #2d3748;
            font-weight: 600;
            font-size: 15px;
        }

        .nav-link:hover {
            color: #2c5aa0;
            background-color: #f8f9fa;
        }

        .nav-link.active {
            border-bottom: 3px solid #2c5aa0;
            color: #2c5aa0;
        }

        /* Hamburger menu */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
        }


                /* LOGIN FORM */
        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 70px 0;
            
        }

        .login-box {
            width: 380px;
            background: white;
            padding: 45px;
            border-radius: 15px;
            box-shadow: 0 0 25px rgba(0,0,0,0.12);
            height: 500px;
        }

        .login-box h2 {
            text-align: center;
            margin-bottom: 75px;
            padding: 5px;
            font-weight: 700;
            color: #2c5aa0;
        }

        .input-group {
            display: flex;
            align-items: center;
            background: #f1f4f9;
            border-radius: 10px;
            padding: 12px 14px;
            margin: 10px 0;
        }

        .input-group i {
            color: #4b4b4b;
            font-size: 18px;
            margin-right: 10px;
        }

        .input-group input {
            border: none;
            background: none;
            outline: none;
            width: 100%;
            font-size: 15px;
        }

        .login-box button {
            width: 100%;
            padding: 12px;
            margin-top: 18px;
            background: #2c5aa0;
            color: white;
            border: none;
            font-size: 16px;
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            transition: .3s;
        }

        .login-box button:hover {
            background: #1e3f73;
        }

        .register-text {
            text-align: center;
            margin-top: 18px;
            font-size: 14px;
        }

        .register-text a {
            color: #2c5aa0;
            text-decoration: none;
            font-weight: 600;
        }

        .alert {
            padding: 10px;
            border-radius: 7px;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
        }

        .alert.success {
            background: #d4fbd6;
            color: #1a7f26;
        }

        .alert.danger {
            background: #ffd8d8;
            color: #b10000;
        }





        /* ===================== FOOTER ===================== */
        .footer {
            background-color: #0d0d0d;
            color: #fff;
            padding: 50px 20px 20px;
            margin-top: 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column {
            width: 30%;
            min-width: 250px;
            line-height: 1.8;
        }

        .footer-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 10px;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background-color: #1a1a1a;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            transition: 0.3s;
            font-size: 15px;
            width: fit-content;
        }

        .social-btn:hover {
            background-color: #333;
        }

        .social-btn.whatsapp {
            background-color: #25D366;
        }

        .social-btn.facebook {
            background-color: #3b5998;
        }

        .social-btn.instagram {
            background-color: #405DE6;
        }

        .footer-bottom {
            background-color: #373334;
            text-align: center;
            padding: 12px;
            margin-top: 40px;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-column {
                width: 100%;
            }

            .social-btn {
                margin: auto;
            }
        }