<!-- for view project button -->
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #00f2fe;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 242, 254, 0.3);
}

.btn:hover {
  background-color: #00c6d6;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 198, 214, 0.6);
  transform: translateY(-2px);
}

/* General Styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  color: #f4f4f4;
  background-color: #121212;
}

header {
  position: fixed;
  width: 100%;
  background: #000;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 1000;
}
/* Targeting the Typewriter Element */
#typewriter {
  color: #e86c07; /* Change this to your desired color */
  font-size: 1.5rem; /* Optional: You can adjust the font size */
  font-weight: bold; /* Optional: You can adjust the font weight */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); /* Optional: Add text shadow for contrast */
}

   /* For socal icons */
    .social-icons {
      display: flex;
      gap: none;
    }

    .social-icons a {
      text-decoration: none;
      color: #6e6e6e;
      font-size: 16px;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.1); /* Slight zoom on hover */
    }

    .social-icons a img {
      width: 30px; /* Set the desired size for the image */
      height: 30px;
      margin-right: 8px; /* Space between icon and text */
    }

    .social-icons a:hover img {
      transform: scale(1.3); /* Slight zoom effect on the icon */
    }

    .social-icons a i {
      font-size: 24px;
      margin-left: 50px; /* Space between image and text for non-image icons */
    }
	
	
	 /* For socal icons button */
    .social-icons1 {
  display: flex;
  justify-content: center; /* Horizontally center the icons */
  align-items: center; /* Vertically center the icons */
  gap: 20px; /* Optional: Adds space between the icons */
}

.social-icons1 a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons1 img {
  width: 40px; /* Adjust the size of the icons */
  height: 40px;
  transition: transform 0.3s ease; /* Optional: add a zoom effect when hovering */
}

.social-icons1 a:hover img {
  transform: scale(1.3); /* Slight zoom on hover */
}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #f4f4f4;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #e39b27;
  z-index: 10;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: #e39b27;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  text-shadow: 0 0 8px rgba(105, 227, 39, 0.6);
  color: #e39b27;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

/* Home Section */
.home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80vh;
  background: black;
  color: #c5d6d6;
  padding: 40px 20px;
}

.intro {
  flex: 1;
  text-align: left;
}

.intro h1 {
  font-size: 2.5rem; /* Keep the font size */
  color: #16ded1; /* Slightly darker color */
  transition: color 0.3s ease; /* Smooth transition for hover */
}



.intro:hover h1 {
  color: #ff6347; /* Optional: Change color on hover */
}


.intro p {
  font-size: 1.3rem;
  transition: color 0.3s ease;
  
}

.intro:hover h1,
.intro:hover p {
  color: #fff;
}

.profile-img {
  width: 220px;
  border-radius: 50%;
  margin-left: 20px;
  transition: filter 0.3s ease;
}

.profile-img:hover {
  filter: brightness(1.2);
}

.btn {
  background: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: none;
}

/* About Section */
.about-summary {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #444;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-right h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  text-transform: uppercase;
  border-bottom: 2px solid #16ded1 ;
  display: inline-block;
}

.details-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.details-grid p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
}

.details-grid p strong {
  color: #333;
}

.details-grid p a {
  color: #007BFF;
  text-decoration: none;
}

.details-grid p a:hover {
  text-decoration: underline;
}

/* Core Competencies Section */
.competencies {
  margin-top: 3rem;
  text-align: center;
}

.competencies h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.competencies h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #16ded1;
  margin: 0.5rem auto;
}

.competencies-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.competency {
  display: flex;
  align-items: center;
  width: 48%; /* Two columns */
}

.competency .label {
  flex: 2;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #e9ecef;
}

.competency .progress-bar {
  flex: 5;
  height: 10px;
  background: #e9ecef;
  border-radius: 5px;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
}

.competency .progress {
  height: 100%;
  background: #007BFF;
  border-radius: 5px 0 0 5px;
  transition: width 0.3s ease;
}

.competency .percentage {
  flex: 1;
  font-size: 0.9rem;
  color: #555;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .competency {
    width: 100%;
  }
}

/* Education Section */
.education {
  margin-top: 3rem;
  text-align: center;
}

.education h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.education h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #00ffff;
  margin: 0.5rem auto;
}

.education p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.education-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.education-column {
  flex: 1;
  min-width: 48%;
}

