@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: #dc143c;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: crimson;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .brand h1 {
	font-size: 2rem; /* Slightly larger font size for brand name */
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: #ffffff;
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 1.5rem; /* Reduced font size for navigation links */
	font-weight: 500;
	letter-spacing: 0.15rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 15px; /* Slightly reduced padding */
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 8rem; /* Reduced from 13rem for background text */
	letter-spacing: 30px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 50px; /* Slightly reduced size */
	width: 50px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 25px; /* Slightly reduced width */
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 6px;
}
#header .hamburger .bar::before {
	bottom: 6px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */


/* Hero Section */
#hero {
	background-image: url(./img/bg.jpg);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: crimson;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End Hero Section */

/* About Section */

#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid #dc143c;
	z-index: -1;
}

#about .cta:hover {
	background-color: #b3122f;
	box-shadow: 0 5px 15px #dc143c4d;
	color: white;
  }
  
  #about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
	transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
  }
  
  #about .col-left .about-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.3s ease; /* Smooth image transition */
  }
  
  /* Add 3D-like depth using shadow */
  #about .col-left .about-img:hover {
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
	transform: scale(1.05); /* Subtle zoom for 3D feel */
  }

  #about .col-right p {
	font-family: 'Arial', sans-serif; /* Clear, easy-to-read font */
	font-size: 1.5rem; /* Adjust the font size for better readability */
	line-height: 1.8; /* Increase line height for easier reading */
	color: #333; /* Dark grey color for better contrast */
	margin-bottom: 20px;
	text-align: justify; /* Justified text for a neat appearance */
	letter-spacing: 0.2px; /* Slight letter spacing for better clarity */
	font-weight: 400; /* Normal weight for the text */
	background-color: #f9f9f9; /* Light background for the card */
	padding: 20px; /* Padding for spacing around the text */
	border-radius: 10px; /* Rounded corners for the card */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
	transition: transform 0.3s ease; /* Smooth transition for hover effect */
	max-width: 800px; /* Set a max-width to shrink the card */
	width: 100%; /* Make the width responsive */
	margin: 0 auto; /* Center align the card */
  }
  
  /* Hover effect to give a subtle interactive feel */
  #about .col-right p:hover {
	transform: translateY(-5px); /* Slight lift on hover */
  }  
  
  
/* End About Section */

/*Skills section*/

/* Main Section Styling */
#skills-section {
    text-align: center;
    padding: 30px;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Box Styling */
