*{
    margin: 0;
    padding: 0;
    font-family: 'Mukta', sans-serif;
    box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body{
    background: #080808;
    color: #fff;

}
#header{
    background-size: cover;
    background-position: center;
}
.container{
	padding: 10px 10%;
}

nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.logo{
	width: 100px;
    color: #bb7289;
    font-style: underline;
}

nav ul li{
	display: inline-block;
	list-style: none;
	margin: 10px 10px;
}

nav ul li a{
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	position: relative;
}

nav ul li a::after{
	content: '';
	width: 0;
	height: 3px;
	background: #ff004f;
	position: absolute;
	left: 0;
	bottom: -6px;
	transition: 0.5s;
}

nav ul li a:hover::after{
	width:100%;
}

.header-text{
	margin-top: 10%;
	font-size:30px;
}
.header-text h1{
	font-size: 60px;
	margin-top: 20px;
}
.header-text h1 span{
	color: #ff004f;
}
.header-text h2{
    font-family:'Gill Sans',  'Calibri', 'Trebuchet MS', sans-serif;
    font-size: 20px;
    margin-top: 15px;
}

/* --------about-------- */

#about{
	padding: 80px 0;
	color: #ababab;
}

.row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.about-col-1{
    flex: 33.3%;
    padding: 10px;
}

.about-col-1 img{
    width: 100%;
	border-radius: 15px;
    /* margin-bottom: 20px; */
}

.about-col-2{
    flex: 33.3%;
    padding: 10px;
}

.about-col-2 img{
    width: 100%;
    border-radius: 15px;
}

.about-col-3{
    flex: 33.3%;
    padding: 10px;
}

.about-col-3 img{
    width: 100%;
    border-radius: 15px;
}

.about-col-4 img{
    width : 100%;
    border-radius: 15px;
    /* margin-bottom: 20px; */
}

.about-col-4{
    flex: 33.3%;
    padding: 10px;
}

.about-col-5 img{
    width: 100%;
    border-radius: 15px;
}

.about-col-5{
    flex: 33.3%;
    padding: 10px;
}

.about-col-6 img{
    width: 100%;
    border-radius: 15px;
}

.about-col-6{
    flex: 33.3%;
    padding: 10px;
}

.about-col-7 img{
    width : 100%;
    border-radius: 15px;
    /* margin-bottom: 20px; */
}

.about-col-7{
    flex: 33.3%;
    padding: 10px;
}

.about-col-8 img{
    width: 100%;
    border-radius: 15px;
}

.about-col-8{
    flex: 33.3%;
    padding: 10px;
}

.about-col-9 img{
    width: 100%;
    border-radius: 15px;
}

.about-col-9{
    flex: 33.3%;
    padding: 10px;
}



.sub-title{
	font-size: 60px;
	font-weight: 600;
	color: #fff;
}


/* -------portfolio------- */

/* -------contact-------- */

.contact-left{
	flex-basis: 35%;
}

.contact-left p{
    flex: center;
    max-width: fit-content;
    margin-left:20px;
}

.contact-left p i{
	color: #ff004f;
	margin-right: 15px;
	font-size: 25px;
}

.copyright{
	width: 100%;
	text-align: center;
	padding: 25px;
	background: #262626;
	font-weight: 300;
	margin-top: 20px;
}

.copyright i{
	color: #ff004f;
}


/* --------------css for small screens------------------- */



nav .fas{
	display: none;
}



@media only screen and (max-width:600px){
	/* #header{
		background-image:url(images/background_phone.jpg);
	} */
	.header-text{
		margin-top: 10%;
		font-size: 16px;
	}
	.header-text h1{
		font-size: 30px;
	}
    .header-text h2{
		font-size: 22.5px;
	}
	.sub-title{
		font-size: 40px;
	}
	.about-col-1, .about-col-2, .about-col-3, .about-col-4, .about-col-5, .about-col-6, .about-col-7, .about-col-8, .about-col-9{
		flex-basis: 100%;
	}
	.about-col-1{
		margin-bottom: 30px;
	}
	.about-col-2{
        margin-bottom: 30px;
	}
    .about-col-3{
		margin-bottom: 30px;
	}
	.about-col-4{
        margin-bottom: 30px;
	}
    .about-col-5{
		margin-bottom: 30px;
	}
	.about-col-6{
        margin-bottom: 30px;
	}
    .about-col-7{
        margin-bottom: 30px;
	}
    .about-col-8{
		margin-bottom: 30px;
	}
	.about-col-9{
        margin-bottom: 30px;
	}
	.tab_links{
		font-size: 16px;
		margin-right: 20px;
	}
	.contact-left, .contact-right{
		flex-basis: 100%;
	}
	.copyright{
		font-size: 14px;
	}
}

