/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jul 5, 2025, 3:45:48 PM
    Author     : StephenMbithi
*/
  :root {
            --main-blue: #0d6efd;
            --main-purple: #6f42c1;
        }

        .navbar-custom {
            background: linear-gradient(to right, var(--main-blue), var(--main-purple));
        }

        .nav-link {
            color: white !important;
        }

        .nav-link:hover {
            text-decoration: underline;
        }

        .navbar-brand img {
            height: 140px;
        }
 .footer-custom {
            background: linear-gradient(to right, #0d6efd, #6f42c1);
        }
        .footer-link a {
            color: #ffffff;
            text-decoration: none;
        }
        .footer-link a:hover {
            text-decoration: underline;
        }
.text-purple {
    color: #6f42c1;
}