.skills-box {
    margin: 25px auto;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 85%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    background-size: 200% 200%;
    background-image: linear-gradient(45deg, #f0f4f8, #d7e1f3, #dee4ea, #f0f4f8);
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.skills-box:hover {
    transform: scale(1.02);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

/* Title Styling */
.skills-box h3 {
    font-size: 1.8rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Skills Drawer */
.skills-drawer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Skill Item Styling */
.skill-item {
    width: 90px;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: #e9eef7;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.skill-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

/* Skill Icon */
.skill-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.skill-item:hover img {
    transform: scale(1.1);
}

/* Skill Text Styling */
.skill-item p {
    font-size: 1rem; /* Increase font size for better readability */
    color: #333; /* Darker color for a more polished look */
    font-weight: bold; /* Make skill names bold */
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif; /* Use a clean, modern font */
}

.skill-item:hover p {
    color: #0073e6; /* Subtle blue color on hover */
}


/*End Skills section*/

/* Education Section */

/* Education Section Styles */
#education {
	padding: 50px 0;
	background: linear-gradient(to right, #ffffff, #ffffff);
	text-align: center;
  }
  
  .education-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
  }
  
  .section-title {
	font-size: 2.5rem;
	color: #000000;
	margin-bottom: 10px;
  }
  
  .section-title span {
	color: #dc143c;
  }
  
  .section-subtitle {
	font-size: 1.2rem;
	color: #000000;
	margin-bottom: 30px;
  }
  
  /* Education Card */
  .edu-card {
	display: flex;
	align-items: center;
	margin: 20px auto;
	padding: 20px;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	max-width: 1000px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Card Hover Effect */
  .edu-card:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  /* Education Image */
  .edu-image {
	flex: 1;
	max-width: 250px;
	height: auto;
	border-radius: 15px;
	object-fit: cover;
	margin-right: 20px;
  }
  
  /* Education Content */
  .edu-content {
	flex: 2;
	text-align: left;
  }
  
  .edu-content h2 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 10px;
  }
  
  .edu-content p {
	font-size: 1rem;
	color: #555;
	margin: 5px 0;
  }
  
  /* Status Styling */
  .status {
	font-weight: bold;
  }
  
  .status.pursuing {
	color: #2ecc71;
  }
  
  .status.completed {
	color: #e74c3c;
  }
  
  .edu-content p {
	font-size: 1.1rem; /* Increased font size */
	color: #2c3e50; /* Darker color for better contrast */
	font-weight: 500; /* Slightly bolder text */
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow for clarity */
  }

/* End of Education section*/

/* Projects section */

.project1icon {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 8px; /* Space between items */
	padding: 8px 16px;
	background-color: #007bff; /* Button background color */
	border-radius: 5px;
	color: white;
	text-decoration: none;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
  }
  
  .project1icon:hover {
	background-color: #0056b3; /* Darken button on hover */
  }
  
  .project1icon img {
	width: 24px; /* Smaller icon size */
	height: 24px;
  }
  
  .project1icon a {
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
  }
  
  .project1icon .arrow {
	margin-left: auto;
	font-size: 1.2rem;
  }

/*Now Project 2*/

.project2icon {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 8px; /* Space between items */
	padding: 8px 16px;
	background-color: #a1ff8d; /* Button background color */
	border-radius: 5px;
	color: rgb(0, 0, 0);
	text-decoration: none;
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: 10px;
	transition: background-color 0.3s;
  }
  
  .project2icon:hover {
	background-color: #23e5ab; /* Darken button on hover */
  }
  
  .project2icon img {
	width: 24px; /* Smaller icon size */
	height: 24px;
  }
  
  .project2icon a {
	color: rgb(0, 0, 0);
	text-decoration: none;
	display: flex;
	align-items: center;
  }
  
  .project2icon .arrow {
	margin-left: auto;
	font-size: 1.2rem;
  }

  /*Now Project 3*/
  .project3icon {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 8px; /* Space between items */
	padding: 8px 16px;
	background-color: #ffffff; /* Button background color */
	border-radius: 5px;
	color: rgb(0, 0, 0); /*Button Text color without hover*/
	text-decoration: none;
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: 10px;
	transition: background-color 0.3s;
  }
  
  .project3icon:hover {
	background-color: #8a8a8a; /* Darken button on hover */
  }
  
  .project3icon img {
	width: 24px; /* Smaller icon size */
	height: 24px;
  }
  
  .project3icon a {
	color: rgb(0, 0, 0);
	text-decoration: none;
	display: flex;
	align-items: center;
  }

  .project3icon a:hover
  {
	color: #ffffff;
  }
  
  .project3icon .arrow {
	margin-left: auto;
	font-size: 1.2rem;
  }

  .project3icon .arrow:hover
  {
	color:#ffffff;
  }


/*Now for project 4*/
#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects .projects-header h1 {
	margin-bottom: 50px;
	color: black;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}
#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}
#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.7;
}

#projects .project-img img {
	transition: 0.3s ease transform;
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}
/* End Projects section */


/* Work Experience Section Starts */
.experience .container.left::before,
.experience .container.right::before {
  content: "";
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}

.experience .container.left::before {
  top: 190px; /* Position the year above the card */
  right: 10%;
  transform: translateX(-50%);
}

.experience .container.right::before {
  top: 190px; /* Position the year above the card */
  left: 10%;
  transform: translateX(-50%);
}

.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto;
}

