/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Bar */
nav {
  background-color: #333;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav .logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav .logo span {
  font-size: 1.2rem;
  font-weight: 600;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav .nav-links a:hover {
  background-color: #ff6b6b;
  color: #fff;
}

nav .nav-links a.active {
  background-color: #ff6b6b;
  color: #fff;
}

/* Mobile Menu Toggle */
nav .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

nav .menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  nav .nav-links.active {
    display: flex;
  }

  nav .menu-toggle {
    display: flex;
  }

  /* Hamburger Menu Animation */
  nav .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  nav .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Home Section */
.home-section {
  height: 100vh;
  background: url('./Durgeshimage1.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.home-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.home-section .content {
  z-index: 1;
}

.home-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.home-section .highlight {
  color: #ff6b6b;
}

.home-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.home-section .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.home-section .btn {
  padding: 0.8rem 1.5rem;
  background-color: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.home-section .btn:hover {
  background-color: #ff4c4c;
}

/* About Section */
.about-section {
  padding: 4rem 0;
}

.about-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-content img {
  width: 300px;
  border-radius: 10px;
}

.about-content .text-content {
  flex: 1;
}

/* Skills Section */
.skills-section {
  padding: 4rem 0;
  background-color: #fff;
}

.skills-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.skill-card {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
}

.skill-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.skill-card ul {
  list-style: none;
}

.skill-card ul li {
  margin-bottom: 0.5rem;
}

/* Projects Section */
.projects-section {
  padding: 4rem 0;
}

.projects-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.project-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.project-card p {
  margin-bottom: 1rem;
}

.project-card .btn {
  padding: 0.8rem 1.5rem;
  background-color: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.project-card .btn:hover {
  background-color: #ff4c4c;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: #fff;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 0.8rem 1.5rem;
  background-color: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff4c4c;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

footer .social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 1rem;
  }

  nav .nav-links.active {
    display: flex;
  }

  nav .menu-toggle {
    display: flex;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content img {
    width: 200px;
  }
}



/* Experience Section */
.experience-section {
  padding: 4rem 0;
  background-color: #fff;
}

.experience-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.experience-card {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
}

.experience-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.experience-card .company {
  font-weight: 500;
  color: #ff6b6b;
}

.experience-card .duration {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.experience-card ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.experience-card ul li {
  margin-bottom: 0.5rem;
}

/* Skill Level Graph */
.skill-level {
  margin-bottom: 1rem;
}

.skill-level p {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.level-bar {
  width: 100%;
  height: 10px;
  background-color: #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.level {
  height: 100%;
  background-color: #ff6b6b;
  border-radius: 5px;
}

.html-css-js {
  width: 90%;
}

.react-node {
  width: 85%;
}

.python-django {
  width: 80%;
}

.sql-mongo {
  width: 75%;
}

.aws-docker {
  width: 70%;
}
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    margin-bottom: 2rem;
  }
}





























/* About Section */
.about-section {
  padding: 4rem 0;
}

.about-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-content img {
  width: 300px;
  border-radius: 10px;
}

.about-content .text-content {
  flex: 1;
}

.about-content .text-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content img {
    width: 200px;
  }
}


















/* Experience Section */
.experience-section {
  padding: 4rem 0;
  background-color: #fff;
}

.experience-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.experience-card {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
}

.experience-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.experience-card .company {
  font-weight: 500;
  color: #ff6b6b;
}

.experience-card .duration {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.experience-card ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.experience-card ul li {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}




















/* Projects Section */
.projects-section {
  padding: 4rem 0;
  background-color: #fff;
}

.projects-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.project-card .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.project-card .btn:hover {
  background-color: #ff4c4c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    padding: 1rem;
  }

  .project-card img {
    height: 180px;
  }
}






















