* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
}

/*Navigation bar css */
/*nav {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: white;
}

nav a:hover {
  color: crimson;
}

nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
  color: black;
}

.sidebar a:hover {
  color: crimson;
}

.menu-button {
  display: none;
}    */



/* Navigation Bar css */

header {
  padding: 40px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 30px 0 30px;
}

.logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.logo i {
  height: 45px;
  width: 45px;
  background-color: crimson;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 10px;
  margin-right: 5px;
  cursor: pointer;
  text-align: center;

}

.logo .logo-text {
  font-size: 24px;
  font-weight: 500;
  color: white;
}

nav .togglebtn {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 45px;
  right: 3%;
  z-index: 5;
  cursor: pointer;
  display: none;
}

nav .togglebtn span {
  display: block;
  background-color: crimson;
  margin: 5px 0px;
  width: 100%;
  height: 3px;
  transition: 0.3s;
  transition-property: transform, opacity;

}

nav .navlinks {
  list-style-type: none;
}

nav .navlinks li {
  display: inline-block;
}

nav .navlinks li a {
  color: white;
  text-decoration: none;
  margin-right: 2.5rem;
  transition: all .4s ease;
}

nav .navlinks li a:hover {
  color: crimson;
  text-decoration: underline;
}



/* ##################### Main content ##################### */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: white;
}

.hero h2 {
  font-size: 3.5rem;
  color: white;
}

.hero h3 {
  font-size: 1.75rem;
  color: white;
}

.highlight {
  color: crimson !important;
}

.hero p {
  font-size: 1.1rem;
  color: white;
}

.content-row {
  display: flex;
  flex-direction: row;
}

.content-row span {
  color: crimson;
}

/* Social Media Icons */
.social-icons {
  margin-bottom: 20px;
}

.social-icon {
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: crimson;
}

/* Button */
.btn-primary {
  background-color: crimson !important;
  border-color: crimson !important;
  box-shadow: 0 5px 15px rgba(255, 55, 0, 0.5) !important;
}

.btn-primary:hover {
  box-shadow: 0 5px 35px rgba(255, 55, 0, 0.5) !important;
}

/* Circle Image */
/*.image-container {
    position: relative; 
  } */

.image-circle {
  width: 500px;
  height: 500px;
  background-color: transparent;
  border: 5px dashed crimson;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 30px rgba(255, 0, 0, 0.5);
  /* Circle shadow */
  margin: 0 auto;
  /*position: relative; */
}

.profile-img {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  object-fit: cover;
  /* position: absolute;*/
  /* top: 50px; Adjusts the image's position within the circle */
}

/* ##################### About Me Section Styles ##################### */
.about-me {
  color: black;
  padding: 80px 0;
}

.about-me h2 {
  font-size: 3rem;
  color: white;
  text-shadow: 0px -5px 5px rgb(204, 199, 199);
}

.about-me h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: rgb(218, 217, 217);
}

.about-me p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: rgb(142, 140, 140);
  padding-bottom: 15px;
  border-bottom: 2px solid rgb(165, 165, 165);
}

/* Circle Image */
.about-image-container {
  position: relative;
  justify-self: left;
}

