*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/*---------------Preloader-------------*/
#preloader{
    background: #ffffff url(images/Infinity.gif) no-repeat center;
    background-size: 5%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}
html {
  scroll-behavior: smooth;
}
.popup{
	width:80%;
    background-image: linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0)),url(images/BGI.jpg);
    background-position: center;
    background-size: cover;
    width: 400px;
    padding: 30px 40px;
    position: fixed !important ;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none; 
    text-align: center;
	z-index:20;
}
#close{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 28px;
    color: #ffffff;
	background: red;
	border-radius: 100%;
	width: 40px;
	height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup h2{
	color:white;
	margin-top: -20px;
	margin-bottom: 10px;
}.pop-col input, .pop-col textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.pop-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 14px;
    background: #03549a;
    position: relative;
    cursor: pointer;
}
.pop-btn:hover{
    border: 1px solid #03549a;
    background: white;
    color: #03549a;
    transition: 0.5s;
}

.addbtn{
    display: block;
    width: 150px;
    position: relative;
    margin: 10px auto;
    text-align: center;
    background-color: #0f72e5;
	border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
}
.header1{
    min-height: 20vh;
    width: 100%;
	background-image: url("images/bg.jpg") ;
	z-index:1;
}
.code{
	position: absolute;
	left:2%;
}
.logoname{
	width: 600px;
	padding: 2px;
}

.header {
    position: relative;
    min-height: 65vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    color: white;
}
.text-box {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10px 20px;           /* Reduced vertical padding */
    background: rgba(0, 0, 0, 0.5); 
    display: inline-block;        /* Keeps it tight to the content */
    border-radius: 6px;           /* Slightly rounded corners */
    margin-top: 100px;
    max-width: 50%;               /* Prevent it from stretching too wide on large screens */
}
.text-box h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}
.admission-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #ff4b2b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.slideshow {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeZoom 25s infinite;
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

@keyframes fadeZoom {
    0%   { opacity: 0; transform: scale(1); }
    5%   { opacity: 1; transform: scale(1.02); }
    20%  { opacity: 1; transform: scale(1.05); }
    25%  { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.1); }
}
nav {
    display: flex;
    padding: 0 0;
    justify-content: space-around;
    align-items: center;
    font-size: 27px;
    color: white;
    z-index: 10;
}
nav img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  top: 0;
}
li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.nav-links {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 10;
    background-color: rgba(45, 45, 50, 0.9);
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 1px 12px;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover:after{
    width: 100%;
}
/*----------------------------------------------LOGIN Drop Down Menu--------------------------------------*/
/* Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin: 0;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;   
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #3498DB;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #e60000;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.dropdown:hover .dropdown-content {
  display: block;
}

.text-box{
    width: 80%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 55px;
}
.admission-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid red;
    padding: 6px 34px;
    font-size: 24px;
    background: red;
    position: relative;
    cursor: pointer;
}
.admission-btn:hover{
    border: 5px solid red;
    font-size: 26px;
    background: red;
	color: white;
    transition: 0.5s;
}
nav .fa{
    display: none;
}
@media(max-width: 1050px){
	.header1{
		min-height: 15vh;
	}
	.code{
		width:100px;
	}
	.logoname{
		width: 650px;
		height:100px;
		padding-left: 20%;
	}
    .nav-links {
        position: fixed;
        background: #2D2D32;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 10; /* ensure it's on top of slide */
        transition: right 0.2s ease;
    }
    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    #menu{
        width: 10px;
        height: 5px;
        background-color: black;
        margin: 6px 0;
    }
    .text-box h1{
        font-size: 25px;
    }
    .admission-btn{
        font-size: 20px;
    }
}
@media(max-width: 700px){
    #preloader{
        background-size: 10%;    
    }
	.header1{
		min-height: 22vh;
		background: url(images/Head.jpg) no-repeat;
		background-position: top;
		background-size: 100% 22vh;
		position: relative;
	}
	.code{
		left:0;
		width: 70px;
	}
	.logoname{
		display:none;
	}
    nav{
        font-size: 18px;
    }
    nav .fa{
        margin-right: -88%;
    }
    .header{
        z-index:0;
    }
    .nav-links{
        z-index:10;
    }
    .nav-links p{
		font-size: 13px;
    }
    .nav-links ul li{
        display: block;
    }
}

