/* General Reset and Layout */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff0f6;
  color: #333;
  scroll-behavior: smooth;
}
/* Pink buttons */
.btn-outline-primary,
.btn-primary {
  background-color: #e090b5;
  border-color: #e090b5;
  color: white;
}

.btn-outline-primary:hover,
.btn-primary:hover {
  background-color: #d26aa1;
  border-color: #d26aa1;
  color: white;
}
.btn {
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(224, 144, 181, 0.2);
}

section {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #f4c2d7;
}

.section-content {
  max-width: 800px;
  margin: auto;
}

/* Navigation */
.navbar-custom {
  background-color: #e090b5;
  padding: 14px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.navbar-custom a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.2s;
}

.navbar-custom a:hover {
  background-color: #f8e1ec;
  color: #e090b5;
}

/* Typography */
h1 {
  font-size: 48px;
  color: #e090b5;
}

h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #d63384;
}

.subheading {
  font-size: 18px;
  color: #777;
  margin-bottom: 25px;
}

/* Profile Image */
.img-profile {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 20px;
}

/* Cards & Content Blocks */
.project-card,
.experience-card,
.achievement-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 24px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.skill-item {
  background: #ffeef5;
  padding: 16px;
  border-radius: 10px;
  font-weight: bold;
  color: #d63384;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Info List */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}

.info-list li {
  margin: 10px 0;
  font-size: 16px;
}

a {
  color: #d63384;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
  color: #e090b5;
  background-color: #fff0f6;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);

}
/* Style the navigation menu */
.navbar-custom {
  background-color: #e090b5;
  padding: 14px 0;
  text-align: center;
  position: fixed; /* Change from sticky to fixed */
  top: 0;
  width: 100%; /* Make it full width */
  z-index: 1000;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


/* Hide the links inside the navigation menu (except for logo/home) */
.navbar-custom #navbar {
  display: none;
}

/* Style navigation menu links */
.navbar-custom a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.navbar-custom a.icon {
  background: #e090b5;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.navbar-custom a:hover {
  background-color: #e090b5;
  color: #d63384;
}