.education-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 3px;
  height: 100%;
  background-color: #007BFF; /* Solid vertical line */
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item .circle {
  width: 15px;
  height: 15px;
  background-color: #007BFF;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
  position: absolute;
  left: 0; /* Align the circle with the vertical line */
  top: 0;
  transform: translateX(-50%);
}

.timeline-item .content {
  flex: 1;
  margin-left: 2rem; /* Spacing between circle and content */
}

.timeline-item h4 {
  font-size: 1.1rem;
  color: #007BFF;
  margin-bottom: 0.5rem;
}

.timeline-item .date {
  display: inline-block;
  font-size: 0.9rem;
  color: #999;
  background: #f8f9fa;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: #555;
}

@media screen and (max-width: 768px) {
  .education-container {
    flex-direction: column;
  }

  .education-column {
    min-width: 100%;
  }

  .timeline::before {
    left: 6px; /* Adjust for smaller screens */
  }

  .timeline-item .circle {
    left: 0;
  }
}


.section-resume {
  text-align: center;
  padding: 20px;
  border-left: 3px solid #00ffff;
  max-width: 600px;
}

.resume-section h2 {
  color: #00ffff;
  font-size: 24px;
  margin-bottom: 15px;
  display: inline-block;
}

.resume-item {
  margin-bottom: 20px;
}

.resume-item h3 {
  font-size: 20px;
  color: #00ffff;
  margin-bottom: 5px;
}

.resume-item span {
  display: block;
  font-size: 14px;
  color: #dddddd;
  margin-bottom: 10px;
}

.resume-item p {
  font-size: 14px;
  color: #bbbbbb;
  margin: 0;
}
.resume-item {
  position: relative;
  padding-left: 20px;
}
.resume h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background-color: #00ffff;
  margin: 0.5rem auto;
}
.resume-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 3px;
  height: 100%;
  background-color: #007BFF; /* Solid vertical line */
}




/* Ensure all headings across sections are affected */
.section h2, .projects h3, .resume h3, .contact h2, .projects .project-card h3 {
  color: #16ded1 !important; /* Force the color change */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7) !important; /* Optional: Add shadow to increase contrast */
}

/* General Section Styling */
.section {
  background-color: #121212;
  padding: 80px 20px;
  text-align: center;
  color: #f4f4f4; /* Light color for text */
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #16ded1 !important; /* Ensure section heading is forced to color */
}

.section p {
  font-size: 1.2rem;
  color: #bbb;
}

/* Projects Section */
.projects {
  background-color: #121212;
  padding: 80px 20px;
}

.projects .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.projects .project-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects .project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
}

.projects .project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.projects .project-card h3 {
  font-size: 1.3rem;
  color: #16ded1 !important; /* Force color change */
  margin: 15px 10px;
}

.projects .project-card p {
  font-size: 1rem;
  color: #bbb;
  margin: 0 10px 15px;
}


/* Contact Section */
.contact {
  background-color: #121212;
  padding: 80px 20px;
}

.contact h2 {
  font-size: 2.5rem;
  color: #16ded1 !important; /* Ensure color change */
  margin-bottom: 30px;
}

.contact p {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 30px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #f4f4f4;
  border-radius: 5px;
  font-size: 1rem;
}

.contact input[type="submit"] {
  background-color: #69e327;
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact input[type="submit"]:hover {
  background-color: #333;
}
/* General Heading Style for All Sections */
h2, h3, .section h2, .projects h3, .resume h3, .contact h2 {
  color: #16ded1  !important; /* Use the color you want */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7) !important; /* Optional: Add shadow for contrast */
}

/* Remove any conflicting styles */
h2:hover, h3:hover {
  color: #16ded1 !important; /* Ensure hover also respects the color */
}

/* Ensuring specific section headings */
.section h2 {
  font-size: 2.5rem !important;
  margin-bottom: 30px !important;
}

/* Projects Section */
.projects h3 {
  color: #16ded1 !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7) !important;
}

/* Resume Section */
.resume h3 {
  color: #16ded1 !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7) !important;
}

/* Contact Section */
.contact h2 {
  color: #16ded1 !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7) !important;
}


/* Footer Section */
footer {
  
  color: #bbb;
  text-align: center;
  padding: 30px;
}

footer a {
  color: #69e327;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
