/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f8f8;
  color: #1d1f2b;
}

.highlight {
  color: #65b6aa; /* mint green */
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Style the list itself */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem; /* Adds space between each link */
  padding: 0;
  margin: 0;
}

/* Optional: style each link */
.nav-links a {
  text-decoration: none;
  color: #2d2f38;
  font-weight: 500;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ff8c42;
  bottom: -5px;
  left: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: 16rem 2rem 10rem 2rem; /* top, right, bottom, left */
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
}

.hero h1 {
  font-size: 5rem; /* increased from 3rem */
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem; /* increased from 1.25rem */
  margin-top: 1.5rem;
  color: #5f6472;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.buttons {
  margin-top: 3rem; /* increased spacing */
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem; /* increased from 0.75rem 1.5rem */
  font-size: 1.25rem;   /* increased from 1rem */
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #ff8c42;
  color: white;
}

.btn.primary:hover {
  background-color: #ff7320;
}

.btn.outline {
  border: 2px solid #a06bff;
  color: #a06bff;
  background-color: transparent;
}

.btn.outline:hover {
  background-color: #a06bff;
  color: white;
}

/* Blurred Background Blobs */
.blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 0;
}

.blur-1 {
  background: #65b6aa;
  width: 300px;
  height: 300px;
  top: 20%;
  left: -100px;
}

.blur-2 {
  background: #ffbd80;
  width: 300px;
  height: 300px;
  top: 10%;
  right: 100px;
}

.blur-3 {
  background: #a06bff;
  width: 350px;
  height: 350px;
  bottom: 5%;
  right: 0;
}

.projects-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.projects-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c2c2c;
  text-decoration: underline;
  text-decoration-color: #6db5aa;
  text-underline-offset: 8px;
}

.projects-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.card-top {
  height: 180px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.card-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card-content a {
  color: #a084e8;
  font-weight: 500;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

.info-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.email-icon {
  background-color: #d2eae7;
}

.phone-icon {
  background-color: #e5d8f9;
}

.location-icon {
  background-color: #fde6d7;
}

.label {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.value {
  font-size: 16px;
  color: #2c2c2c;
  margin: 0;
  font-weight: 500;
}

.footer {
  background-color: #0f1424;
  text-align: center;
  padding: 30
