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

html {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

.header {
    min-height: 70vh; /* Reduced height */
    width: 100%;
    background-color: #2B2826;
	display: flex;
    flex-direction: column;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    padding: 1% 6%; /* Adjust padding if necessary */
    justify-content: space-between;
    align-items: center;
    background-color: #2B2826; /* Ensure the background is consistent */
}

nav img {
    width: 150px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.4s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.cover-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
	min-height: 100vh;
    margin-top: 70px; /* Adjust this value to move the container lower */
    background-image: linear-gradient(rgba(4, 9, 30, 0.55), rgba(4, 9, 30, 0.55)), url(images/CoolSpaceBackground.jpg);
    background-size: cover; /* Ensures the image covers the entire element */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.profile {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure the .profile_img class has higher specificity if needed */
.profile img {
    width: 40%; /* Reset any previous width settings */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px;
    max-width: 400px; /* Ensure this is large enough */
}





.intro-box {
    flex: 1;
    padding: 20px;
    color: #fff;
}

.intro-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #F5F5F5;
}

.intro-box p {
    font-size: 20px;
    color: #F5F5F5;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .cover-container {
        flex-direction: column;
        text-align: center;
    }

    .profile img {
        width: 50%;
    }

    .intro-box {
        padding: 20px;
    }

    .intro-box h2 {
        font-size: 28px;
    }

    .intro-box p {
        font-size: 18px;
    }
}

nav .fa {
    display: none; /* Hide icons by default */
}

@media (max-width: 700px) {
    nav .fa {
        display: block; /* Show icons for mobile screens */
        color: #fff;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #2B2826;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    .nav-links ul {
        padding: 30px;
    }
}

/* Add your new styles here */
.title {
    color: white;  /* Sets the text color to white */
    font-weight: bold;  /* Makes the text bold */
    font-size: 36px;  /* Increases the font size */
    text-decoration: none;  /* Removes the underline */
}

/* Other CSS remains the same */



/* Other CSS remains the same */

/* Other CSS remains the same */
a {
	color: lightblue;
  }

#cs-section {
	padding: 160px 20px;
    
}

.section-title {
	margin-bottom: 40px;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px; /* Adjust the width of the line */
    height: 5px; /* Adjust the height of the line */
    background-color: #5a67d8; /* Adjust the color of the line */
    margin: 10px auto 0;
    border-radius: 5px; /* Optional: make the ends of the line rounded */
}


/* Computer Science Section */

/* Ensure the container holds the layout structure */
/* Computer Science Section */
section.computer-science {
    padding: 50px 20px;
    background-color: #2b2b2b; /* Match background color */
    color: #fff; /* Text color */
    text-align: center;
}

section.computer-science h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cs-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Add gap between items if needed */
}

.cs-box {
    background: #3c3c3c; /* Box background color */
    padding: 20px;
    border-radius: 5px;
    flex: 1 1 calc(50% - 40px); /* Two boxes per row with 20px gap */
    min-width: 300px; /* Ensure boxes don't get too small */
    text-align: center; /* Center content inside the box */
	
}

.cs-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f44336; /* Accent color */
}

.cs-box p {
	color: white;
}


.cs-box ul {
   
    padding-left: 20px;
	text-align: left;
}

.cs-box ul li {
    padding: 5px 0;
    font-size: 18px;
}

