*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body {
	display: flex;
    line-height: 1.6;
	min-height: 100vh;
    color: #fff; display: flex;
    flex-direction: column;
    justify-content: center;
    background: #080808; /* Main background */
}
/* body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
.navbar{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	/* background: rgba(0, 0, 0, 0.9); */
	padding: 1rem;
	transition: all 0.3s ease;
}
.navbar ul{
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: flex-end;

}
.navbar ul li{
	margin: 0 15px;
}
.navbar ul li a{
	text-decoration: none;
  color: white;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
}
.navbar ul li a:hover , a:active{
	background-color: white;
	color: black;
	/* box-shadow: 0 0 10px white;
	font-size: 150%; */
	transform: translateY(-2px);
}
.menu-toggle {
	display: none;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 2000;
	cursor: pointer;
  }
  
  .hamburger {
	width: 30px;
	height: 3px;
	background: white;
	margin: 5px 0;
	transition: all 0.3s ease;
  }
button{
	width: 100px;
	height: 50px;
	border: 0;
	outline: none;
	color: #fff;
	background: linear-gradient(to right,rgb(67, 160, 87), rgb(36, 221, 19));
    border-radius: 12%;
    cursor: pointer;
    transition: 0.3s;
}
button:hover{
	width: 120px;
	
	align-items: center;
	justify-content: space-between;

}



#home{
	display: flex;
	flex-direction: column;
	/*background-color: rgba(0, 0, 0, 0.9);*/
	height: 700px;
	/*justify-content: center;
	align-items: center;*/
	color: rgb(242, 241, 241);
	margin-bottom: 25px;
	min-height: 100vh;  
    padding: 6rem 2rem 2rem;
}
.home-content {
    flex-wrap: wrap;  /* Allows wrapping on mobile */
    gap: 4rem; 
	display: flex;
	 /* Modern gap property */
}
.image-container {
    animation: fadeInLeft 1s ease-out;
	position: relative;
    overflow: visible;
    margin-top: 100px;
    margin-left: 200px;
    width: 380px;
    height: 380px;
	flex-shrink: 0;
}
.text-container {
    max-width: 100%;
    padding: 20px;
    animation: fadeInRight 1s ease-out; 
	text-align: center;
}

/* Add animation for text */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.text-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #08ffd1; /* Accent color */
    text-shadow: 0 0 15px rgba(8, 255, 209, 0.3);
}

.text-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0; /* Change color as needed */
    margin-bottom: 2rem;
}
.text-container a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(6, 241, 17, 0.4);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .home-content {
        flex-direction: column;
    }
    
    .image-container {
        margin-left: 0;
        width: 300px;
        height: 300px;
    }
	.main {
        width: 95%;
        padding: 1.5rem;
        top: auto;
        right: auto;
    }
    .text-container h1 {
        font-size: 2rem;
    }

    .text-container p {
        font-size: 1rem;
    }
    
    .text-container {
        text-align: center;
        padding: 0 20px;
    }
	
}
#home img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 1; /* Ensure image stays above the shadow */
}

.image-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 0;
}
.image-container:hover::before {
    background: #08ffd1; /* Change to your preferred hover color */
    filter: blur(15px);
}

