* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #080808;
  font-family: "IBM Plex Mono", monospace;
  color: white;
  margin: 0;
  padding: 0;
}

/* For webkit browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #9c9c9c;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #1b1b1b;
  border-radius: 5px;
}

/* For Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #ccc #f5f5f5;
}

header {
  display: flex;
  justify-content: space-between;
  background-color: #1b1b1b;
  padding: 10px 150px 10px 150px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-left: 10%;
  margin-right: 10%;
  height: 75px;
  align-items: center;
}

.nav-left a {
  text-decoration: none;
  color: #9c9c9c;
  margin-left: 75px;
  padding: 5px 0;
  display: inline-block;
  font-size: 16px;
}
.nav-right a {
  text-decoration: none;
  color: #9c9c9c;
  margin-right: 20px;
  padding: 5px 0;
  display: inline-block;
  font-size: 20px;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #ccc;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.left-section {
  text-align: left;
  margin-right: 200px;
}

h2 {
  color: white;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
}

p {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.cta-button {
  background-color: #3f8e00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 350px;
  height: 80px;
  padding: 10px;
  font-size: 20px;
  font-family: "IBM Plex Mono", monospace;
  margin-top: 15px;
  font-weight: bold;
  border: 1px solid #62ba1b;
}

.cta-button:hover {
  background-color: #62ba1b;
}

.right-section {
  display: flex;
  align-items: center;
  position: relative;
  right: -20px;
  top: -20px;
  margin-top: -30px;
}

.profile-picture {
  border-radius: 50%;
  width: 450px;
  height: 450px;
  object-fit: cover;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 75px); /* Subtract header height */
}

html {
  scroll-behavior: smooth;
}

.about-me {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.about-me h2 {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  font-weight: bolder;
  color: #080808;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 30px;
}

/* Add this code to your existing style.css file */
.experience {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 150px;
}

.experience-left {
  margin-left: 350px;
}

.category {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 14px;
}

h3 {
  font-size: 28px;
  margin: 10px 0;
  color: #080808;
  margin-bottom: 20px;
  margin-top: 15px;
}

.experience h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
}

.know-more {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.experience-right {
  margin-right: 300px;
}

.rounded-img {
  width: 100%;
  border-radius: 10px;
  width: 500px;
  height: 300px;
  margin-right: 100px;
}

.description {
  color: #9c9c9c;
  font-size: 18px;
  margin: 10px 0;
  margin-right: 100px;
  line-height: 1.5;
}

.section-description {
  font-size: 18px;
  margin: 10px 0;
  text-align: center;
  color: #9c9c9c;
  margin-top: 20px;
  margin-bottom: 80px;
  line-height: 1.5;
  
}

.category-1 {
  background-color: #eddaff;
  color: #8d28ed;
  font-weight: bold;
}

.category-2 {
  background-color: #ffefd8;
  color: #ffa217;
  font-weight: bold;
}

.category-3 {
  background-color: #cde4ff;
  color: #000aff;
  font-weight: bold;
}

.category-4 {
  background-color: #d9fff6;
  color: #2ab090;
  font-weight: bold;
}

.know-more-1 {
  background-color: #8d28ed;
  color: #ffffff;
  border: 1px solid #8d28ed;
  margin-top: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: bold;
}

.know-more-2 {
  background-color: #ffa217;
  color: #ffffff;
  border: 1px solid #ffa217;
  margin-top: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: bold;
}

.know-more-3 {
  background-color: #000aff;
  color: #ffffff;
  border: 1px solid #000aff;
  margin-top: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: bold;
}

.know-more-4 {
  background-color: #2ab090;
  color: #ffffff;
  border: 1px solid #2ab090;
  margin-top: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: bold;
}

#education {
  background-color: #080808;
  padding: 50px 0;
  text-align: center;
}

#education h2 {
  font-family: 'Raleway', sans-serif;
  color: #ffffff;
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: bolder;
}

.education-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #080808;
  padding: 50px 0; /* Adjust this value to control the space between the rectangles */
  margin-top: 20px;
  margin-bottom: 20px;
}

.education-container-1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.education-container-2 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.education-container-3 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.rectangle {
  position: relative;
  padding: 20px;
  width: 450px;
  height: 225px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
  align-items: center;
  margin-right: 20px;
}

.rectangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #484848, #080808);
  z-index: -1; /* Change this line to 0 */
}

.rectangle::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 10px;
  background-color: #080808;
  z-index: -1;
}

.rectangle:first-child {
  margin-right: 100px; /* Adjust this value as needed for desired spacing */
}

.quote {
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 90px;
  z-index: 0;
  font-weight: bold;
}

.college-logo-1 {
  width: 45px;
  height: 55px;
  margin-right: 10px;
}

.college-logo-2 {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.college-logo-3 {
  width: 45px;
  height: 50px;
  margin-right: 10px;
}

.college-logo-4 {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.college-logo-5 {
  width: 50px;
  height: 45px;
  margin-right: 10px;
}

.college-logo-6 {
  width: 50px;
  height: 45px;
  margin-right: 10px;
}

.college-name {
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  font-size: 18px;
}

.college-description-1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  margin-top: 40px;
}

.college-description-2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 16px;
  margin-top: 70px;
}

.college-description-3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 16px;
  margin-top: 70px;
}

.college-description-4 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 16px;
  margin-top: 70px;
}

.college-description-5 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 16px;
  margin-top: 70px;
}

.college-description-6 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  margin-top: 30px;
}

.logo-name-container {
  display: flex;
  align-items: center
}

.projects {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.projects h2 {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  font-weight: bolder;
  color: #080808;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 30px;
}

.projects-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.slide-button {
  background-color: transparent;
  border: 1px solid #9c9c9c;
  border-radius: 50%;
  color: #9c9c9c;
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-card {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 10px;
}

.project-image {
  width: 500px;
  height: 300px;
  border-radius: 10px;
}

.project-description {
  text-align: left;
  font-size: 16px;
  color: #9c9c9c;
  line-height: 1.5;
}

.project-name {
  font-family: 'Raleway', sans-serif;
  text-align: left;
}

.know-more-project {
  background-color: #3f8e00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 180px;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  border: 1px solid #62ba1b;
  margin-bottom: 20px;
}

.know-more-project:hover {
  background-color: #62ba1b;
}

.get-in-touch {
  background-color: #080808;
  color: #ffffff;
  padding: 50px 0;
}

.get-in-touch h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bolder;
}

.get-in-touch .section-description {
  color: #9c9c9c;
  text-align: center;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-left: 600px;
  margin-right: 600px;
  margin-bottom: 60px;
}

.contact-item {
  margin: 10px;
  text-align: center;
  font-size: 18px;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.social-icon {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 5px;
}

.linkedin {
  margin-right: 20px; 
}

.tooltip {
  position: fixed;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: #f5f5f5;
  color: #1b1b1b;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 9999;
}

.footer {
  background-color: #1b1b1b;
  padding: 30px 0;
  text-align: center;
}

.footer-content p {
  color: #9c9c9c;
  font-size: 18px;
}