/*-------unversity------*/

.university{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}
.university h1{
    font-size: 36px;
    font-weight: 600;
    
}
.university p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.university-row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.about-col{
    flex-basis: 65%;
    background: #fff3f3;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    text-align: justify;
}
.about-col h3{
	font-size: 26px;
    text-align : center;
}
.about-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.university-col{
    flex-basis: 45%;
    border-radius: 10px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}
.university-col img{
    width: 100%;
    height: 90%;
    transition: 0.5s;
}
.university-col img:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.8);
}
@media(max-width: 1200px){
    .university-row{
        flex-direction: column;
    }
    .university h1{
        font-size: 20px;
    }
    .university h3{
        font-size: 15px;
    }
	.about-col h3{
	    font-size: 26px;
    }
}


/*--------Courses-----*/

.course{
    width: 80%;
    margin: auto;
    text-align: center;
}
.course h1{
    font-size: 36px;
    font-weight: 600;
	padding-top: 80px;
	padding-bottom: 50px;
}
.course-row{
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.course-col{
    flex-basis: 23%;
	height: 300px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
	cursor: pointer;
}
.course-col img{
    width: 100%;
    height: 100%;
    display: block;
}
.clayer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(26,10,10,0.6);
}
.clayer h2{
    width: 100%;
    font-weight: 1000;
    color: white;
    font-size: 56px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    bottom: 40%;
    opacity: 1;
}
.clayer h4{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    bottom: 15%;
    opacity: 1;
}
.clayer:hover{
    background: rgba(26,0,0,1);    
	transition: 0.5s;
}
@media(max-width: 1510px){
    .course-col{
	height:250px;
    }
}
@media(max-width: 1260px){
	.clayer h2{
        font-size: 40px;
	}
	.clayer h4{
		font-size: 12px;
	}
    .course-col{
	height:200px;
    }
}
@media(max-width: 1020px){
	.clayer h4{
		font-size: 8px;
	}
    .course-col{
		height:150px;
    }
}
@media(max-width: 760px){
	.clayer h2{
        font-size: 30px;
	}
    .course-col{
		height:130px;
    }
}
@media(max-width: 700px){
    .course-row{
        flex-direction: column;
    }
	.course-col{
		flex:100%;
		max-width: 100%;
    	height: 100%;
	}
    .course h1{
        font-size: 30px;
    }
    .course h2{
		bottom:50%;
    }
	.clayer h2{
        font-size: 60px;
	}
	.clayer h4{
		font-size: 20px;
	}
}

/*--------Office-----*/

.office{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.office h1{
    font-size: 36px;
    font-weight: 600;
}
.office p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}
.office-row{
    display: flex;
    justify-content: space-between;
}
.office-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-top: 5%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.office-col img{
    width: 100%;
    height: 100%;
    display: block;
}
.layer{
    position: absolute;
    bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: black;
}
.layer {
	border-bottom: 50px solid #555;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	height: 0;
}

