/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212d9;
    color: #fff;
  }
  
  
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #03a9f4;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    font-weight: bold;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #03a9f4;
  }
  
  /* Responsive Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.9);
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
    }
  
    .nav-links li {
      text-align: center;
      margin: 10px 0;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .menu-toggle.active + .nav-links {
      display: flex;
    }
  }

  /* About section*/

  /* About Section Styles */
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
    background-color: #1e1e1e;
  }
  
  #about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #about .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    border: 5px solid #03a9f4; /* Add a border to highlight */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
    margin-bottom: 20px;
    object-fit: cover; /* Ensures the image fits well within the circle */
  }
  
  #about p {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    color: #ccc;
  }
  
  
 /* Hero Section Styles */
/* Hero Section Styles */
.hero {
  height: 100vh; /* Full viewport height */
  background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80')
    no-repeat center center/cover;
  position: relative;
  display: flex; /* Enable flexbox */
  justify-content: center; /* Horizontally center content */
  align-items: center; /* Vertically center content */
  overflow: hidden;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  z-index: 2; /* Place content above overlay */
  color: #fff;
  text-align: center;
  max-width: 700px; /* Limit width for text layout */
  margin: 0 auto;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4rem; /* Larger text for impact */
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #03a9f4; /* Highlighted color */
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
}

.hero-content .typing-text {
  color: #03a9f4;
  font-style: italic;
  border-right: 2px solid #fff; /* Typing cursor */
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.hero-content p {
  font-size: 1.5rem; /* Slightly smaller for balance */
  color: #ddd;
  margin-bottom: 30px;
}

.hero-content .btn {
  padding: 12px 30px;
  font-size: 1.2rem;
  color: #121212;
  background: #03a9f4;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 5px 15px rgba(3, 169, 244, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content .btn:hover {
  background: #1e88e5;
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(30, 136, 229, 0.6);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-content .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}






  
  /* Section Styles */
  .section {
    padding: 50px 20px;
    text-align: center;
  }
  
/* Projects Section */
/* Projects Section */
.projects {
  padding: 50px 20px;
  background-color: #1a1a1a; /* Very dark background color */
  color: #fff; /* White text to contrast with the dark background */
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ccc; /* Lighter subtitle color */
  margin-bottom: 30px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* Space between the cards */
}

.project-card {
  background: #2c2c2c; /* Darker gray for project cards */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.project-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.project-card h3 {
  font-size: 1.5rem;
  color: #fff; /* White text for project title */
  margin-bottom: 15px;
}

.project-card p {
  color: #bbb; /* Light gray color for project description */
  margin-bottom: 20px;
}

.project-btn {
  padding: 10px 20px;
  font-size: 1.1rem;
  color: #fff;
  background-color: #03a9f4;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-btn:hover {
  background-color: #0288d1;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .projects-container {
    grid-template-columns: 1fr; /* Stack cards on smaller screens */
  }

  .project-icon {
    width: 50px;
    height: 50px;
  }

  .project-card h3 {
    font-size: 1.3rem;
  }
}


  
  button {
    padding: 10px 20px;
    border: none;
    background: #03a9f4;
    color: #121212;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background: #1e88e5;
  }


  /* Contact Section Styles */
/* Contact Section */
.contact {
  padding: 50px 20px;
  background: #141414; 
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

.social-media-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between icons */
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.3);
}

.facebook:hover {
  color: #3b5998;
}

.twitter:hover {
  color: #00acee;
}

.linkedin:hover {
  color: #0077b5;
}

.instagram:hover {
  color: #e4405f;
}

.github:hover {
  color: #333;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
  .social-media-links {
    gap: 15px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

  
  /* Responsive Design */
  @media (min-width: 768px) {
    .contact-container {
      flex-direction: row;
      align-items: flex-start;
      justify-content: center;
      gap: 50px;
    }
  
    #contact-form,
    .contact-info {
      flex: 1;
    }
  }
  
  
  /* Footer */
/* Footer Styles */
footer {
  background-color: #121212;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Sections */
.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: #03a9f4;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
}

.footer-section ul li a:hover {
  color: #03a9f4;
}

/* Social Media */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
  color: #03a9f4;
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: #1e88e5;
}

/* Copyright Section */
.footer-section.copyright p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }
}

  