.certification, .project {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.certification img, .project img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.certification p, .project p {
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .cs-content {
        flex-direction: column;
        align-items: center;
    }

    .cs-box {
        width: 100%;
    }
}



/* End of CS Section */

@media(max-width: 700px){
	.text-box h1{
		font-size: 40px;
	}
	.nav-links ul li{
		display: block;
	}
	.nav-links{
		position: fixed;
		background: #2B2826;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa{
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.nav-links ul{
		padding: 30px;
	}
}
/*----- course -----*/

.course{
	width: 100%; /* width: 80%*/
	margin: auto;
	text-align: center;
	padding-top: 50px;
	padding-left: 40px;
	padding-right: 40px;
	background-color: #2B2826;
}
.course img{
	width: 15%;
	height: 60%;
}
h1{
	font-size: 36px;
	font-weight: 600;
	color: #F5F5F5;
}
p{
	color: #FAFAFA;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	
	
}
.course p {
	color: #F5F5F5;
}

.row{
	margin-top: 1%;
	display: flex;
	justify-content: space-between;
	gap: 50px;
}
.course-col{
	flex-basis: 45%;
	
	background-color: darkslategray;
	border-radius: 10px;
	
	margin-bottom: 5%; 
	
	padding: 20px  12px; /*used to be 20px 12px */
	padding-bottom: 30px;
	
	box-sizing: border-box;
	transition: 0.4s;
}
.course-col img{
	width: 100%;
	 max-width: 380px;/*added*/
	max-height: 140px;  /*added*/
	border-radius: 10px;
}
.course-col p{
	color: #F5F5F5;
	
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
	color: #F5F5F5;
}

#uniName {
 font-size: 150%;
}
h4{
	color: #F5F5F5;
}
.course-col:hover{
	box-shadow: 0 0 50px 0px rgba(0,0,0,0.2);
}
@media(max-width: 900px) {
	.row{
		flex-direction: column;
	}
	.course-col {
		padding-bottom: 20px;
	}
}

@media (min-width: 900px) and (max-width: 1050px) {
	
	.course-col {
		padding-bottom: 48px;
	}
}

/*------ campus ---*/

.campus{
	width: 90%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}
.campus p {
	color: #F5F5F5;
}
.campus-col{
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}
.campus-col img{
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 20px;
}
.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}
.layer:hover{
	background:rgba(226,0,0,0.7);
}
.layer h3{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	transition: 0.5s;
}
.layer:hover h3{
	bottom: 69%;
	opacity: 1;

}
.layer p{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 15px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	transition: 0.5s;
	opacity: 0;
}
.layer:hover p{
	bottom: 5%;
	opacity: 1;
}
@media(max-width: 700px){
	.layer p{
		font-size: 24px;
	}
}

/*------ Facilities ------*/

.facilities{
	width: 90%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
.facilities p{
	color: #F5F5F5;
}
.facilities-col{
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	position: relative;
	overflow: hidden;
}
.facilities-col img{
	width: 300px;
	height: 200px;
	border-radius: 10px;
}
.facilities-col p{
	padding: 0;
}
.facilities-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: left;
}

/*------ testimonials ------*/
.testimonials{
	width: 80%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
}
.testimonial-col{
	flex-basis: 44%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background: #fff3f3;
	padding: 25px;
	cursor: pointer;
	display: flex;
}
.testimonial-col img{
	height: 40px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;
}
.testimonial-col p{
	padding: 0;
}
.testimonial-col h3{
	margin-top: 15px;
	text-align: left;
}
.testimonial-col .fa{
	color: #f44336;
}
@media(max-width: 700px){
	.testimonial-col img{
		margin-left: 0px;
		margin-right: 15px;
	}
}

/*---- calll to action ----*/

.cta{
	margin: 100px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(images/galaxy-gif.webp);
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}
.cta h1{
	color: #fff;
	margin-bottom: 40px;
	padding: 0;
}

@media(max-width: 700px){
	.cta h1{
		font-size: 24px;
	}
}

/*------ footer ------*/
.footer{
	width: 100%;
	text-align: center;
	padding: 30px 0;
	background-color: rgb(66, 50, 50);
}
.footer h4{
	margin-bottom: 25px;
	margin-top: 20px;
	font-weight: 600;
	color: #F5F5F5;
}
.footer p{
	color: #F5F5F5;
}
.icons .fa{
	color: #f44336;
	margin: 0 13px;
	cursor: pointer;
	padding: 18px 0;
}
.fa-heart-o{
	color: #f44336;
}

/*----- skill -----*/

.skill{
	width: 90%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
	
}
.skill img{
	width: 100px;
	height: 100px;
}
h1{
	font-size: 36px;
	font-weight: 600;
}
p{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}

