/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #f0f4ff, #ffffff);
  color: #333;
}

/* Header */
header {
  background-color: #1e1e2f;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background-color: #333;
  border-radius: 5px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: transparent;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 1.8rem;
  height: 40px;
  color: #00ADB5;
  margin-bottom: 1.5rem;
}

.typing-text::after {
  content: "|";
  animation: blink 0.7s infinite;
  color: #00ADB5;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.highlight {
  color: #00ADB5;
}

/* General Section Styling */
.section {
  padding: 4rem 2rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Home */
.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ADB5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.profile-img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 173, 181, 0.5);
}

.btn {
  background-color: #007BFF;
  padding: 0.75rem 1.5rem;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
}

/* Skills */
.skills-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
}

.skills-container ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Projects */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding-top: 1rem;
}

.project-card {
  background: #ffffff;
  margin: auto;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #1e1e2f;
  color: white;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Social Links */
.social-icons {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.social-icons a {
  color: #007BFF;
  margin: 0 0.75rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0056b3;
}

/* Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.achievements-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.achievements-grid img:hover {
  transform: scale(1.05);
}



/* Footer */
footer {
  background-color: #1e1e2f;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1e1e2f;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .skills-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Testimonials Section */
#testimonials {
  background-color: #f0f4ff;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-card {
  max-width: 700px;
  margin: 2rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #00ADB5;
  font-weight: 500;
}
