
.logo{

	margin-top: 20px;
	margin-left: 5%;
}
.nav{
	
	 height: 95px;

}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img{
	
	  margin-top:90px;
	


}



.upcoming-exams-section {
    width: 100%;
    padding: 50px 20px;
    background: #f7f7f7;
}

.upcoming-exams-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Heading */

.upcoming-exams-title {
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin: 0 0 35px;
    position: relative;
}

.upcoming-exams-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #0072bc;
    margin: 12px auto 0;
}


/* Main table */

.exam-table {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}


/* Each row */

.exam-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.exam-row:last-child {
    border-bottom: none;
}


/* LEFT SIDE - DATE */

.exam-date {
    width: 30%;
    padding: 20px;
    text-align: center;

    /* Middle vertical line */
    border-right: 2px solid #0072bc;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* RIGHT SIDE - EXAM */

.exam-name {
    width: 70%;
    padding: 20px 30px;

    display: flex;
    justify-content: center;
    flex-direction: column;
}


/* Table heading */

.exam-heading {
    background: #0072bc;
    color: #fff;
}

.exam-heading .exam-date,
.exam-heading .exam-name {
    font-size: 18px;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
}

.exam-heading .exam-date {
    border-right: 2px solid #fff;
}


/* Date */

.date-day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0072bc;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-top: 7px;
    color: #555;
}


/* Exam name */

.exam-name h4 {
    margin: 0 0 7px;
    padding: 0;
    font-size: 19px;
    font-weight: 700;
    color: #222;
}

.exam-name p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #666;
}


/* Hover effect */

.exam-row:not(.exam-heading):hover {
    background: #f1f8ff;
}


/* ==============================
   MOBILE
================================ */

@media(max-width:600px){

    .enrollment-popup{

        width:calc(100% - 30px);

        right:15px;
    }

}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Notification Bar */
.notification-bar{
    width:100%;
    height:45px;
    background:orange;
    color:#fff;
    display:flex;
    align-items:center;
    overflow:hidden;
	
}

/* Fixed Notification Title */
.notification-title{
   
    height:45px;
    padding:0 20px;
    display:flex;
    align-items:center;
    font-weight:bold;
    white-space:nowrap;
    z-index:2;
}

/* Scrolling Area */
.notification-scroll{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
}


.notification-text{
    display:inline-block;
    animation:scroll-left 20s linear infinite;
    white-space:nowrap;
}

.notification-text a{
    color:#fff;
    text-decoration:none;
    margin:0 15px;
}

.notification-text span{
    color:#fff;
    margin:0 5px;
}

@keyframes scroll-left{
    0%{
        transform:translateX(100%);
    }

    100%{
        transform:translateX(-100%);
    }
}





*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
}


/* ==============================
   ENROLLMENT POPUP
================================ */

.enrollment-popup{
    position:fixed;

    top:50%;
    right:20px;

    transform:translateY(-50%) translateX(120%);

    width:350px;

    background:#fff;

    border-radius:10px;

    box-shadow:0 5px 30px rgba(0,0,0,0.30);

    overflow:hidden;

    z-index:9999;

    transition:transform 0.5s ease;
}


/* Popup Open */

.enrollment-popup.show{
    transform:translateY(-50%) translateX(0);
}


/* ==============================
   HEADER
================================ */

.enrollment-header{

    background:linear-gradient(
        180deg,
        #0A1623 0%,
        #10263A 45%,
        #153A5A 100%
    );

    color:#fff;

    padding:20px;

    position:relative;
}

.enrollment-header h3{
    font-size:24px;
    margin-bottom:5px;
}

.enrollment-header p{
    font-size:14px;
    color:#dceaf5;
}


/* ==============================
   CLOSE BUTTON
================================ */

.enrollment-close{

    position:absolute;

    top:8px;
    right:12px;

    width:30px;
    height:30px;

    display:flex;

    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:26px;

    cursor:pointer;

    border-radius:50%;
}

.enrollment-close:hover{
    background:rgba(255,255,255,0.15);
}


/* ==============================
   FORM
================================ */

.enrollment-form{
    padding:20px;
}

.form-group{
    margin-bottom:15px;
}

.form-group label{
    display:block;

    margin-bottom:6px;

    font-size:14px;

    font-weight:600;

    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:11px 12px;

    border:1px solid #ddd;

    border-radius:5px;

    font-size:14px;

    outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#153A5A;
}


/* ==============================
   BUTTON
================================ */

.enroll-btn{

    width:100%;

    padding:12px;

    border:none;

    border-radius:5px;

    background:#153A5A;

    color:#fff;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;
}

.enroll-btn:hover{
    background:#0A1623;
}


