@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    background-color: #F4F4F4;
    font-family: Poppins;
}

:root{
    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;

    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 9;
    --item2-opacity: 1;

    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 8;
    --item3-opacity: 1;

    --item4-transform: translate(90%,20%) scale(0.5);
    --item4-filter: blur(30px);
    --item4-zIndex: 8;
    --item4-opacity: 1;
    
    --item5-transform: translate(120%,30%) scale(0.3);
    --item5-filter: blur(40px);
    --item5-zIndex: 7;
    --item5-opacity: 0;
}
header{
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    height: 50px;
    align-items: center;
}
header .logo{
    font-weight: bold;
}
header nav a{
    margin-left: 30px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}
/* carousel */
.carousel{
    position: relative;
    height: 800px;
    overflow: hidden;
    margin-top: -50px;
}
.carousel .list{
    position: absolute;
    width: 1140px;
    max-width: 90%;
    height: 80%;
    left: 50%;
    transform: translateX(-50%);
}
.carousel .list .item{
    position: absolute;
    left: 0%;
    width: 70%;
    height: 100%;
    font-size: 15px;
    transition: left 1s ease, opacity 1s ease, width 1s;
}
.carousel .list .item:nth-child(n + 6){
    opacity: 0;
}
.carousel .list .item:nth-child(2){
    z-index: 10;
    transform: translateX(0);
}
.carousel .list .item img{
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
}
.carousel .list .item .introduce{
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 15px;
    color: #ffcb05;
}
.carousel .list .item:nth-child(2) .introduce{
    opacity: 1;
    pointer-events: auto;
    width: 400px;
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    transition: opacity 0.5s;
}
.carousel .list .item .introduce .title{
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1em;
}
.carousel .list .item .introduce .topic{
    font-size: 2.5em;
    font-weight: 500;
}
.carousel .list .item .introduce .des{
    font-size: 1.2em;
    color: white;
}
.carousel .list .item .introduce .seeMore{
    font-family: Poppins;
    margin-top: 1.2em;
    padding: 7px 20px;
    background: #ffcb05;
	color: black;
	border-radius: 6px;
	border-color: #ffcb05;
    font-weight: bold;
    letter-spacing: 3px;
    transition: background 0.5s;
}
.carousel .list .item .introduce .seeMore:hover{
    background: transparent;
    color: #ffcb05;
    cursor: pointer;
}
.carousel .list .item:nth-child(1){
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-zIndex);
    opacity: var(--item1-opacity);
    pointer-events: none;
}
.carousel .list .item:nth-child(3){
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-zIndex);
}
.carousel .list .item:nth-child(4){
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-zIndex);
}
.carousel .list .item:nth-child(5){
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
    pointer-events: none;
}
/* animation text in item2 */
.carousel .list .item:nth-child(2) .introduce .title,
.carousel .list .item:nth-child(2) .introduce .topic,
.carousel .list .item:nth-child(2) .introduce .des,
.carousel .list .item:nth-child(2) .introduce .seeMore{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        transform: translateY(-30px);
        filter: blur(10px);
    }to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}
