body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: #111;
            background: #fff;
        }

        /* =========================
           TOP BANNER
        ========================= */
        .top-banner {
            position: relative;
            height: 300px;
            overflow: hidden;
            background: #eee;
        }

        .top-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .72;
        }

        .admission-strip {
            position: absolute;
            left: 50%;
            bottom: 8px;
            transform: translateX(-50%);
            background: rgba(20, 35, 85, .78);
            color: #fff;
            font-size: 38px;
            font-weight: 700;
            padding: 2px 70px;
            white-space: nowrap;
        }

        /* =========================
           INTRO SECTION
        ========================= */
        .intro-section {
            min-height: 500px;
            background: linear-gradient(90deg, #ddd 0%, #f8f8f8 45%, #fff 100%);
        }

        .student-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            display: block;
            margin: auto;
        }

        .intro-content {
            padding: 80px 30px 50px;
        }

        .intro-title {
            font-size: 45px;
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            margin-bottom: 25px;
        }

        .intro-description {
            color: #555;
            font-size: 17px;
            line-height: 1.8;
            text-align: center;
            margin-bottom: 45px;
        }

        .eligibility-btn {
            background: #080d7d;
            border: none;
            color: #fff;
            border-radius: 35px;
            font-size: 17px;
            font-weight: 600;
            padding: 16px 20px;
            width: 90% !IMPORTANT;
            transition: .3s;
			text-decoration:none;
        }

        .eligibility-btn:hover {
            background:#FFCC00;
            color:#000000;
            transform: translateY(-2px);
			text-decoration:none;
        }

        /* =========================
           FORM SECTION
        ========================= */
        .form-section {
            background:#000048;
            color: #fff;
            padding: 60px 150px;
        }

        .form-title {
            font-size: 40px !IMPORTANT;
            font-weight: 700 !IMPORTANT;
            line-height: 1.25 !IMPORTANT;
            margin-bottom: 25px !IMPORTANT;
			color:#FFFFFF !IMPORTANT;			
        }

        .form-title span {
            color: #ffc400;
        }

        .form-description {
            font-size: 16px !IMPORTANT;
            line-height: 1.7 !IMPORTANT;
            color: #eee !IMPORTANT;
            max-width: 600px !IMPORTANT;
        }

        .download-btn {
            background: #ffc400;
            color: #111;
            border: none;
            border-radius: 35px;
            padding: 16px 45px;
            font-weight: 700;
            transition: .3s;
        }

        .download-btn:hover {
            background: #ffdb4d;
            color: #111;
            transform: translateY(-2px);
        }

        /* =========================
           HELP DESK
        ========================= */
        .help-section {
            padding: 65px 0 80px;
            background: #fff;
        }

        .section-heading {
            text-align: center;
            max-width: 400px;
            margin: 0 auto 60px;
        }

        .section-heading::before,
        .section-heading::after {
            content: "";
            display: block;
            width: 100%;
            height: 1px;
            background: #9aa0c0;
            margin: 0 auto 25px;
        }

        .section-heading::after {
            margin: 25px auto 0;
        }

        .section-heading h2 {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
        }

        .section-heading p {
            font-family: Georgia, serif;
            font-style: italic;
            color: #777;
            margin-top: 25px;
        }

        .contact-box {
            text-align: center;
            padding: 20px;
        }

        .contact-box h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .contact-box p {
            margin: 7px 0;
            color: #333;
            font-size: 16px;
        }

        /* =========================
           MOBILE
        ========================= */
        @media (max-width: 991px) {

            .top-banner {
                height: 150px;
            }

            .admission-strip {
                font-size: 28px;
                padding: 2px 35px;
            }

            .intro-section {
                min-height: auto;
            }

            .intro-content {
                padding: 45px 20px;
            }

            .intro-title {
                font-size: 30px;
            }

            .intro-description {
                font-size: 15px;
            }

            .form-title {
                font-size: 28px !IMPORTANT;
            }
        }

        @media (max-width: 575px) {

            .top-banner {
                height: 110px;
            }

            .admission-strip {
                font-size: 20px;
                padding: 3px 20px;
            }
			
			.student-image {
            width: 100%;
            max-width: 200px;
            height: auto;
            display: block;
            margin: auto;
        }

            .intro-content {
                padding: 35px 15px;
            }

            .intro-title {
                font-size: 35px;
            }

            .intro-description {
                font-size: 17px;
                line-height: 1.6;
                margin-bottom: 30px;
            }

         /*
		    .eligibility-btn {
                font-size: 14px;
                padding: 13px 15px;
            }*/
			
			.eligibility-btn {
            width: 100%;
	        }

            .form-section {
                padding: 45px 15px;
                text-align: center;
            }

            .form-title {
                font-size: 25px;
            }

            .form-description {
                font-size: 13px;
            }

            .download-btn {
                margin-top: 20px;
                padding: 13px 35px;
            }

            .help-section {
                padding: 45px 15px;
            }

            .section-heading {
                margin-bottom: 35px;
            }

            .section-heading h2 {
                font-size: 27px;
            }

            .contact-box {
                padding: 15px 5px;
                margin-bottom: 15px;
            }

            .contact-box h4 {
                font-size: 19px;
                margin-bottom: 15px;
            }

            .contact-box p {
                font-size: 14px;
            }
        }