:root {
            --primary-teal: #E75480 ;
            --dark-teal: #E75480 ;
            --orange: #FF8C00;
            --dark-bg: #E75480;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-teal);
            color: white;
            padding: 10px 0;
        }

        .top-bar .contact-info {
            font-size: 14px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
        }

        /* Navigation */
        .navbar {
            background: var(--primary-teal);
            padding: 15px 0;
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 15px;
            font-weight: 500;
        }

        .join-btn {
            background: white;
            color: var(--primary-teal);
            border: 2px solid white;
            padding: 8px 25px;
            border-radius: 5px;
            font-weight: 600;
        }

        /* Hero Section */
        .hero-section {
            background: #fe019a;
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 50%;
            height: 100%;
            background: #AA336A;
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .hero-section h2 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }

        .hero-image {
            position: relative;
            z-index: 3;
            border: 8px solid white;
            border-radius: 15px;
            overflow: hidden;
        }

        .apply-btn {
            background: white;
            color: var(--primary-teal);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 20px;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .about-badge {
            border: 3px dashed var(--primary-teal);
            border-radius: 50%;
            padding: 30px;
            display: inline-block;
        }

        .about-images img {
            border-radius: 15px;
            margin: 10px;
        }

        .quality-badge {
            background: var(--primary-teal);
            color: white;
            padding: 20px;
            border-radius: 10px;
            position: absolute;
            bottom: 20px;
            left: 20px;
        }

        .info-card {
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 3px solid var(--primary-teal);
        }

        /* Stats Section */
        .stats-section {
            background: #db007e;
            color: white;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: white;
        }

        .stat-icon {
            background: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        /* Programs Section */
        .programs-section {
            padding: 80px 0;
            background: white;
        }

        .program-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.1s;
        }

        .program-card:hover {
            transform: translateY(-2px);
        }

        .program-header {
            padding: 40px 20px;
            color: white;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .program-card:nth-child(1) .program-header {
            background: var(--primary-teal);
        }

        .program-card:nth-child(2) .program-header {
            background: var(--orange);
        }

        .program-card:nth-child(3) .program-header {
            background: var(--dark-teal);
        }

        .program-card:nth-child(4) .program-header {
            background: var(--orange);
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: #f0f4f8;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
        }

        .stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        .student-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .student-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
        }

        /* Teachers Section */
        .teachers-section {
            padding: 80px 0;
            background: white;
        }

        .teacher-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
        }

        .teacher-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .teacher-info {
            padding: 20px;
            text-align: center;
        }

        /* Events Section */
        .events-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .event-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
        }

        .event-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .event-badge {
            background: var(--primary-teal);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 12px;
        }

        /* Announcements */
        .announcement-item {
            border-left: 3px solid var(--orange);
            padding-left: 15px;
            margin: 20px 0;
        }

        /* Enrollment Section */
        .enrollment-section {
            padding: 80px 0;
            background: white;
        }

        .provides-list {
            background: #e6f2f2;
            padding: 40px;
            border-radius: 15px;
        }

        .provides-list ul {
            list-style: none;
        }

        .provides-list li {
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .enrollment-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .enrollment-form input,
        .enrollment-form select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .enroll-btn {
            background: var(--primary-teal);
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 20px;
        }

        /* Footer */
        .footer {
            background: var(--dark-teal);
            color: white;
            padding: 60px 0 20px;
        }

        .footer h5 {
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin: 10px 0;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: white;
            color: var(--dark-teal);
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            margin: 0 5px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-title span {
            color: var(--primary-teal);
        }

        .view-more-btn {
            border: 2px solid var(--primary-teal);
            color: var(--primary-teal);
            background: white;
            padding: 10px 30px;
            border-radius: 25px;
            font-weight: 600;
        }
		
		.notice
		{
			
			color:#E5F3FD;
		}