/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #2c3e50;
    color: #fff;
  }
  
  .logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
  }
  
  .logo span {
    color: #1abc9c;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #1abc9c;
  }
  
  .social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #1abc9c;
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      height: 100vh;
      width: 100%;
      background-color: #2c3e50;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
    }
  
    .nav-links.active {
      transform: translateX(0);
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .social-links {
      display: none;
    }
  }



  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
  }
  
  /* Banner Section */
  .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
    background-color: #2c3e50;
    color: #fff;
  }
  
  .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
  }
  
  .text-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .text-content h1 span {
    color: #1abc9c;
  }
  
  .buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #1abc9c;
    color: #fff;
    border: 2px solid #1abc9c;
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: #1abc9c;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #1abc9c;
    border: 2px solid #1abc9c;
  }
  
  .btn-secondary:hover {
    background-color: #1abc9c;
    color: #fff;
  }
  
  .image-content img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #1abc9c;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .banner-content {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content h1 {
      font-size: 36px;
    }
  
    .buttons {
      justify-content: center;
    }
  
    .image-content {
      margin-top: 30px;
    }
  
    .image-content img {
      width: 200px;
      height: 200px;
    }
  }



/* Banner Section */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
    background-color: #2c3e50;
    color: #fff;
  }
  
  .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
  }
  
  .text-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .text-content h1 span {
    color: #1abc9c;
  }
  
  .buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #1abc9c;
    color: #fff;
    border: 2px solid #1abc9c;
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: #1abc9c;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #1abc9c;
    border: 2px solid #1abc9c;
  }
  
  .btn-secondary:hover {
    background-color: #1abc9c;
    color: #fff;
  }
  
  .image-content img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #1abc9c;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design for Banner */
  @media (max-width: 768px) {
    .banner-content {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content h1 {
      font-size: 36px;
    }
  
    .buttons {
      justify-content: center;
    }
  
    .image-content {
      margin-top: 30px;
    }
  
    .image-content img {
      width: 200px;
      height: 200px;
    }
  }




  /* About Me Section */

/* Bottom Headline Styles */
.bottom-headline {
    text-align: center;
    margin-top: 15px;
    padding: 20px 0;
  }
  
  .bottom-headline h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  
  .bottom-headline p {
    font-size: 45px;
    color: #1abc9c;
    margin: 10px 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-me {
    padding: 100px 10%;
    background-color: #34495e; /* Matching previous section */
    color: #fff;
 }
  
  .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .left-side h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .left-side h2 span {
    color: #1abc9c; /* Highlight your name */
  }
  
  .left-side p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .left-side ul {
    list-style: none;
    padding: 0;
  }
  
  .left-side ul li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }
  
  .left-side ul li::before {
    content: "•";
    color: #1abc9c;
    position: absolute;
    left: 0;
    font-size: 20px;
  }
  
  .right-side .experience {
    text-align: center;
  }
  
  .right-side .experience h1 {
    font-size: 72px;
    font-weight: 600;
    color: #1abc9c;
    margin: 0;
  }
  
  .right-side .experience p {
    font-size: 18px;
    margin: 0;
  }
  
  /* Personal Info Section */
  /* .personal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin: 50px auto 0;
  } */


  .personal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.personal-info div p {
  min-height: 100px; /* Ensures the paragraph has a minimum height */
  padding: 10px;
  word-wrap: break-word; /* Prevents text from overflowing */
  overflow-wrap: break-word; /* Ensures better browser support */
  text-align: center; /* Centers the text inside the p tag */
}

  
  .info-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  
  .info-item span {
    font-size: 14px;
    color: #1abc9c;
    text-transform: uppercase;
  }
  
  .info-item p {
    font-size: 18px;
    margin: 10px 0 0;
    font-weight: 600;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .left-side ul li {
      text-align: left;
    }
  
    .right-side .experience h1 {
      font-size: 48px;
    }
  
    .personal-info {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  }



/* Skill Section Design */

/* General Styles */
/* body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
} */
.all-skills{
  background-color: #34495e;
}
.skills-bottom-headline {
  text-align: center;
  /* margin: 40px 0; */
  padding: 20px 0;
}

.skills-bottom-headline h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.skills-bottom-headline h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Optional: Add a hover effect */
.skills-bottom-headline h2:hover::after {
  width: 100%;
  transition: width 0.3s ease;
}

.skills-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

.card h3 {
  font-size: 1.2rem;
  color: #555;
  margin-top: 15px;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 8px;
  padding-left: 10px;
  position: relative;
}

.card ul li::before {
  content: "•";
  color: #007bff;
  position: absolute;
  left: -10px;
}

.wide-card {
  width: calc(100% - 40px); /* Takes full width minus padding */
  max-width: 600px; /* Adjust as needed */
}

/* Responsive Design */
@media (max-width: 768px) {
  .wide-card {
    width: 100%;
  }
}


/* Education Section Styling */
#education {
  padding: 60px 20px;
  background-color: #34495e;
  text-align: center;
}

.edu-section-title {
  font-size: 32px;
  color: white;
  margin-bottom: 40px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.edu-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.edu-icon {
  font-size: 48px;
  color: #007BFF;
  margin-bottom: 20px;
}

.edu-title {
  font-size: 24px;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.edu-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.edu-year {
  font-size: 16px;
  color: #555555;
  margin-bottom: 15px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.edu-skills {
  font-size: 16px;
  color: #007BFF;
  font-weight: 500;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.edu-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .edu-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }

  .edu-section-title {
    font-size: 28px;
  }

  .edu-title {
    font-size: 22px;
  }

  .edu-subtitle {
    font-size: 16px;
  }

  .edu-year, .edu-skills, .edu-description {
    font-size: 14px;
  }
}


/* Style for projct */

/* Projects Section */
.all-projects{
  background-color: #34495e;
}
.projects-section {
  max-width: 1000px;
  margin: 0px auto;
  text-align: center;
}

/* Project Headline */
.projects-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: white;
}

/* Projects Container */
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Project Box */
.project {
  display: flex;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  align-items: center;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-img {
  width: 40%;
  height: 300px;
  max-width: 300px;
  border-radius: 12px;
  margin-right: 20px;

}

/* Project Content */
.project-content {
  text-align: left;
  flex: 1;
}

.project-content h3 {
  color: #007bff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.project-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Features List */
.project-content ul {
  list-style: none;
  padding: 0;
}

.project-content ul li {
  margin: 8px 0;
  font-size: 0.95rem;
}

/* Buttons */
.project-content .buttons {
  margin-top: 15px;
}

.project-content .btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  font-size: 1rem;
  color: white;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.project-content .btn:hover {
  background-color: #0056b3;
}

.project-content .btn-secondary {
  background-color: #28a745;
}

.project-content .btn-secondary:hover {
  background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project {
      flex-direction: column;
      text-align: center;
  }

  .project-img {
      width: 100%;
      max-width: 100%;
      margin-bottom: 15px;
  }

  .projects-section h2 {
      font-size: 2rem;
  }

  .project-content h3 {
      font-size: 1.5rem;
  }

  .project-content p, .project-content ul li {
      font-size: 0.9rem;
  }
}