.carousel .list .item:nth-child(2) .introduce .topic{
    animation-delay: 1.2s;
}
.carousel .list .item:nth-child(2) .introduce .des{
    animation-delay: 1.4s;
}
.carousel .list .item:nth-child(2) .introduce .seeMore{
    animation-delay: 1.6s;
}
.carousel.next .item:nth-child(1){
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2{
    from{
        transform: var(--item2-transform);
        filter: var(--item2-filter);
        opacity: var(--item2-opacity);
    }
}
.carousel.next .item:nth-child(2){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3{
    from{
        transform: var(--item3-transform);
        filter: var(--item3-filter);
        opacity: var(--item3-opacity);
    }
}
.carousel.next .item:nth-child(3){
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4{
    from{
        transform: var(--item4-transform);
        filter: var(--item4-filter);
        opacity: var(--item4-opacity);
    }
}
.carousel.next .item:nth-child(4){
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5{
    from{
        transform: var(--item5-transform);
        filter: var(--item5-filter);
        opacity: var(--item5-opacity);
    }
}

/* previous */
.carousel.prev .list .item:nth-child(5){
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(3){
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(2){
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1{
    from{
        transform: var(--item1-transform);
        filter: var(--item1-filter);
        opacity: var(--item1-opacity);        
    }
}

/* detail  */
.detail .project-type {
    display: inline-block;
    background-color: white;/*#4CAF50;*/ /* Green background for visibility */
    color: #00274c;
    /*color: white;*/
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-weight: bold;
}
.detail .actions {
	font-family: Poppins;
    margin-top: 1.2em;
    text-align: center; /* Center align the button */
}
.detail .checkout {
	font-family: Poppins;
    font-size: 1em;
    font-weight: bold;
    padding: 7px 20px;
    background-color: #ffcb05; /* Gold color to match theme */
    border-radius: 6px;
	border-color: #ffcb05;
    color: #000;
    transition: background-color 0.3s, transform 0.2s;
}
.detail .tryout {
	font-family: Poppins;
    font-size: 1em;
    font-weight: bold;
    padding: 7px 20px;
    background-color: #ffcb05; /* Gold color to match theme */
    border-radius: 6px;
	border-color: #ffcb05;
    color: #000;
    transition: background-color 0.3s, transform 0.2s;
}
.detail .tryout2 {
    font-family: Poppins;
    font-size: 1em;
    font-weight: bold;
    padding: 7px 20px;
    background-color: #ffcb05; /* Gold color to match theme */
    border-radius: 6px;
    border-color: #ffcb05;
    color: #000;
    transition: background-color 0.3s, transform 0.2s;
}
.detail .checkout:hover {
	cursor: pointer;
	color: #ffcb05;
    background-color: #e0b004; 
    transform: scale(1.05); 
	background: transparent;
}
.detail .tryout:hover {
	cursor: pointer;
	color: #ffcb05;
    background-color: #e0b004; 
    transform: scale(1.05); 
	background: transparent;
}
.detail .tryout2:hover {
    cursor: pointer;
    color: #ffcb05;
    background-color: #e0b004; /* Darker shade for hover effect */
    transform: scale(1.05); /* Slightly enlarge on hover */

/*    cursor: pointer;
    color: #ffcb05;*/
    background: transparent;
}
.detail .checkout:focus {
    outline: none; /* Remove the default focus outline */
    box-shadow: 0 0 8px rgba(255,203,5,0.6); /* Glow effect on focus */
}

.detail .tryout:focus {
    outline: none; /* Remove the default focus outline */
    box-shadow: 0 0 8px rgba(255,203,5,0.6); /* Glow effect on focus */
}
.detail .tryout2:focus {
    outline: none; /* Remove the default focus outline */
    box-shadow: 0 0 8px rgba(255,203,5,0.6); /* Glow effect on focus */
}

/* Media Queries for Responsive Adjustments */
@media (max-width: 991px) {
    .detail .project-type {
        font-size: 0.4em; /* Smaller font size on tablets */
        padding: 4px 8px;
    }
    .detail .actions {
        margin-top: 15px;
    }

    .tryout {
    	display: none;
    }
    .detail .checkout {
        font-size: 0.8em; /* Smaller button on tablets */
        padding: 7px 14px;
    }
    .detail .tryout2 {
        font-size: 0.8em; /* Smaller button on tablets */
        padding: 7px 14px;
    }
}
@media (max-width: 767px) {
    .detail .project-type {
        font-size: 0.2em; /* Even smaller font size on mobile */
        padding: 2px 6px;
    }
    .detail .actions {
        margin-top: 10px;
    }
    .detail .checkout {
        font-size: 0.6em; /* Smaller button on mobile */
        padding: 4px 10px;
    }
    .detail .tryout2 {
        font-size: 0.6em; /* Smaller button on mobile */
        padding: 4px 10px;
    }
    .tryout {
    	display: none;
    }
}
@media (max-width: 480px) {
    .detail {
        padding: 10px; 
    }
    .detail .des {
        font-size: 0.8em; 
    }
    .tryout {
    	display: none;
    }
}
.carousel .list .item .detail{
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item .detail {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 15px;
    border-radius: 8px;
    transition: opacity 0.5s ease, background-color 0.5s ease;
}
.carousel.showDetail .list .item:nth-child(3),
.carousel.showDetail .list .item:nth-child(4){
    left: 100%;
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2){
    width: 100%;
}
.carousel.showDetail .list .item:nth-child(2) .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) img{
    right: 50%;
}
.carousel.showDetail .list .item:nth-child(2) .detail{
    opacity: 1;
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title{
    font-size: 3em;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid #5553;
    margin-top: 20px;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div{
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div p:nth-child(1){
    font-weight: bold;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button{
    font-family: Poppins;
    background-color: #ffcb05;
    border: 1px solid #5555;
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button:nth-child(2){
    /*background-color: #693EFF;*/
    color: #eee;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .title,
.carousel.showDetail .list .item:nth-child(2) .detail  .des,
.carousel.showDetail .list .item:nth-child(2) .detail  .project-type,
.carousel.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel.showDetail .list .item:nth-child(2) .detail .checkout,
.carousel.showDetail .list .item:nth-child(2) .detail  .actions {
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .des{
    animation-delay: 1.5s;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .title{ 
	animation-delay: 1.3s;
}	
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    animation-delay: 1.5s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .checkout{
    animation-delay: 1.5s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .project-type{
    animation-delay: 1s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .actions{
	animation-delay: 1.8s;
}
.arrows{
    position: absolute;
    bottom: 20px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}
#prev,
#next{
    width: 80px; 
    height: 50px; 
    background-color: #ffcb05;; 
    color: black; 
    border-radius: 10px; 
    border-color: #ffcb05;
    font-size: 20px;
    display: flex; 
    justify-content: center;
    align-items: center; 
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#prev:hover, #next:hover,
#prev:focus, #next:focus {
	color: #ffcb05;
    background-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    outline: none;  
    box-shadow: none;  
}
#prev:hover:before, #next:hover:before,
#prev:focus:before, #next:focus:before {
    transform: translateY(2px);
}
#prev:active, #next:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#prev:active:before, #next:active:before {
    transform: translateY(-1px);
}

#prev:focus, #next:focus {
    outline: 2px solid #3498DB;
}
#back{
	opacity: 0; 
	pointer-events: none;
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
    background: #ffcb05;
    padding: 7px 20px;
    border-color: #ffbc05;
    color: black;
    transition: opacity 0.5s ease;
}
#back:hover {
	cursor: pointer;
	color: #ffcb05;
	background: transparent;
}

.carousel.showDetail #back{
    opacity: 1;
}
.carousel::before{
    width: 500px;
    height: 300px;
    content: '';
    background-color: #000e0a;
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}
.carousel.showDetail::before{
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}
@media screen and (max-width: 991px){
    .carousel .list .item{
        width: 90%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .specifications{
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .title{
        font-size: 1.5em;
    }
}
@media screen and (max-width: 767px){
    .carousel{
        height: 600px;
    }
    .carousel .list .item{
        width: 100%;
        font-size: 10px;
    }
    .carousel .list{
        height: 100%;
    }
    .carousel .list .item:nth-child(2) .introduce{
        width: 50%;
    }
    .carousel .list .item img{
        width: 40%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail{
        backdrop-filter: blur(10px);
        font-size: small;
    }
    .carousel .list .item:nth-child(2) .introduce .des,
    .carousel.showDetail .list .item:nth-child(2) .detail .des{
        height: 100px;	
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .checkout{
        display: flex;
        width: max-content;
        float: right;
    }
}
.stop-scrolling {
	height: 100%;
	overflow: hidden;
}
.max-width{
	max-width: 1300px;
	padding: 0 80px;
	margin: auto;
}
#particles-js{
	top: 0;
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: transparent;
	display: block;
	height:100vs;
	pointer-events: auto;
	cursor: pointer;
}
.navbar {
	z-index: 2;
	position: fixed;
	width: 100%;
	padding: 30px 0;
	font-family: 'Ubuntu', 'sans-serif;';
	transition: all 0.3s ease;
}
.navbar.sticky {
	padding: 15px 0;
	background: #00274c;
}
.navbar .max-width{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar .logo a{
	color: #fff;
	font-size: 35px;
	font-weight: 600;
}
.navbar .logo a span{
	color: #ffcb05;
	transition: all 0.3s ease;
}
.navbar.sticky .logo a span {
	color: #fff;
}
.navbar .menu li{
	list-style: none;
	display: inline-block;
}
.navbar .menu li a{
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin-left: 25px;
	transition: color 0.3s ease;
}
.navbar .menu li a:hover{
	color: #ffcb05;
}
.navbar.sticky .menu li a:hover {
	color: #fff;
}

/*menu button*/
.menu-btn{
	color: #fff;
	font-size: 23px;
	cursor: pointer;
	display: none;
}

/*home*/
.home{
	background-color: #000e0a;
	transition: 1s;
	display: flex;
	height: 100vh;
	color: #fff;
	min-height: 500px;
	font-family: 'Ubuntu', 'sans-serif;';
}

.home .max-width{
	z-index: 1;
	margin: auto 0 auto 40px;
}

.home .home-content .text-1 {
	font-size: 34px;
	text-shadow: 0 0 10px #000, 
        			 0 0 20px #000,
        			 0 0 30px #000,
        			 0 0 40px #000
}

.home .home-content .text-2 {
	font-size: 75px;
	font-weight: 600;
	margin-left: -3px;
	color: #ffcb05;
	text-shadow: 0 0 10px #000, 
        			 0 0 20px #000,
        			 0 0 30px #000,
        			 0 0 40px #000
}

.home .home-content .text-3 {
	font-size: 40px;
	margin: 5px 0;
	text-shadow:  0 0 10px #000, 
        			 0 0 20px #000,
        			 0 0 30px #000,
        			 0 0 40px #000;
}

.home .home-content .text-3 span {
	color: #ffcb05;
	font-weight: 500;
	text-shadow: 0 0 10px #000, 
        			 0 0 20px #000,
        			 0 0 30px #000,
        			 0 0 40px #000
}

.home .home-content a{
	display: inline-block;
	background: #ffcb05;
	color: black;
	font-size: 25px;
	padding: 12px 36px;
	margin-top: 20px;
	border-radius: 6px;
	border: 2px solid black;
	border-color: #ffcb05;
	transition: all 0.3s ease;
}

.home .home-content a:hover{
	color: #ffcb05;
	background: none;
	text-shadow: 0 0 10px #000, 
        			 0 0 20px #000,
        			 0 0 30px #000,
        			 0 0 40px #000
}
section{
	padding:  95px 0;
}
.about, .projects{
	font-family: 'Poppins', sans-serif;
	min-height: 500px;
	color: #00274c;
}
.about .title{
	position: relative;
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 60px;
	padding-bottom: 20px;
	font-family: 'Ubuntu', sans-serif;
}
.about .about-content{
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
}
.about .about-content .left{
	width: 40%;
}

.about .about-content .left img{
	border-radius: 200px;
	height: 295px;
	width: 295px;
	object-fit: cover;
}

.about .about-content .right{
	width: 60%;
}
.about .about-content .right .text{
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 10px;
}

.about .about-content .right p{
	text-align: justify;
}

.icon-box{
	display: flex;
	flex-direction: row;
}

.icons {
	font-size: 40px;
	width: 60px;
	text-align: center;
	text-vertical-align: middle;
	height: 60px;
	margin: 20px 0px;
	transition: all 0.3s ease;
}

.icons:hover{
	cursor: pointer;
	color: #ffcb05
}

a, a:visited {
  color: inherit;
  text-decoration: none;
 }
/*course work and skills*/
.course {
	background: #e3e3e3;
	font-family: 'Poppins', sans-serif;
	min-height: 500px;
	color: #00274c;
}
.course .course-content{
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
}
.course .course-content .left {
	width: 50%;
}
.course .course-content .left .text{
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 10px;
}
.course .course-content .right{
	width: 30%;
	font-size: 22px;

}
.course .course-content .right .text{
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 10px;
}
.course .course-content .right img{
	height: 25px;
}
.mems, .themes {
	cursor: pointer;
}
.theme {
	line-height: 25px;
	display: none;
} 
.navbar .menu .theme li a{
	display: block;
	font-size: 14px;
	font-color: black;
}
.navbar .max-width ul li:hover .theme {
	display: block;
	border-radius: 5px;
	position: absolute;
	background: #00274C;
	margin-top: 0px;
	margin-left: 15px;
	z-index: 200;
}
.navbar .max-width ul li:hover .theme ul{
	display: block;
	margin: 10px;
}
.navbar ul li:hover .theme ul li{
	width: 150px;
	padding: 3px 3px;
	border-bottom: thick double white;
	background: transparent;
	border-radius: 0;
	text-align: left;
}
.navbar ul li:hover .theme ul li:last-child{
	border-bottom: none;
}
.memory_list, .theme_list {
	display: none;
}
.hidden {
	display: none;
}
.memories {
	line-height: 25px;
	display: none;
}
.navbar .menu .memories li a{
	display: block;
	font-size: 14px;
	font-color: black;
}
.navbar .max-width ul li:hover .memories {
	display: block;
	border-radius: 5px;
	position: absolute;
	background: #00274C;
	margin-top: 0px;
	margin-left: 15px;
	z-index: 200;
}
.navbar .max-width ul li:hover .memories ul{
	display: block;
	margin: 10px;
}
.navbar ul li:hover .memories ul li{
	width: 150px;
	padding: 3px 3px;
	border-bottom: thick double white;
	background: transparent;
	border-radius: 0;
	text-align: left;
}
.navbar ul li:hover .memories ul li:last-child{
	border-bottom: none;
}
/*projects*/
.projects .text{
	font-family: 'Poppins';
	font-size: 45px;
	font-weight: 300;
	margin-bottom: 5px;
	text-align: center;

}
.projects {
	color: white;
	background: url("images/floor.png") center;
	background-size: cover;
}
.info {
	background: #000000;
	min-height: 25px;
}
.info .text{
	font-family: 'Poppins', sans-serif;
	color: #aeb78d;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}
@media (max-width: 1300px) {
	.home {
		background-position: center bottom;
		background-size: contain;
		background-repeat: no-repeat;
	}

	.home .max-width{
		margin-left: 0px;
	}
}
@media (max-width: 1104px) {
	.projects .carousel .card {
		font-size: 13px;
	}
	.about .about-content .left img{
		height: 325px;
		width: 325px;
	}
}
@media (max-width: 991px) {
	.max-width{
		padding: 0 50px;
	}
}
@media (max-width: 947px){
	.theme, .memories {
		all: unset;
		display: none;
	} 
	.navbar .menu .theme li a, .navbar .menu .memories li a{
		all: unset;
		display: none;
	}
	.navbar .max-width ul li:hover .theme, .navbar .max-width ul li:hover .memories {
		all: unset;
		display: none;
	}
	.navbar .max-width ul li:hover .theme ul, .navbar .max-width ul li:hover .memories ul{
		all: unset;
		display: none;
	}
	.navbar ul li:hover .theme ul li, .navbar ul li:hover .memories ul li{
		all: unset;
		display: none;
	}
	.menu-btn{
		display: block;
		z-index: 999;
	}
	.menu-btn i.active:before{
		content: "\f00d";
	}
	.navbar .menu {
		position: fixed;
		height: 100vh;
		width: 100%;
		left: -100%;
		top: 0;
		background: #00274c;
		text-align: center;
		padding-top: 80px;
		transition: all 0.3s ease;
	}
	.navbar .menu.active{
		left: 0;
	}
	.navbar .menu li{
		display: block;
	}
	.navbar .menu li a{
		display: inline-block;
		margin: 30px 0;
		font-size: 30px;
		font-weight: 500;
	}
	.mobile_title {
		font-size: 35px;
	}
	.x, .x2 {
		font-size: 23px;
		position: absolute;
		cursor: pointer;
	}
	.x i.active:before, .x2 i.active:before {
		content: "\f00d";
	}
	.navbar .theme_list.active {
		position: fixed;
		z-index: 1000;
		top: 0;
		text-align: center;
		padding-top: 80px;
		height: 100vh;
		width: 100%;
		font-size: 20px;
		font-weight: 500;
		background-color: white;
		color: #00274C;
	}
	.navbar .memory_list.active {
		position: fixed;
		z-index: 1000;
		top: 0;
		text-align: center;
		padding-top: 80px;
		height: 100vh;
		width: 100%;
		font-size: 27px;
		font-weight: 500;
		background-color: white;
		color: #00274C;
	}
	.memory_list.active, .theme_list.active {
		display: block;
		left: 0;
	}
	.home .home-content .text-1 {
		font-size: 32px;
	}
	.home .home-content .text-2 {
		font-size: 70px;
	}
	.home .home-content .text-3 {
		font-size: 35px;
	}
	.home .home-content a{
		font-size: 23px;
		padding: 10px 30px;
	}
	.max-width{
		max-width: 800px;
	}
	.about .about-content .column{
		width: 100%;
	}
	.about .about-content .left{
		display: flex;
		justify-content: center;
		margin: 0 auto 60px;
	}
	.about .about-content .right{
		flex: 100%;
	}
	.course .course-content .column{
		width: 100%;
	}
	.course .course-content .left{
		/*display: flex;*/
		justify-content: center;
		margin: 0 auto 100px;
	}
	.course .course-content .right{
		flex: 100%;
		padding-left: 20px;
	}
}

@media (max-width: 690px) {
	.max-width{
		padding: 0 23px;
	}
	.home .home-content .text-1 {
		font-size: 27px;
	}
	.home .home-content .text-2 {
		font-size: 60px;
	}
	.home .home-content .text-3 {
		font-size: 32px;
	}
	.home .home-content a{
		font-size: 20px;
		padding: 9px 25px;
	}
}
@media (max-width: 500px) {
	.home .home-content .text-1 {
		font-size: 23px;
	}
	.home .home-content .text-2 {
		font-size: 50px;
	}
	.home .home-content .text-3 {
		font-size: 27px;
	}
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
    position: relative;
    opacity: 1;
}
.left-container {
    flex-direction: row-reverse;
}
.right-container {
    flex-direction: row;
}
.text-box, .image-container {
    flex-basis: 45%; /* Equal width for text and image */
    margin: 0 20px; /* Increase margin to move elements further from the line */
}
.text-box {
    padding: 25px 35px;
    background: #fff;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
}
.text-box:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.mytext {
    text-align: justify;
}
.text-box h2 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    color: #00274c;
}
.text-box h2:hover {
    color: #ffcb05; /* Change to your desired hover color */
    cursor: pointer;
}
.text-box h3 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}
.text-box small {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    color: #888;
}
.image-container img {
    width: 100%;
    border-radius: 10px;
}
.timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 0;
    background: #00274c;
    top: 60px;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
}
.timeline.animate-line::after {
    animation: moveline 2s linear forwards;
}
@keyframes moveline {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
.left-container-arrow,
.right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 35px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}
.left-container-arrow {
    border-left: 18px solid #fff;
    right: calc(-15px - 3px); 
}
.right-container-arrow {
    border-right: 18px solid #fff;
    left: calc(-15px - 3px); 
}
@keyframes movedown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
.container:nth-child(1) {
    animation-delay: 0s;
}
.container:nth-child(2) {
    animation-delay: 0.5s;
}
.container:nth-child(3) {
    animation-delay: 1s;
}
.container:nth-child(4) {
    animation-delay: 1.5s;
}
.timeline .title {
    font-family: 'Ubuntu', 'sans-serif;';
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #00274c;
    margin-top: -100px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    .text-box {
        width: calc(100% - 50px);
        margin-left: 50px;
        margin-bottom: 20px;
    }
    .image-container {
        width: calc(100% - 50px);
        margin-left: 50px;
        margin-bottom: 20px;
    }
    .timeline::after {
        top: 20px;
        left: 30px;
    }
    .left-container-arrow,
    .right-container-arrow {
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px; 
    }
    .timeline .title {
        margin-bottom: 40px; 
    }
    .mytext {
    text-align: left;
    }
}
.mytimeline {
    background: #e3e3e3;
    font-family: 'Poppins', sans-serif;
    min-height: 500px;
    color: #00274c;
    padding-bottom: 50px;
} 
.course-link {
        color: #007bff;
        text-decoration: none;
    }
    .course-link:hover {
        color: #0056b3;
        cursor: pointer;
    }
    .see-more-projects {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }
    .see-more-projects:hover {
        color: #0056b3;
        cursor: pointer;
    }