.experience .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #020133;
  top: 80px; /* Adjust this value to move the line down from the top */
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}

/* Container Adjustments */
.experience .container {
  padding: 20px;
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.experience .container.left {
  left: 0;
  flex-direction: row;
  top: 0px;
}

.experience .container.right {
  left: 50%;
  flex-direction: row-reverse;
  position: absolute;
  top: 200px;
}

.experience .content {
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  color: white; /* Apply white text color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Dialogue Box Shape (Left and Right) */
.dialogue-box-left::after {
	content: '';
	position: absolute;
	top: 20px;
	right: -20px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-left-color: #485563; /* Triangle points right */
  }

/* Hover 3D Effect for Content */
.experience .content:hover {
  transform: perspective(500px) rotateY(10deg) translateZ(10px); /* 3D effect on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

/* Logo Adjustments */
.experience .logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.experience .desc h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.experience .desc p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.experience .desc ul {
  list-style-type: disc;
  padding-left: 20px;
}

.experience .desc li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Dialogue Box Shape */
.dialogue-box-left::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #485563;
}

.dialogue-box-right::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  border-right-color: #485563;
}

/* Enhanced Hover 3D Lift-Up Effect for Dialogue Boxes */
.dialogue-box-left:hover {
	box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow for lift effect */
	transform: perspective(500px) rotateY(8deg) translateY(-5px) scale(1.05); /* Increased rotation, slight lift, and scaling */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  }
  
  .dialogue-box-right:hover {
	box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow for lift effect */
	transform: perspective(500px) rotateY(-8deg) translateY(-5px) scale(1.05); /* Increased rotation, slight lift, and scaling */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  }
/* Experience Section Ends */


/* Certificate Section with footer merged */	
#certificate-section {
	padding: 0 auto;
	margin-top: 150px;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: #fff;
	text-align: center;
  	}
  
  	.certification-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	align-items: center;
  	}
  
  	.section-title {
	font-size: 2.5rem;
	color: #000000;
  	}
  
	.certificate-cards {
		display: flex;
		flex-wrap: wrap; /* Allow cards to wrap to the next line if needed */
		justify-content: center; /* Center the cards horizontally */
		gap: 20px; /* Space between the cards */
		padding: 30px; /* Padding around the entire section */
	}
	  
	/* Individual Certificate Card */
	.certificate-card {
		flex: 0 1 300px; /* Ensure each card takes up to 300px, but can shrink if needed */
		max-width: 250px;
		background-color: #ffffff; /* White background */
		border-radius: 8px;
		padding: 20px; /* Inner padding for card content */
		text-align: center;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Initial shadow */
		transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	}
	  
	/* Hover Effect */
	.certificate-card:hover {
		transform: translateY(-10px) scale(1.05); /* Smooth lift and scale effect */
		box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2), 
					0 6px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
	}
	  
	  /* Logo Image Styling */
	  .certificate-logo {
		width: 150px;
		height: auto;
		margin-bottom: 15px;
	  }
  
  .certificate-card h2 {
	font-size: 1.25rem;
	color: #000;
  	}
  
  .certificate-card p {
	font-size: 1rem;
	color: #333;
	padding: 10px 0;
  	}
  
  /* Footer Content (Merged) */
  .footer-content {
	text-align: center;
	margin-top: 40px;
 	 }
  
  .footer-content .brand {
	font-size: 2rem;
	color: #fff;
  	}
  
  .footer-content h2 {
	color: #000;
	font-weight: 500;
	margin: 10px 0;
  	}
  
  .social-icon {
	display: flex;
	justify-content: center;
	gap: 15px;
  	}
  
  .social-item {
	width: 50px;
	height: 50px;
  	}
  
  .social-item img {
	width: 100%;
	height: auto;
	filter: grayscale(1);
	transition: filter 0.3s ease;
  	}
  
  .social-item:hover img {
	filter: grayscale(0);
  	}
  /*End of merge section*/


/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: crimson;
		font-weight: 500;
	}
}
/* End Keyframes */