.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    left: 45%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 1;
}
.olayer{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.olayer h3{
    opacity: 0;
}
.olayer:hover h3{
    width: 100%;
    font-weight: 600;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
	transition: 0.5s;
    bottom: 49%;
    opacity: 1;
}
.olayer:hover{
    background: rgba(226,0,0,.7);    
	transition: 0.5s;
}
@media(max-width: 900px){
    .office h3{
        font-size: 20px;
		left:40%;
    }
}
@media(max-width: 700px){
    .office h1{
        font-size: 30px;
    }
    .office h3{
		font-size: 26px;
		left: 45%;
    }
    .office-row{
        flex-direction: column;
    }
}

/*--------New Slide-----*/
.gslider{
    width: 80%;
    margin: auto;
    text-align: center;
}
.gslider h1{
	padding-top: 50px;
	padding-bottom: 50px;
    font-size: 36px;
    font-weight: 600;
}


.carousel-container {
  border-radius: 30px;
  overflow: hidden;
  max-width: 100%;
  position: relative;
  box-shadow: 0 0 30px -20px #223344;
  margin: auto;
  z-index: 0;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
.mySlides img {
  display: block;
  width: 100%;
  height: 600px;
}

/* image gradient overlay [optional] */
/*  .mySlides::after {
  content: "";
  position: absolute;
  inset: 0;
    background-image: linear-gradient(-45deg, rgba(110, 0, 255, .1), rgba(70, 0, 255, .2));
} */

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: auto;
  padding: 20px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 8px 8px 0;
  background: rgba(26, 0, 0, 0.7);
  user-select: none;
}
.prev {
  left: 0;
  border-radius:  0 8px 8px 0;
}
.next {
  right: 0;
  border-radius: 8px 0 0 8px;
}
.prev:hover,
.next:hover {
  background-color: rgba(173, 216, 230, 0.3);
}

/* Caption text */
.text {
  color: White;
  background-color: rgba(10, 10, 20, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}

/* Number text (1/3 etc) */
.number {
  color: #f2f2f2;
  font-size: 11px;
  background-color: rgba(173, 216, 230, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 8px 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.dots-container {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%);
}

/* The dots/bullets/indicators */
.dots {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 4px;
  background-color: rgba(26, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.active,
.dots:hover {
  background-color: rgba(26, 0, 0, 0.7);
}

/* transition animation */
.animate {
  -webkit-animation-name: animate;
  -webkit-animation-duration: 1s;
  animation-name: animate;
  animation-duration: 2s;
}

@keyframes animate {
  from {
    transform: scale(1.1) rotateY(10deg);
  }
  to {
    transform: scale(1) rotateY(0deg);
  }
}

@media(max-width: 700px){
	.mySlides img {
	  height: 250px;
	}
	.text {
	  font-size: 12px;
	}
	.prev,
	.next {
	  font-size: 10px;
	}
	.gslider h1{
		font-size: 30px;
	}
    .dots {
      height: 8px;
      width: 8px;
    }
    .text {
      font-size: 11px;
      bottom: 22px;
    }
	
}


/*-------admin------*/

.admin{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.admin h1{
    font-size: 36px;
    font-weight: 600;
}
.admin p{
    color: #2B2827;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
	padding-bottom: 20px;
}
.adrow{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
}

.testimonial-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    text-align: left;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
    background-image: url("img/bg7.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    border-style: solid;
    padding: 20px;
    flex-basis:44%;
}

.testimonial-col img {
    height: 150px;
    width: 130px;
    border-radius: 45%;
    border: 1px solid #ddd;
    object-fit: cover;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.testimonial-info {
    margin-bottom: 10px;
}

.testimonial-info h3,
.testimonial-info h4 {
    margin: 0;
}

.testimonial-text {
    max-width: 100%;
}

/* ✅ Mobile responsive */
@media (max-width: 768px) {
    .testimonial-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 90%;
    }

    .testimonial-content {
        align-items: center;
    }

    .testimonial-info h3 {
        font-size: 18px;
    }

    .testimonial-info h4 {
        font-size: 16px;
    }

    .testimonial-text {
        margin-top: 10px;
        font-size: 14px;
    }

  .adrow {
    flex-direction: column;
    align-items: center;
  }

}

/*-------Photo Gallary------*/


.photo{
    width: 80%;
    margin: auto;
    text-align: center;
	padding-top:50px;
}
.photo h1{
    font-size: 36px;
    font-weight: 600;
}
.photo p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
	padding-bottom: 50px;
}
.photo-row{
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.photo-col{
    flex-basis:13%;
	height: 200px;
    border-radius: 10px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
	cursor: pointer;
}
.photo-col img{
    width: 100%;
    height: 100%;
    display: block;
}
.player{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(26,10,10,0);
}
.player h2{
    width: 100%;
    font-weight: 500;
    color: white;
	background: #AF1705;
    font-size: 22px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    bottom: 0%;
    opacity: 1;
}
.player:hover{
    background: rgba(26,10,10,0.7);
	transition: 0.5s;
}
@media(max-width: 1330px){
    .photo-col{
		flex-basis: 13%;
		height: 180px;
    }
}
@media(max-width: 1200px){
    .photo-col{
		flex-basis: 13%;
		height: 130px;
    }
}
@media(max-width: 900px){
    .photo h2{
        font-size: 18px;
    }
    .photo-col{
		flex-basis: 13%;
		height: 100px;
    }
}
@media(max-width: 700px){
    .photo h1{
        font-size: 30px;
    }
    .photo h3{
		font-size: 26px;
		left: 45%;
    }
    .photo-col{
		height:200px;
		width:200px;
    }
}
@media(max-width: 600px){
    .photo h2{
        font-size: 24px;
    }
    .photo-row{
		flex-direction: column;
    }
    .photo-col{
		height:300px;
		width:100%;
    }
}


/*-------footer------*/

.footer{
    background: black;
    color: white;
    width: 100%;
    margin: auto;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer p{
    color: #777;
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    padding: 5px;
}
.footer h3{
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 0px;
    padding: 10px;
}
.footer-row{
    display: flex;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;
}
.col a{
    color: #777;
    font-size: 13px;
}
.logo-col img{
    width: 100px;
}
.logo-col{
    flex-basis: 25%;
}    
.col{
    flex-basis: 75%;
}    
.footer-coll h3{
	font-size: 12px;
}
@media(max-width: 750px){
    .footer-row{
        flex-direction: column;
    }	
	.footer-coll h3{
		font-size: 10px;
	}
}    
@media(max-width: 600px){
	.footer-coll h3{
		font-size: 8px;
	}
}    

/*----------------------------------------------ABOUT US PAGE--------------------------------------*/
.about-header{
    height: 45vh;
    widows: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/about.jpg);
    background-position: center;
    background-size: cover;
    color: white;
}
.sub-heading{
    text-align: center;
    margin-top: 150px;
}
.about-uss{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    display:flex;
}
.about-uss p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.about-us-row{
    display: flex;
    justify-content: space-between;
}
.about-coll{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-coll p{
    text-align: justify;
}
.about-coll img{
    margin-top: 100px;
    width: 100%;
    transition: 0.5s;
}
.about-coll img:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.8);
}
@media(max-width: 1200px){
.about-us-row{
    display: block;
}
.about-coll img{
    margin-top:  0px;
}
}
@media(max-width: 1200px){
    .about-header p{
        text-align: center;
    }
}
@media(max-width: 700px){
    .about-header p{
        margin-top: 10px;
    }
	.about-header{
		height: 30vh;
	}
	.sub-heading{
		margin-top: 100px;
	}
}
/*----------------------------------------------COURSES PAGE--------------------------------------*/
.course-header{
    height: 45vh;
    widows: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/Courses.jpg);
    background-position: center;
    background-size: cover;
    color: white;
}
.courses{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.courses h1{
    font-size: 36px;
    font-weight: 600;
}
.course-video{
	width:80%;
}
.courses h2{
    margin-top: 50px;
	background-color: #3498DB;
	color: white;
	padding: 16px;
}
.courses p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.courses ul{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 25px;
    list-style-type: disc;
}
.courses li{
	display: list-item;
	padding-right: 40px;
}
.courses-row{
    margin-top: 5%;
    margin-bottom: 5%;
    display: flex;
    justify-content: space-between;
}
.courses-col{
    flex-basis: 60%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 20px 12px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    text-align: justify;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.courses-col h3{
    text-align : center;
}
.courses-pic-col{
    box-shadow: 0 0 200px 0px rgba(0,0,0,1);
    flex-basis: 37%;
    border-radius: 100px;
    margin-bottom: 30px; 
    position: relative;
    overflow: hidden;
	height:500px;
}
.courses h3{
	font-size: 18px;
}
.courses-pic-col img{
    width: 100%;
	height:500px;
    transition: 0.5s;
}
h3.syllabus{
	text-align:right;
    margin-bottom: 100px; 
}

@media(max-width: 1200px){
    .courses-row{
        flex-direction: column;
    }
	.courses-pic-col img{
		height:600px;
	}
    .courses h3{
        font-size: 15px;
    }
    .courses ul{
        font-size: 15px;
    }
    .course-header p{
        text-align: center;
    }
}
@media(max-width: 700px){
	.course-header{
		height: 30vh;
	}
    .course-header p{
        margin-top: 10px;
    }
	.courses-pic-col img{
		height:450px;
	}
}

/*----------------------------------------------FACULTY PAGE--------------------------------------*/

.faculty-header{
    height: 45vh;
    widows: 50%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/Team.jpg);
    background-position: center;
    background-size: cover;
    color: white;
}
.faculty{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.faculty h1{
    font-size: 36px;
    font-weight: 600;
}
.faculty p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.faculty table{
    background:#fff3f3;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 70px;
    align-content: center;
}
.faculty table td, .faculty table th{
    padding: 30px;
}

@media(max-width: 1200px){
    .faculty-header p{
        text-align: center;
    }
}
@media(max-width: 700px){
    .faculty-header p{
        margin-top: 10px;
    }
    .faculty h1{
        font-size: 20px;
    }
	.faculty-header{
		height: 30vh;
	}
    .faculty table{
        font-size: 12px;
    }
    .faculty table td, .faculty table th{
        padding: 5px;
    }
}


/*----------------------------------------------ACTIVITIES PAGE--------------------------------------*/

.activities-header{
    height: 45vh;
    widows: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/activities.jpg);
    background-position: center;
    background-size: cover;
    color: white;
}
.activities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.activities h1{
    font-size: 26px;
    font-weight: 600;
}
.activities p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}
.activities-row{
	flex-wrap: wrap;
    margin: 3%;
    display: flex;
    justify-content: space-between;
}
.activities-col{
	flex:33%;
	max-width: 30%;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
	cursor: pointer;
}
.activities-col img{
    box-shadow: 0 0 100px 0px rgba(0,0,0,1);
    width: 100%;
    height: 60%;
    border-radius: 10px;
}
@media(max-width: 900px){
    .activities h3{
        font-size: 15px;
    }
    .activities ul{
        font-size: 15px;
    }
	.activities-col{
		flex:50%;
		max-width: 45%;
	}
    .activities-header p{
        text-align: center;
    }
	.activities h1{
		font-size: 20px;
	}
}
@media(max-width: 700px){
    .activities-row{
        flex-direction: column;
    }
	.activities h1{
		font-size: 16px;
	}
    .activities-header p{
        margin-top: 10px;
    }
	.activities-col{
		flex:0%;
		max-width: 100%;
	}
	.activities-header{
		height: 30vh;
	}
}

/*----------------------------------------------CONTACT US PAGE--------------------------------------*/

.contact-header{
    height: 45vh;
    widows: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/Contact.jpg);
    background-position: top;
    background-size: cover;
    color: white;
}
.location{
    width: 80%;
    margin: auto;
    padding: 50px 0;
    text-align: center;
}
.location h1{
    font-size: 36px;
    font-weight: 600;
}
.location p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    margin-bottom: 50px;
}
.location iframe{
    width:100%;
}
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-row{
    margin-top: 5%;
    margin-bottom: 5%;
    display: flex;
    justify-content: space-between;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: red;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
	outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-btn{
    display: inline-block;
    text-decoration: none;
    color: red;
    border: 1px solid red;
    padding: 12px 34px;
    font-size: 14px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.contact-btn:hover{
    border: 1px solid red;
    background: red;
    color: white;
    transition: 0.5s;
}

@media(max-width: 1200px){
    .contact-header p{
        text-align: center;
    }
    .contact-row{
        flex-direction: column;
    }
}

@media(max-width: 700px){
    .contact-header {
        height: 30vh;
    }
    .contact-header p{
        margin-top: 10px;
    }
    .contact-col div h5{
        font-size: 16px;
    }
    .contact-col div p{
        font-size: 14px;
    }	
}














