/* Reset and basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header, footer {
  background: #f8f9fa;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0077b6;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: 0.4s;
}

.menu-links {
  display: none;
  flex-direction: column;
  background: #f8f9fa;
  position: absolute;
  right: 20px;
  top: 70px;
  border-radius: 8px;
  overflow: hidden;
}

.menu-links.open {
  display: flex;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  position: relative;
  display: none;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  width: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-links.open {
  width: 200px;
  height: auto;
  padding: 1rem 0;
}

.menu-links li {
  list-style: none;
  padding: 0.5rem 1rem;
}

.menu-links a {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.2s;
}

.menu-links a:hover {
  background-color: #f5f5f5;
}

/* Make sure nothing is covering the links */
.menu-links.open li {
  position: relative;
  z-index: 1001;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  #desktop-nav {
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
}

.section {
  padding: 4rem 0;
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-pic {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.profile-text p {
  margin-bottom: 0.5rem;
}

.btn-group {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 0.7rem 1.5rem;
  background: #0077b6;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background: #005f87;
}

.btn-primary {
  background: #333;
}

.btn-primary:hover {
  background: #555;
}

.socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-pic {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  text-align: center;
}

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

.card ul li {
  margin-bottom: 0.5rem;
  text-align: left;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
}

.cert-img {
  width: 120px;
  height: auto;
}

.contact-info {
  text-align: center;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

    html {
      scroll-behavior: smooth;
    }
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* Added styles for certification items */
    .certification-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 15px;
      text-align: center;
    }
    .cert-img {
      width: 120px;
      height: auto;
      margin-bottom: 10px;
    }
    .cert-name {
      font-size: 0.9rem;
      font-weight: 600;
      max-width: 150px;
    }
    /* Updated certifications grid */
    .certifications-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      justify-items: center;
      padding: 20px 0;
    }
    /* Balanced contact section */
    .contact-info {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }
    .contact-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 250px;
      padding: 20px;
      background: #f5f5f5;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .contact-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 15px;
    }
    .education-degree {
      margin-bottom: 1rem;
      display: block;
    }
    .accenture-text {
      color: #800080; /* Purple color */
      font-weight: 600; /* Optional: makes it slightly bolder */
    }

/* New for Experience Icons */
.experience-icon, .accenture-logo {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

#contact a {
  color: black;
  text-decoration: none; /* Optional: removes underline */
}
#contact a:hover {
  text-decoration: underline; /* Optional: adds underline on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  
}