/* Media Query For Tablet */
@media only screen and (min-width: 1024px){
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
		color: #000000;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid crimson;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

	/* Education Section */
	#education {
		padding: 50px 0;
		background: linear-gradient(to right, #ffffff, #ffffff);
		text-align: center;
	}

	.education-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 20px;
	}

	.section-title {
		font-size: 2.5rem;
		color: #000000;
		margin-bottom: 10px;
	}

	.section-title span {
		color: #dc143c;
	}

	.section-subtitle {
		font-size: 1.2rem;
		color: #000000;
		margin-bottom: 30px;
	}

	.edu-card {
		display: flex;
		align-items: center;
		margin: 20px auto;
		padding: 20px;
		background: rgba(255, 255, 255, 0.2);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(10px);
		border-radius: 15px;
		max-width: 1000px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.edu-card:hover {
		transform: scale(1.05);
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	}

	.edu-image {
		flex: 1;
		max-width: 250px;
		height: auto;
		border-radius: 15px;
		object-fit: cover;
		margin-right: 20px;
	}

	.edu-content {
		flex: 2;
		text-align: left;
	}

	.edu-content h2 {
		font-size: 1.8rem;
		color: #333;
		margin-bottom: 10px;
	}

	.edu-content p {
		font-size: 1.1rem;
		color: #2c3e50;
		font-weight: 500;
		line-height: 1.5;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	}
	/* End Education Section */

	/* Project Section*/
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/*End Project Section*/
}
/* End Media Query For Tablet */


/* Media Query For Desktop */
@media only screen and (min-width: 767px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	/* Education Section for Desktop */
	#education {
		padding: 60px 0;
	}

	.edu-card {
		max-width: 1200px;
		padding: 30px;
		margin: 25px auto;
	}

	.edu-image {
		max-width: 300px;
		margin-right: 30px;
	}

	.edu-content h2 {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.edu-content p {
		font-size: 1.2rem;
	}
	
}
/* End  Media Query For Desktop */
@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: #dc143c;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: crimson;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .brand h1 {
	font-size: 2rem; /* Slightly larger font size for brand name */
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 1.5rem; /* Reduced font size for navigation links */
	font-weight: 500;
	letter-spacing: 0.15rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 15px; /* Slightly reduced padding */
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 8rem; /* Reduced from 13rem for background text */
	letter-spacing: 30px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 50px; /* Slightly reduced size */
	width: 50px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 25px; /* Slightly reduced width */
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 6px;
}
#header .hamburger .bar::before {
	bottom: 6px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */


/* Hero Section */
#hero {
	background-image: url(./img/bg.jpg);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: crimson;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End Hero Section */

/* About Section */

#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid #dc143c;
	z-index: -1;
}

#about .cta:hover {
	background-color: #b3122f;
	box-shadow: 0 5px 15px #dc143c4d;
	color: white;
  }
  
  #about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
	transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
  }
  
  #about .col-left .about-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.3s ease; /* Smooth image transition */
  }
  
  /* Add 3D-like depth using shadow */
  #about .col-left .about-img:hover {
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
	transform: scale(1.05); /* Subtle zoom for 3D feel */
  }

  #about .col-right p {
	font-family: 'Arial', sans-serif; /* Clear, easy-to-read font */
	font-size: 1.5rem; /* Adjust the font size for better readability */
	line-height: 1.8; /* Increase line height for easier reading */
	color: #333; /* Dark grey color for better contrast */
	margin-bottom: 20px;
	text-align: justify; /* Justified text for a neat appearance */
	letter-spacing: 0.2px; /* Slight letter spacing for better clarity */
	font-weight: 400; /* Normal weight for the text */
	background-color: #f9f9f9; /* Light background for the card */
	padding: 20px; /* Padding for spacing around the text */
	border-radius: 10px; /* Rounded corners for the card */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
	transition: transform 0.3s ease; /* Smooth transition for hover effect */
	max-width: 800px; /* Set a max-width to shrink the card */
	width: 100%; /* Make the width responsive */
	margin: 0 auto; /* Center align the card */
  }
  
  /* Hover effect to give a subtle interactive feel */
  #about .col-right p:hover {
	transform: translateY(-5px); /* Slight lift on hover */
  }  
  
  