.about-image-circle {
  width: 300px;
  height: 300px;
  background-color: transparent;
  border: 6px solid crimson;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.profile-img-a {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.about-me .more-info h4{
  text-align: left;
  color: white;
 
}
.about-me .more-info ul li{
  color:rgb(142, 140, 140);
  text-align: left;
}

/*===============Service Section========================== */
.service-section {
  background-color: black;
  text-align: center;
  padding: 50px 0;
}

.service-section p {
  color:crimson;
  margin: 0;
  padding: 10px;
  font-family: cursive;
  font-size: 14px;
}

.service-section h1 {
  font-family: "Baloo Paaji 2", sans-serif;
  font-size: 40px;
  color: white;
  font-weight: bold;
  margin: -15px 0 0 0;
}

.service-section hr {
  border: 1.5px solid white;
  width: 80px;
  margin: 0 auto 20px auto;
}

.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 70px;
}

.services-box {
  flex-grow: 1;
  width: 200px;
  margin: 25px 0;
  text-align: center;
  height: 340px;
  padding: 20px;
  background-color: rgb(65, 63, 63);
  box-shadow: 0 0 10px white;
  transition: background-color 0.2s ease-in;
  position: relative;
  overflow: hidden;
}

.services-box img {
  height: 60%;
  width: 80%;
  object-fit: cover;
  margin-bottom: 10px;
}

.services-box h2 {
  font-family: "Baloo Paaji 2", sans-serif;
  color: white;
  margin-top: 10px;
  font-size: 28px;
}

.hover-content {
  display: none;
  color: black;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
}

.hover-content img {
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
}

.hover-content h2 {
  color: black;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hover-content span {
  font-size: 14px;
  line-height: 1.5;
}

.services-box:hover .main-content {
  display: none;
}

.services-box:hover .hover-content {
  display: flex;
}

.services-box:hover {
  background-color: rgb(215, 193, 193);
}

/*========== Skill section css ===========*/
.skills-container {
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.skills-container p{
  font-family:cursive;
  color: crimson;
}
.skills-container h1{
  font-family: "Baloo Paaji 2", sans-serif;
  font-size: 40px;
  color: white;
  margin: -20px 0 0 0;
  font-weight: bold;
}
.skills-container hr{
  border: 2px solid white;
  width: 80px;
  margin: 0 auto;
}

.skills-container .skills-title {
  font-size: 3rem;
  font-weight: bold;
  color: crimson;
  margin-bottom: 20px;
  position: relative;
}

.skills-container .skills-title::after {
  content: 'SKILLS';
  position: absolute;
  left: 50%;
  transform: translate(-50%,-40%);
  color: transparent;
  -webkit-text-stroke: 2px #ddd;
  font-size: 8rem;
  font-weight: bold;
  opacity: 0.1;
}

.skills-container .skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  padding: 0 60px;
}

.skills-container .skills-grid .skill {
  flex: 1 1 calc(50% - 20px); /* Two columns with spacing */
  text-align: left;
  margin-bottom: 15px;
}

.skills-container .skills-grid .skill p {
  color: white;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.skills-container .skills-grid .skill .progress-bar {
  position: relative;
  background: #eaeaea;
  height: 20px;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}

.skills-container .skills-grid .skill .progress-bar .progress {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease-in-out;
}

.skills-container .skills-grid .skill .progress-bar span {
  position: absolute;
  right: 10px;
  font-size: 0.9rem;
  font-weight: bold;
}

/*=========== My team section css ===========*/
.my-team .team-section{
  text-align: center;
}
.my-team .team-section p{
  font-family:cursive;
  color: crimson;
}
.my-team .team-section h2{
  font-family: "Baloo Paaji 2", sans-serif;
  font-size: 40px;
  color: white;
  margin: -25px 0 0 0;
  font-weight: bold;
}
.my-team .team-section hr{
  border: 2px solid white;
  width: 80px;
  margin: 0 auto;
}
.my-team .card-container { 
  display: flex;
	align-items: center; 
	justify-content: center; 
	min-height: 500px; 
	padding: 0 35px; 
	background: black; 
} 
.my-team .card-container .wrapper { 
	max-width: 1100px; 
	width: 100%; 
	position: relative; 
} 

.my-team .card-container .wrapper i { 
	height: 50px; 
	width: 50px; 
	background: crimson; 
	text-align: center; 
	line-height: 50px; 
	border-radius: 50%; 
	cursor: pointer; 
	position: absolute; 
	top: 50%; 
	font-size: 1.25 rem; 
	transform: translateY(-50%); 
	box-shadow: 0 3px 6px rgba(241, 240, 240, 0.23); 
} 
.my-team .card-container .wrapper i:first-child { 
	left: -22px; 
  z-index: 9999;
} 
.my-team .card-container .wrapper i:last-child { 
	right: -22px; 

} 

.my-team .card-container .wrapper .carousel { 
	display: grid; 
	grid-auto-flow: column; 
	grid-auto-columns: calc((100% / 3) - 12px); 
	gap: 16px; 
	overflow-x: auto; 
	scroll-snap-type: x mandatory; 
	scroll-behavior: smooth; 
	scrollbar-width: 0; 
} 

.my-team .card-container .wrapper .carousel::-webkit-scrollbar { 
	display: none; 
} 

.my-team .card-container .wrapper .carousel:where(.card, .img) { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
} 

.my-team .card-container .wrapper .carousel .dragging { 
	scroll-snap-type: none; 
	scroll-behavior: auto; 
} 

.my-team .card-container .wrapper .carousel .no-transition { 
	scroll-behavior: auto; 
} 

.my-team .card-container .wrapper .carousel .dragging .card { 
	cursor: grab; 
	user-select: none; 
} 

.my-team .card-container .wrapper .carousel .card { 
	scroll-snap-align: start; 
	height: 340px; 
	list-style: none; 
	background: rgb(65, 63, 63); 
	border-radius: 8px; 
	display: flex; 
	cursor: pointer; 
	width: 98%; 
	padding-bottom: 15px; 
	align-items: center; 
	justify-content: center; 
	flex-direction: column; 
  box-shadow: 0 0 10px white;
} 

.my-team .card-container .wrapper .carousel .card .img { 
	width: 200px; 
	height: 200px; 
	border-radius: 50%; 
} 

.my-team .card-container .wrapper .carousel .card .img img { 
	width: 200px; 
	height: 200px; 
	object-fit: cover; 
	border-radius: 50%; 
	border: 4px solid crimson; 
} 

.my-team .card-container .wrapper .carousel .card h2{ 
	font-weight: bold; 
	font-size: 1.56rem; 
	margin: 30px 0 5px; 
  color: white;
} 

.my-team .card-container .wrapper .carousel .card span { 
	color: white; 
	font-size: 1.31rem; 

} 

/* Contact section*/
.contact-section{
  width: 80%;
  margin: 0px auto;
}

.contact-section p{
  font-family:cursive;
  color: crimson;
  text-align: center;
}
.contact-section h2{
  font-family: "Baloo Paaji 2", sans-serif;
  font-size: 40px;
  color: white;
  margin: -25px 0 0 0;
  font-weight: bold;
  text-align: center;
}
.contact-section hr{
  border: 2px solid white;
  width: 80px;
  margin: 0 auto;
}


/*.contact-section .contact-title{
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: crimson;
  margin-bottom: 20px;
  position: relative;
}
.contact-section .contact-title::after{
  content: 'CONTACT';
  position: absolute;
  left: 50%;
  transform: translate(-50%,-40%);
  color: transparent;
  -webkit-text-stroke: 2px #ddd;
  font-size: 8rem;
  font-weight: bold;
  opacity: 0.1;
} */
.contact-section .contact-container{
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(65, 63, 63);
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  margin: 40px 20px 40px 20px;
}
.contact-section .contact-container .left-container, .right-container{
  padding: 20px;
  flex: 1;
  min-width: 300px;
}
.contact-section .contact-container .left-container{
  border-right: 1px solid #ddd;
}
.contact-section .contact-container .left-container h1{
  font-size: 2rem;
  color: crimson;
  margin-bottom: 10px;
}
.contact-section .contact-container .left-container p{
  margin-bottom: 20px;
  color: #ddd;
}
.contact-section .contact-container .left-container .contact-form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section .contact-container .left-container .contact-form .form-group{
  display: flex;
  gap: 10px;
}
.contact-section .contact-container .left-container .contact-form .form-group input{
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-section .contact-container .left-container .contact-form textarea{
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 80px;
}
.contact-section .contact-container .left-container .contact-form button{
  background-color: crimson;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 55, 0, 0.5);
  transition: letter-spacing 0.2s ease-in;
}
.contact-section .contact-container .left-container .contact-form button:hover{
  box-shadow: 0 5px 25px rgba(255, 55, 0, 0.5);
  letter-spacing: 1.5px;
}
.contact-section .contact-container .right-container{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-section .contact-container .right-container .contact-info{
  color: #ddd;
  margin-top: 20px;
}
.contact-section .contact-container .right-container .contact-info .icon{
  font-size: 1.2rem;
  margin-right: 8px;
}
.contact-section .contact-container .right-container .contact-info{
  align-items: self-start;
}
.contact-section .contact-container .right-container .contact-info p{
  margin: 10px 0;
  font-size: 1rem;
} 
.contact-section .contact-container .right-container .illustration img{
  max-width: 100%;
  height: 200px;
}

/*========== Experience Section Css =============*/

.work-experience {
  text-align: center;
  margin: 40px auto;
  max-width:1100px;
  line-height: 1.6;
  padding: 20px;
}

.work-experience p{
  font-family:cursive;
  color: crimson;
}
.work-experience h1{
  font-family: "Baloo Paaji 2", sans-serif;
  font-size: 40px;
  color: white;
  margin: -25px 0 0 0;
  font-weight: bold;
}
.work-experience hr{
  border: 2px solid white;
  width: 80px;
  margin: 0 auto;
}

/*.work-experience h1 {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 10px;
}*/
.work-experience h6{
  color: #f3f3f3;
}
.work-experience ul li {
  color: white;
  text-align: left;
}

.work-experience .experience-container {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.work-experience .experience-container .experience-card {
  background-color: rgb(65, 63, 63);
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgb(118, 118, 118);
  flex: 1 1 calc(45% - 20px);
  max-width: 800px;
  transition: transform 0.3s ease;
}

.work-experience .experience-container .experience-card:hover {
  transform: translateY(-10px);
}

.work-experience .experience-container .experience-card h2 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.work-experience .experience-container .experience-card .date {
  color: crimson;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.work-experience .experience-container .experience-card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #ddd;
}

.work-experience .experience-container .experience-card .level {
  margin-top: 10px;
}

.work-experience .experience-container .experience-card .level .progress-label {
  font-size: 0.9rem;
  color: crimson;
  margin-bottom: 5px;
  display: block;
}

.work-experience .experience-container .experience-card .level .progress-bar {
  background: #f3f3f3;
  border-radius: 20px;
  height: 10px;
  overflow: hidden;
  position: relative;
}

.work-experience .experience-container .experience-card .level .progress-bar .progress-fill {
  background: crimson;
  height: 100%;
  border-radius: 20px;
  transition: width 0.4s ease;
}


/*======= Footer section css ==========*/
.footer {
  text-align: center;
  color: #d4d4d4;
  background-color: black;
  border: 1px solid rgb(65, 63, 63);;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  font-size: 0.9em;
}
.footer span{
  color: crimson;
}