<style>
        /* Maintain consistent branding with main site */
        top-bar{
            background-color:#EE0E82;
            color:#EE0E82;
            padding: 8px 0;
            font-size: 14px;

        }
        top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
			padding:70px;
            margin-top: 10px;
        }
        .navbar {
            background-color: #060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        
        /* Admissions Hero Section */
        .admissions-hero {
            background: linear-gradient(rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0.1)), 
                        url('https://images.pexels.com/photos/32547083/pexels-photo-32547083.png?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
			height:100%;
            background-position:center;
            color: white;
            padding:120px 0;
            text-align: center;
			margin-top:20px;
        }
        .admissions-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Admissions Process */
        .process-step {
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 40px;
			 background-image: linear-gradient(to right top, #a0f2f2, #8ef4f1, #7af6f0, #63f7ed, #46f9ea);
        }
        .process-number {
            width: 50px;
            height: 50px;
            background-color: #ff0066;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        /* Enrollment Form */
        .enrollment-form {
            background-color: #cc00ff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .form-section h3 {
            color: #003366;
            margin-bottom: 20px;
        }
        .form-label {
            font-weight: 600;
        }
        .required-field::after {
            content: '*';
            color: red;
            margin-left: 4px;
        }
        
        /* File Upload Customization */
        .file-upload {
            position: relative;
            overflow: hidden;
            display: inline-block;
        }
        .file-upload-input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        /* Consistent with main site */
        footer {
            background-color:#060270;
            color: white;
            padding: 20px 0 20px;
        }
        footer h5 {
            color: #ff9900;
            margin-bottom: 5px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-top: 10px;
            text-align: center;
        }
        .section-title {
            color: #003366;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 3px;
            background-color: #ff9900;
        }
        .btn-primary {
            background-color: #003366;
            border-color: #003366;
        }
        .btn-outline-primary {
            color: #003366;
            border-color: #003366;
        }
        .btn-outline-primary:hover {
            background-color: #003366;
            color: white;
        }
        hr {
  border: 5px solid green;
  border-radius: 5px;
    </style>