/* End About Section */

/*Skills section*/

/* Main Section Styling */
#skills-section {
    text-align: center;
    padding: 30px;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Box Styling */
.skills-box {
    margin: 25px auto;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 85%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    background-size: 200% 200%;
    background-image: linear-gradient(45deg, #f0f4f8, #d7e1f3, #dee4ea, #f0f4f8);
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.skills-box:hover {
    transform: scale(1.02);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

/* Title Styling */
.skills-box h3 {
    font-size: 1.8rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Skills Drawer */
.skills-drawer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Skill Item Styling */
.skill-item {
    width: 90px;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: #e9eef7;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.skill-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

/* Skill Icon */
.skill-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.skill-item:hover img {
    transform: scale(1.1);
}

/* Skill Text Styling */
.skill-item p {
    font-size: 1rem; /* Increase font size for better readability */
    color: #333; /* Darker color for a more polished look */
    font-weight: bold; /* Make skill names bold */
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif; /* Use a clean, modern font */
}

.skill-item:hover p {
    color: #0073e6; /* Subtle blue color on hover */
}


/*End Skills section*/

/* Education Section */

/* Education Section Styles */
#education {
	padding: 50px 0;
	background: linear-gradient(to right, #ffffff, #ffffff);
	text-align: center;
  }
  
  .education-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
  }
  
  .section-title {
	font-size: 2.5rem;
	color: #000000;
	margin-bottom: 10px;
  }
  
  .section-title span {
	color: #dc143c;
  }
  
  .section-subtitle {
	font-size: 1.2rem;
	color: #000000;
	margin-bottom: 30px;
  }
  
  /* Education Card */
  .edu-card {
	display: flex;
	align-items: center;
	margin: 20px auto;
	padding: 20px;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	max-width: 1000px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Card Hover Effect */
  .edu-card:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  /* Education Image */
  .edu-image {
	flex: 1;
	max-width: 250px;
	height: auto;
	border-radius: 15px;
	object-fit: cover;
	margin-right: 20px;
  }
  
  /* Education Content */
  .edu-content {
	flex: 2;
	text-align: left;
  }
  
  .edu-content h2 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 10px;
  }
  
  .edu-content p {
	font-size: 1rem;
	color: #555;
	margin: 5px 0;
  }
  
  /* Status Styling */
  .status {
	font-weight: bold;
  }
  
  .status.pursuing {
	color: #2ecc71;
  }
  
  .status.completed {
	color: #e74c3c;
  }
  
  .edu-content p {
	font-size: 1.1rem; /* Increased font size */
	color: #2c3e50; /* Darker color for better contrast */
	font-weight: 500; /* Slightly bolder text */
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow for clarity */
  }

/* End of Education section*/

/* Projects section */

.project1icon {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 8px; /* Space between items */
	padding: 8px 16px;
	background-color: #007bff; /* Button background color */
	border-radius: 5px;
	color: white;
	text-decoration: none;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
  }
  
  .project1icon:hover {
	background-color: #0056b3; /* Darken button on hover */
  }
  
  .project1icon img {
	width: 24px; /* Smaller icon size */
	height: 24px;
  }
  
  .project1icon a {
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
  }
  
  .project1icon .arrow {
	margin-left: auto;
	font-size: 1.2rem;
  }

/*Now Project 2*/

.project2icon {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 8px; /* Space between items */
	padding: 8px 16px;
	background-color: #a1ff8d; /* Button background color */
	border-radius: 5px;
	color: rgb(0, 0, 0);
	text-decoration: none;
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: 10px;
	transition: background-color 0.3s;
  }
  
  .project2icon:hover {
	background-color: #23e5ab; /* Darken button on hover */
  }
  
  .project2icon img {
	width: 24px; /* Smaller icon size */
	height: 24px;
  }
  
  .project2icon a {
	color: rgb(0, 0, 0);
	text-decoration: none;
	display: flex;
	align-items: center;
  }
  
  .project2icon .arrow {
	margin-left: auto;
	font-size: 1.2rem;
  }

  /*Now Project 3*/
  .project3icon {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 8px; /* Space between items */
	padding: 8px 16px;
	background-color: #ffffff; /* Button background color */
	border-radius: 5px;
	color: rgb(0, 0, 0); /*Button Text color without hover*/
	text-decoration: none;
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: 10px;
	transition: background-color 0.3s;
  }
  
  .project3icon:hover {
	background-color: #8a8a8a; /* Darken button on hover */
  }
  
  .project3icon img {
	width: 24px; /* Smaller icon size */
	height: 24px;
  }
  
  .project3icon a {
	color: rgb(0, 0, 0);
	text-decoration: none;
	display: flex;
	align-items: center;
  }

  .project3icon a:hover
  {
	color: #ffffff;
  }
  
  .project3icon .arrow {
	margin-left: auto;
	font-size: 1.2rem;
  }

  .project3icon .arrow:hover
  {
	color:#ffffff;
  }


/*Now for project 4*/
#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects .projects-header h1 {
	margin-bottom: 50px;
	color: black;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}
#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}
#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.7;
}

#projects .project-img img {
	transition: 0.3s ease transform;
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}
/* End Projects section */


/* Work Experience Section Starts */
.experience .container.left::before,
.experience .container.right::before {
  content: "";
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}

.experience .container.left::before {
  top: 190px; /* Position the year above the card */
  right: 10%;
  transform: translateX(-50%);
}

.experience .container.right::before {
  top: 190px; /* Position the year above the card */
  left: 10%;
  transform: translateX(-50%);
}

.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto;
}