#msg{
	color: #61b752;
	margin-top: -40px;
	display: block;
}


/* here */

.back-btn {
	color: #ff004f;
	font-size: 18px;
	text-decoration: none;
	margin-top: 20px;
	display: inline-block;
	transition: 0.3s ease;
}
.back-btn:hover {
	color: #fff;
	transform: translateX(-5px);
}

#projects {
	padding: 60px 0;
	color: #ababab;
}
.project {
	background: #111;
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(255, 0, 79, 0.2);
}
.project h2 {
	color: #ff004f;
	font-size: 28px;
	margin-bottom: 10px;
}
.project p {
	font-size: 18px;
	line-height: 1.6;
}

/* push swap part */

.pushswap-img-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.pushswap-img-1, .pushswap-img-2, .pushswap-img-3 {
	flex: 1 1 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.pushswap-img-1 img, .pushswap-img-2 img, .pushswap-img-3 img {
	display: block;
	max-width: 100%;
	max-height: 220px;
	width: auto;
	height: auto;
	border-radius: 15px;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pushswap-label {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  color: #ff004f;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: 100%;
}
@media (max-width: 700px) {
	.pushswap-img-row {
		flex-direction: column;
		gap: 10px;
	}
	.pushswap-img-1, .pushswap-img-2, .pushswap-img-3 {
		flex: 100%;
	}
	.pushswap-img-1 img, .pushswap-img-2 img, .pushswap-img-3 img {
		max-height: 180px;
	}
}


/* minishell part */

.minishell-img-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.minishell-img-1, .minishell-img-2, .minishell-img-3 {
	flex: 1 1 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.minishell-img-1 img, .minishell-img-2 img, .minishell-img-3 img {
	display: block;
	max-width: 100%;
	max-height: 220px;
	width: auto;
	height: auto;
	border-radius: 15px;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.minishell-label {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  color: #ff004f;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: 100%;
}
@media (max-width: 700px) {
	.minishell-img-row {
		flex-direction: column;
		gap: 10px;
	}
	.minishell-img-1, .minishell-img-2, .minishell-img-3 {
		flex: 100%;
	}
	.minishell-img-1 img, .minishell-img-2 img, .minishell-img-3 img {
		max-height: 180px;
	}
}

.repo-btn-wrapper {
  text-align: center;
  width: 100%;
}
.repo-btn {
  display: inline-block;
  margin: 18px auto 0 auto;
  padding: 10px 28px;
  background: #ff004f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(255,0,79,0.08);
  cursor: pointer;
}
.repo-btn:hover {
  background: #d60043;
  transform: translateY(-2px) scale(1.04);
}


/* minirt part */

.minirt-img-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.minirt-img-1, .minirt-img-2, .minirt-img-3 {
	flex: 1 1 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.minirt-img-1 img, .minirt-img-2 img, .minirt-img-3 img {
	display: block;
	max-width: 100%;
	max-height: 220px;
	width: auto;
	height: auto;
	border-radius: 15px;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.minirt-label {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  color: #ff004f;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: 100%;
}
@media (max-width: 700px) {
	.minirt-img-row {
		flex-direction: column;
		gap: 10px;
	}
	.minirt-img-1, .minirt-img-2, .minirt-img-3 {
		flex: 100%;
	}
	.minirt-img-1 img, .minirt-img-2 img, .minirt-img-3 img {
		max-height: 180px;
	}
}

.repo-btn-wrapper {
  text-align: center;
  width: 100%;
}
.repo-btn {
  display: inline-block;
  margin: 18px auto 0 auto;
  padding: 10px 28px;
  background: #ff004f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(255,0,79,0.08);
  cursor: pointer;
}
.repo-btn:hover {
  background: #d60043;
  transform: translateY(-2px) scale(1.04);
}