/* #home::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	/*background: url('photo5.jpg') no-repeat center center/cover;*/
    /* height: 500px;
    width: 100%;
    z-index: -1;
    opacity: .8;
} */ 
.main {
	display: flex;
	flex-direction: column;
	/*border: 1px solid white;*/
	align-items: center;
	position: absolute;
	top: 20%;
	right: 10%;
	flex: 1;
	margin: 2rem auto;
    width: 70%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.heading{
	font-family: century;
	font-size: 3rem;
	text-align:center;
	background: linear-gradient(45deg, #24dd13, #43a057);
    -webkit-background-clip: text;
	

}
.heading1{
	font-family: century;
	font-size: 1rem;
	text-align:center;
	margin: 20px 0px;

}/* Responsive Breakpoints */
@media (max-width: 768px) {
	.main-card {
	  width: 95%;
	  padding: 1.5rem;
	}
	
	.text-container h1 {
	  margin-bottom: 0.8rem;
	}
	
	.text-container p {
	  margin-bottom: 1.5rem;
	}
  }
  
  @media (max-width: 480px) {
	.main-card {
	  padding: 1rem;
	  border-radius: 10px;
	}
	
	.card-button {
	  padding: 10px 25px;
	}
  }

/* #intro{
	display: flex;
	flex-direction: column;
	text-align: justify;
	padding: 10px;
}
#intro h2{
	font-size: 2rem;
	margin-bottom: 20px;
} */

/* work section  */
/* Bio Section */

  
  /* Case Studies */
  .case-study {
	display: flex;
	gap: 4rem;
	margin: 6rem 0;
	align-items: center;
  }
  
  .case-study--alt {
	flex-direction: row-reverse;
  }
  
  .case-image {
	flex: 1;
	margin-left: 100px;
  }
  
  .case-image img {
	width: 400px;
	height: 400px;
	border-radius: 20px;
	
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .case-text {
	flex: 1;
	padding: 2rem;
	margin-left: 90px;
  }
  
  /* Responsive Design */
 
  
  @media (max-width: 768px) {
	
	
	.case-study {
	  flex-direction: column;
	  margin: 4rem 0;
	}
	
	.case-study--alt {
	  flex-direction: column;
	}
	
	.case-text {
	  order: 2;
	  text-align: center;
	}
  }
  
  @media (max-width: 480px) {
	
	
	
	.case-text {
	  padding: 1rem;
	}
	
	.case-link {
	  display: block;
	  margin-top: 1.5rem;
	}
  }
  
  /* Hover Effects */
  .case-image:hover img {
	transform: scale(1.03);
	transition: transform 0.3s ease;
  }
  
  .case-link {
	color: #08ffd1;
	text-decoration: none;
	font-weight: bold;
  }
  
  .case-link:hover {
	text-decoration: underline;
  }
.work-text
{
	
		display: flex;
		flex-direction: column;
		border: 1px solid white;
		align-items: center;
		/* position: absolute; */
		top: 20%;
		right: 10%;
		flex: 1;
		/* margin: 2rem auto; */
		margin-right: 200px;

		width: 100%;
		max-width: 500px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 15px;
		padding: 2rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}
.work-text2
{
	
		display: flex;
		flex-direction: column;
		border: 1px solid white;
		align-items: center;
		/* position: absolute; */
		top: 20%;
		right: 10%;
		flex: 1;
		/* margin: 2rem auto; */
		margin-left: 100px;

		width: 100%;
		max-width: 500px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 15px;
		padding: 2rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}
	

#portfolio{
	display: flex;
	flex-direction: column;
	/*background-color: rgba(0, 0, 0, 0.9);*/
	color: rgb(245, 243, 243);
	align-items: center;
	padding: 20px;
	margin-bottom: 25px;

}
.gallery{
	/*display: flex;
	flex-direction: wrap;
	justify-content: space-around;
	box-sizing: border-box;*/
	margin: 10px 50px;

}
.gallery img{
	width: 250px;
	height: 250px;
	margin: 18px;
	padding: 5px;
	filter: grayscale(100%);
	transition: 0.3s;
}
.gallery img:hover{
	filter: grayscale(0);
	transform: scale(1.1);
}
.social-media{
	display: flex;
	justify-content: center;
	background: #e3edf7;
}
.icons{
	display: flex;
	background: #e3edf7;
	height: 75px;
	width: 75px;
	margin: 0 15px;
	border-radius: 8px;
	align-items: center;
	justify-content:center;
	text-decoration: none;
	box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(225, 225, 225, 0.7) ;

    border: 1px solid rgba(0, 0, 0, 0);
  transition:transform 0.5s;
}
.icons ion-icon{
	font-size: 35px;
	color: #1a75ff;
}
.icons:hover{
	box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.9), 
	              inset -4px -4px 6px -1px rgba(225, 225, 225, 0.9),
	               -0.5px -0.5px 8px  rgba(225, 225, 225, 1),
	                -0.5px -0.5px 0px  rgba(0,0,0,0.15) , 
	                0px 12px 10px -10px rgba(0,0,0,0.05);

       border: 1px solid rgba(0, 0, 0, 0.01);
       transform: translatey(2px);

}
.icons ion-icon:hover{
	transform: scale(0.95);
}


#Contact{
	display: flex;
	flex-direction: column;
	/*background-color: rgba(0, 0, 0, 0.9);*/
	color: rgb(242, 241, 241);
	align-items: center;
	padding: 20px;
	height: 400px;
	width: 100%;
	margin-bottom: 25px;

}
#services{
	display: flex;
	flex-direction: column;
	padding: 20px;

}
.row{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap ;
	box-sizing: border-box;
}
.box{
	display: flex;
	flex-direction: column;
	width: 350px;
	height: 450px;
	 border: 1px solid rgb(10, 228, 39);
	 margin: 10px;
	 align-items: center;
	 text-align: justify;
	 padding: 10px;
	 border-radius: 15px;
	background: linear-gradient(to top,rgb(35, 82, 49)50%,rgb(11, 11, 11) 50%);
     background-size: 100% 200%;
     transition: all .8s;




}
.box:hover{
	background-position: left bottom;
	color: white;
	border: none;
	box-shadow: 0 0 20px rgb(255,45,45);

}
h3.topic{
	margin: 5px;
}
.skill{
	width: 500px;
	margin: 60px auto;
	color: rgb(241, 239, 239);
	padding: 20px;
	box-shadow: 0 14px 28px rgba(10, 211, 73, 0.75),
	            0 10px 10px rgba(10, 211, 73, 0.75);

}
.skill li{

	margin: 15px 0;
	padding: 5px;
}
.bar{
	background: #353b48;
	display: block;
	height: 20px;
	border: 1px solid  rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
	            0 1px 2px rgba(0, 0, 0, 0.24);

	  transition: all 0.3s cublic-bezier(.25,.8,.25,1);
}