.experience .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #020133;
  top: 80px; /* Adjust this value to move the line down from the top */
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}

/* Container Adjustments */
.experience .container {
  padding: 20px;
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.experience .container.left {
  left: 0;
  flex-direction: row;
  top: 0px;
}

.experience .container.right {
  left: 50%;
  flex-direction: row-reverse;
  position: absolute;
  top: 200px;
}

.experience .content {
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  color: white; /* Apply white text color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Dialogue Box Shape (Left and Right) */
.dialogue-box-left::after {
	content: '';
	position: absolute;
	top: 20px;
	right: -20px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-left-color: #485563; /* Triangle points right */
  }

/* Hover 3D Effect for Content */
.experience .content:hover {
  transform: perspective(500px) rotateY(10deg) translateZ(10px); /* 3D effect on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

/* Logo Adjustments */
.experience .logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.experience .desc h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.experience .desc p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.experience .desc ul {
  list-style-type: disc;
  padding-left: 20px;
}

.experience .desc li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Dialogue Box Shape */
.dialogue-box-left::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #485563;
}

.dialogue-box-right::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  border-right-color: #485563;
}

/* Enhanced Hover 3D Lift-Up Effect for Dialogue Boxes */
.dialogue-box-left:hover {
	box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow for lift effect */
	transform: perspective(500px) rotateY(8deg) translateY(-5px) scale(1.05); /* Increased rotation, slight lift, and scaling */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  }
  
  .dialogue-box-right:hover {
	box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow for lift effect */
	transform: perspective(500px) rotateY(-8deg) translateY(-5px) scale(1.05); /* Increased rotation, slight lift, and scaling */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  }
/* Experience Section Ends */


/* Certificate Section with footer merged */	
#certificate-section {
	padding: 0 auto;
	margin-top: 150px;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: #fff;
	text-align: center;
  	}
  
  	.certification-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	align-items: center;
  	}
  
  	.section-title {
	font-size: 2.5rem;
	color: #000000;
  	}
  
	.certificate-cards {
		display: flex;
		flex-wrap: wrap; /* Allow cards to wrap to the next line if needed */
		justify-content: center; /* Center the cards horizontally */
		gap: 20px; /* Space between the cards */
		padding: 30px; /* Padding around the entire section */
	}
	  
	/* Individual Certificate Card */
	.certificate-card {
		flex: 0 1 300px; /* Ensure each card takes up to 300px, but can shrink if needed */
		max-width: 250px;
		background-color: #ffffff; /* White background */
		border-radius: 8px;
		padding: 20px; /* Inner padding for card content */
		text-align: center;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Initial shadow */
		transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	}
	  
	/* Hover Effect */
	.certificate-card:hover {
		transform: translateY(-10px) scale(1.05); /* Smooth lift and scale effect */
		box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2), 
					0 6px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
	}
	  
	  /* Logo Image Styling */
	  .certificate-logo {
		width: 150px;
		height: auto;
		margin-bottom: 15px;
	  }
  
  .certificate-card h2 {
	font-size: 1.25rem;
	color: #000;
  	}
  
  .certificate-card p {
	font-size: 1rem;
	color: #333;
	padding: 10px 0;
  	}
  
  /* Footer Content (Merged) */
  .footer-content {
	text-align: center;
	margin-top: 40px;
 	 }
  
  .footer-content .brand {
	font-size: 2rem;
	color: #fff;
  	}
  
  .footer-content h2 {
	color: #000;
	font-weight: 500;
	margin: 10px 0;
  	}
  
  .social-icon {
	display: flex;
	justify-content: center;
	gap: 15px;
  	}
  
  .social-item {
	width: 50px;
	height: 50px;
  	}
  
  .social-item img {
	width: 100%;
	height: auto;
	filter: grayscale(1);
	transition: filter 0.3s ease;
  	}
  
  .social-item:hover img {
	filter: grayscale(0);
  	}
  /*End of merge section*/


