* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #007bff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  z-index: 1000;
}

.navbar-left a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar-menu a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: #007bff;
  color: white;
  padding: 100px 30px 60px;
  margin-top: 50px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-image img {
  width: 200px;
  height: 200px;
  border-radius: 5%;
  object-fit: cover;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-text button {
  background-color: #fff;
  color: #007bff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #f0f0f0;
}
.hero-text button a {
  color: inherit;
  text-decoration: none;
}


/* Skills Section */
.skills {
  background-color: #f5f5f5;
  padding: 60px 30px;
  text-align: center;
}

.skills h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.skills p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #000000;
}

.skills-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.skill-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.skill-card i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #007bff;
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.skill-card ul {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}

.skill-card li::before {
  content: "✔️";
  margin-right: 8px;
  color: green;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .navbar-menu {
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* Projects Section */
.projects-section {
  padding: 60px 20px;
  background-color:#f5f5f5;
  text-align: center;
}

.projects-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 10px;
}

.project-card p {
  margin: 5px 0;
  color: #444444;
  
}
.resume-section,
.contact-section,
.socials-section {
  padding: 60px 20px;
  background-color:#f5f5f5;
  text-align: center;
}

.resume-section h2,
.contact-section h2,
.socials-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.resume-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.resume-button:hover {
  background-color: #005fa3;
}
.contact-list i {
  margin-right: 8px;
  color: #0077cc;
  width: 20px;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}


.contact-section ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.contact-section ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-section a {
  color: #0077cc;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 2rem;
  margin-top: 20px;
}

.social-icons a {
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0077cc;
}
.site-footer {
  background-color: #f8f8f8;
  padding: 20px 40px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  text-align: center;
  margin: 10px 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  display: inline;
  margin: 0 10px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.footer-right a {
  margin: 0 10px;
  color: #333;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #0077cc;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-left, .footer-middle, .footer-right {
    text-align: center;
    margin-bottom: 15px;
  }
}
.card-section {
  background-color: #ffffff;
  padding: 30px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  text-align: center;
}

.card-section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #222;
}

.card-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-section li {
  margin: 15px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.card-section i {
  margin-right: 10px;
  color: #0077cc;
  font-size: 1.1rem;
}

.card-section a {
  color: #0077cc;
  text-decoration: none;
}

.card-section a:hover {
  text-decoration: underline;
}
#resume, #contact ,#socials {
  background-color: #f5f5f5;
  padding: 40px 20px;
}