.bar:hover{
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
	            0 10px 10px rgba(0, 0, 0, 0.50);
}
.bar span{
	height: 20px;
	float: left;
	background: linear-gradient(135deg,rgb(28, 174, 52)0%,
	             rgba(252, 103, 103, 1)100%);
}
.html{
    width: 70%;
    animation: html 3s;
}
.css{
    width: 50%;
    animation: css 3s;
}

.javascript{
    width: 40%;
    animation: javascript 3s;
}
.digitalmarketing{
    width: 60%;
    animation: digitalmarketing 3s;
}
#Contact {
	position: relative;
	min-height: 100vh; /* Ensures section takes full viewport height */
	padding: 4rem 2rem 8rem; /* Bottom padding for footer space */
	z-index: 1; /* Keep above footer */
  }
.contact-section {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: #1B1B1B;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(10, 211, 73, 0.75),
                0 10px 10px rgba(10, 211, 73, 0.75);
    color: rgb(241, 239, 239);
}
.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: #f0f0f0;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #3F8E00;
}

.form-divider {
    margin: 2rem 0;
    border: 0;
    border-top: 2px solid #eee;
}

/* Submit Button */
.submit-btn {
    background: #3F8E00;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    
	/* transition: transform 0.2s ease; */
}
.site-footer {
	position: relative;
	z-index: 0; /* Keep below contact section */
	margin-top: auto; /* For proper spacing */
  }

/* .submit-btn:hover {
    transform: translateY(-2px);
} */
@media (max-width: 768px) {
    .contact-section {
        margin: 2rem auto;
        padding: 0 1rem;
    }
	.navbar {
		right: -100%;
		height: 100vh;
		width: 250px;
		padding-top: 60px;
		background: rgba(0, 0, 0, 0.95);
	  }
	
	  .navbar.active {
		right: 0;
	  }
	
	  .navbar ul {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	  }
	  .navbar ul li {
		margin: 15px 0;
	  }
	
	  .menu-toggle {
		display: block;
	  }
	
	  .menu-toggle.active .hamburger:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	  }
	
	  .menu-toggle.active .hamburger:nth-child(2) {
		opacity: 0;
	  }
	
	  .menu-toggle.active .hamburger:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	  }
	}
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 70px; /* Adjust based on navbar height */
	  }

    .section-heading {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.75rem;
    }
    
    .submit-btn {
        width: 100%;
    }
	.navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .heading {
        font-size: 2rem;
    }

    .heading1 {
        font-size: 1rem;
    }

    .image-container {
        max-width: 300px;
    }
}
@keyframes html{
	0%{
		width: 0%;
	}
	100%{
		width: 70%;
	}
}
@keyframes css{
	0%{
		width: 0%;
	}
	100%{
		width: 50%;
	}
}
@keyframes javascript{
	0%{
		width: 0%;
	}
	100%{
		width: 40%;
	}
}
@keyframes digitalmarketing{
	0%{
		width: 0%;
	}
	100%{
		width: 60%;
	}
}
@media only screen and (max-width: 750px){
	.skill{
		padding: 0 5%;
	}
}
.sticky-footer{
	background: gray;
	text-align: center;
	margin-bottom: 100px;
}
:root {
	--primary-color: #08ffd1;
	--dark-bg: #1a1a1a;
	--text-light: #ffffff;
  }
  
  .site-footer {
	background-color: var(--dark-bg);
	color: var(--text-light);
	padding: 4rem 0 0;
	margin-top: 6rem;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
  }
  
  .footer-section h3 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
  }
  
  .footer-section h4 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
  }
  
  .contact-list {
	list-style: none;
	padding: 0;
  }
  
  .contact-list li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
  }
  
  .social-links {
	display: flex;
	gap: 1.5rem;
	margin-top: 1rem;
  }
  
  .social-links a {
	color: var(--text-light);
	font-size: 1.8rem;
	transition: color 0.3s ease;
  }
  
  .social-links a:hover {
	color: var(--primary-color);
  }
  
  .footer-bottom {
	text-align: center;
	padding: 2rem 0;
	margin-top: 4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
  }
  
  .footer-bio {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	max-width: 300px;
  }
  
  /* Font Awesome Icons */
  .fas, .fab {
	width: 20px;
	text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
	.footer-container {
	  grid-template-columns: 1fr;
	  text-align: center;
	}
  
	.contact-list li {
	  justify-content: center;
	}
  
	.social-links {
	  justify-content: center;
	}
  
	.footer-bio {
	  max-width: 100%;
	  margin: 0 auto;
	}
  }







