/* General Styles */
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
  }
  
  .container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
  }
  
  /* Header Styles */
  header {
	background-color: #2c3e50;
	color: white;
	text-align: center;
	padding: 2rem 0;
  }
  
  header h1 {
	margin: 0;
	font-size: 2.5rem;
  }
  
  header p {
	margin: 0.5rem 0 0;
	font-size: 1.2rem;
	opacity: 0.9;
  }
  
  /* Section Styles */
  section {
	padding: 2rem 0;
	background-color: white;
	margin-bottom: 1rem;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  section h2 {
	color: #2c3e50;
	border-bottom: 2px solid #3498db;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
  }
  
  /* About Section */
  .about-image {
	text-align: center;
	margin-bottom: 1.5rem;
  }
  
  .about-image img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #3498db;
  }
  
  /* Skills Section */
  .skills-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 2rem;
  }
  
  .skill-image {
	text-align: center;
	margin: 1rem;
	flex: 1;
	min-width: 200px;
  }
  
  .skill-image img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border: 1px solid #ddd;
	border-radius: 4px;
  }
  
  .skill-image p {
	margin-top: 0.5rem;
	font-weight: bold;
  }
  
  /* Experience Section */
  #experience div {
	margin-bottom: 2rem;
  }
  
  #experience h3 {
	color: #3498db;
	margin-bottom: 0.5rem;
  }
  
  #experience p {
	color: #7f8c8d;
	font-style: italic;
	margin-top: 0;
  }
  
  /* Projects Section */
  .project-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
  }
  
  .project-card {
	flex: 1;
	min-width: 300px;
	background: #ecf0f1;
	padding: 1.5rem;
	border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .project-card h3 {
	color: #2c3e50;
	margin-top: 0;
  }
  
  .project-link {
	display: inline-block;
	background: #3498db;
	color: white;
	padding: 0.5rem 1rem;
	text-decoration: none;
	border-radius: 4px;
	margin-top: 1rem;
	transition: background 0.3s;
  }
  
  .project-link:hover {
	background: #2980b9;
  }
  
  /* Contact Section */
  #contact a {
	color: #3498db;
	text-decoration: none;
  }
  
  #contact a:hover {
	text-decoration: underline;
  }
  
  /* Footer Styles */
  footer {
	background-color: #2c3e50;
	color: white;
	text-align: center;
	padding: 1rem 0;
	margin-top: 2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
	.skills-images {
	  flex-direction: column;
	  align-items: center;
	}
	
	.skill-image {
	  margin-bottom: 1.5rem;
	}
	
	header h1 {
	  font-size: 2rem;
	}
	
	header p {
	  font-size: 1rem;
	}
  }
  
  /* Animation */
  section {
	transition: transform 0.3s, box-shadow 0.3s;
  }
  
  section:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }