<style>
        /* Maintain consistent branding */
        top-bar {
            background-color: #EE0E82;
            color: white;
            padding: 8px 0;
            font-size: 14px;
			
        }
		top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
			padding:70px;
        }
		
        .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;}
			
        .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;
        }

        /* Curriculum Hero */
        .curriculum-hero {
            background: linear-gradient(rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0.1)), 
                        url('https://images.pexels.com/photos/32893428/pexels-photo-32893428.png');
            background-size: cover;
            background-position:center;
            color:  #FFC300;
            padding: 120px 0;
            text-align: center;
            margin-top:20px;
        }

        /* Morph Animation */
        .morph-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
        }
        .morph-img:hover {
            border-radius: 30% 20% / 10% 30%;
            transform: scale(1.03);
        }
        .morph-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .morph-img:hover img {
            transform: scale(1.1);
        }

        /* Assessment Cards */
        .assessment-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        .assessment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .assessment-icon {
            font-size: 40px;
            color: #003366;
            margin-bottom: 15px;
        }

        /* Timeline */
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: #003366;
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 7px;
            top: 20px;
            width: 1px;
            height: calc(100% - 20px);
            background-color: #003366;
        }
        .timeline-item:last-child:after {
            display: none;
        }

        /* Inquiry Form */
        .inquiry-form {
            background-color: #f5f9ff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
		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;
        }
    </style>