/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: crimson;
		font-weight: 500;
	}
}
/* End Keyframes */


/* Media Query For Tablet */
@media only screen and (min-width: 1024px){
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
		color: #000000;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid crimson;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

	/* Education Section */
	#education {
		padding: 50px 0;
		background: linear-gradient(to right, #ffffff, #ffffff);
		text-align: center;
	}

	.education-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 20px;
	}

	.section-title {
		font-size: 2.5rem;
		color: #000000;
		margin-bottom: 10px;
	}

	.section-title span {
		color: #dc143c;
	}

	.section-subtitle {
		font-size: 1.2rem;
		color: #000000;
		margin-bottom: 30px;
	}

	.edu-card {
		display: flex;
		align-items: center;
		margin: 20px auto;
		padding: 20px;
		background: rgba(255, 255, 255, 0.2);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(10px);
		border-radius: 15px;
		max-width: 1000px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.edu-card:hover {
		transform: scale(1.05);
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	}

	.edu-image {
		flex: 1;
		max-width: 250px;
		height: auto;
		border-radius: 15px;
		object-fit: cover;
		margin-right: 20px;
	}

	.edu-content {
		flex: 2;
		text-align: left;
	}

	.edu-content h2 {
		font-size: 1.8rem;
		color: #333;
		margin-bottom: 10px;
	}

	.edu-content p {
		font-size: 1.1rem;
		color: #2c3e50;
		font-weight: 500;
		line-height: 1.5;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	}
	/* End Education Section */

	/* Project Section*/
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/*End Project Section*/
}
/* End Media Query For Tablet */


/* Media Query For Desktop */
@media only screen and (min-width: 767px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	/* Education Section for Desktop */
	#education {
		padding: 60px 0;
	}

	.edu-card {
		max-width: 1200px;
		padding: 30px;
		margin: 25px auto;
	}

	.edu-image {
		max-width: 300px;
		margin-right: 30px;
	}

	.edu-content h2 {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.edu-content p {
		font-size: 1.2rem;
	}
	
}
/* End  Media Query For Desktop */