.row{
	margin-top: 1%;
	display: flex;
	justify-content: space-between;
}
.skill-col{
	flex-basis: 45%;
	
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.4s;
}
.skill-col p{
	font-size: 20px;
	color: #F5F5F5;
}
.skill-col img{
	width: 50px;
	height: 50px;
	border-radius: 10px;
}
.skill-col ul li{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	margin-left: 20px;
	color: #F5F5F5;
	
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.skill-col:hover{
	box-shadow: 0 0 50px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px) {
	.row{
		flex-direction: column;
	}
}

/*----- about us _----*/

.sub-header{
	height: 50vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/space-gif.gif);
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #fff;
}	
.sub-header h1{
	margin-top: 100px;
}
.about-us{
	width: 80%;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 50px;
}
.about-col{
	flex-basis: 48%;
	padding: 30px 2px;
}
.about-col img{
	width: 100%;
}
.about-col h1{
	padding-top: 0;
}
.about-col p{
	padding: 15px 0 25px;
	color: #F5F5F5;
}
.red-btn{
	border: 1px solid #f44336;
	background: transparent;
	color: #f44336;
}
.red-btn:hover{
	color: #fff;
}

.contact-us {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 150px auto;
	padding: 0 20px;
	box-sizing: border-box;
  }
  
  .contact-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 600px;
	width: 100%;
	text-align: center;
  }
  
  .contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
  }
  
  .contact-item i {
	font-size: 28px;
	color: #f44336;
	margin: 10px 0; /* Add vertical margin for spacing */
  }
  
  .contact-item h5, 
  .contact-item p {
	color: #F5F5F5;
	margin: 0;
	text-align: center;
  }
  
  .contact-item h5 {
	font-size: 20px;
	margin-bottom: 5px;
	font-weight: 400;
  }
  

.blogpost p {
	color: white;
}

.blogpost {
    display: flex;
    justify-content: center;
	padding: 0 20px;
	
}

.blogpost .blogpost-text {
    text-align: left;
}
.blogpost .blogpost-text h1 {
	padding-top: 15px;
	margin-bottom: 10px;
}
.blogpost .blogpost-text h4 {
	margin-top: 17px;
}
.blog-page .readpost {
	color: lightgray;
}

.blog-page {
    display: flex;
    justify-content: center;
	padding: 0 20px;
	
}

.blog-page .blog-page-text {
    text-align: left;
}

.blog-page h1 {
	padding-top: 20px;
}

.blogpost .readpost {
	color: lightgray;
}

.profile {
	text-align: center;
	font-family: "Merriweather", serif;
	margin-top: 60px;
}


.profile h2 {
	color: #F5F5F5;
}
.profile p {
	width: 45%;
    margin: auto;
	color: #F5F5F5;
	font-size: 20px;
	font-family: "Merriweather", serif;
	
}
@media(max-width: 700px) {
	.profile p {
		width: 60%;
		font-size: 18px;
	}
	.profile img {
		width: 40%;
		height: 40%;
	}
}

h5 {
	color: #F5F5F5;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.experience-section {
    background: #3c3c3c; /* Box background color */
    padding: 20px;
    border-radius: 5px;
    flex: 1 1 calc(50% - 40px); /* Two boxes per row with 20px gap */
    min-width: 300px; /* Ensure boxes don't get too small */
}

.experience-section h2 {
    text-align: center;
    color: #e74c3c;
}

.experience-item {
    display: flex;
    align-items: center; /* Aligns items to the center vertically */
    margin: 20px 0;
}

.experience-logo {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.experience-details {
    max-width: 600px;
}

.experience-details h3 {
    margin: 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.experience-details p, .experience-details ul, .experience-details li {
    text-align: left;
    margin: 5px 0;
}

.experience-details ul {
    padding: 0;
    font-size: 0.9em;
    list-style-type: none; /* Removes default list styling */
}



.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-header {
    min-height: 7vh; /* Reduced height */
    width: 100%;
    background-color: #2B2826;
	display: flex;
    flex-direction: column;
}

body {
	background-color: #3c3c3c;
}
