:root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --blue: #000080;
            --light-gray: #F5F5F5;
            --dark-gray: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* Navbar */
        .dashboard-header {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-around;
            margin-bottom: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-top: 0.8%;
            margin-bottom: 20px;
        }

        .logo svg {
            width: 48px;
            height: 48px;
        }

        .logo img {
            height: 50px;
        }

        .logo span {
            font-family: 'Hind', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-left: 10px;
            color: var(--blue);
        }
       

        .logo span .highlight {
            color: var(--green);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--blue);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--saffron);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Registration Form Styles (Updated from login styles) */
        .registration-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .registration-card { /* Updated class name */
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            width: 100%;
            max-width: 450px;
            text-align: center;
        }

        .registration-header { /* Updated class name */
            margin-bottom: 2rem;
        }

        .registration-title { /* Updated class name */
            font-size: 1.8rem;
            color: var(--blue);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .registration-subtitle { /* Updated class name */
            color: var(--dark-gray);
            font-weight: 400;
        }

        .registration-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 2px rgba(0, 0, 128, 0.1);
        }

        .btn {
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background-color: var(--green); /* Changed to green for a positive action */
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #107c07;
            transform: translateY(-2px);
        }
        
        /* Hidden in register form */
        .forgot-password { 
            display: none;
        }

        .form-note {
            text-align: center;
            margin-top: 20px;
            color: #666666;
        }
        
        .form-note a {
            color: var(--blue);
            text-decoration: none;
            font-weight: 600;
        }
        
        .form-note a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .registration-card {
                padding: 1.5rem;
            }

            .registration-title {
                font-size: 1.5rem;
            }
        }
        
        /* --- Footer Styles --- */
        footer {
            background: linear-gradient(to right, var(--blue), #00005a);
            color: var(--white);
            padding: 70px 0 30px;
            margin-top: auto; /* Ensures footer stays at bottom */
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-family: 'Hind', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            height: 3px;
            width: 50px;
            background: var(--saffron);
            bottom: 0;
            left: 0;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col ul li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--saffron);
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 15px;
            color: var(--saffron);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--blue);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--saffron);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Responsive Styles for Footer */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }