
/* ==================== ENHANCED CUSTOM STYLES ==================== */

/* Base Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(120deg, #e0f7fa, #f9fbe7);
  color: #2c3e50;
  margin: 0;
  padding: 0;
}

/* Stylish and Centered Header */
header {
  background: linear-gradient(135deg, #e0f7fa, #fce4ec);
  text-align: center;
  padding: 60px 20px 30px;
  animation: fadeIn 1s ease-in-out;
}

header h1 {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 700;
  color: #2c3e50;
}

header p {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
}

/* Smooth fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stylish Nav Bar */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: transparent;
  padding: 15px 0;
  font-weight: bold;
}

nav a {
  color: #2c3e50;
  text-decoration: none;
  position: relative;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1abc9c;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s ease-in-out;
}
.cta-button:hover {
  background: linear-gradient(135deg, #16a085, #1abc9c);
  transform: scale(1.05);
}

/* Project Card Grid */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  justify-content: center;
}

.project-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.project-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #2c3e50;
}
.project-card p {
  color: #555;
  line-height: 1.6;
}

/* Section Divider */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #1abc9c, #16a085);
  margin: 50px 0;
}

/* Gallery */
/* 
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}*/

/* Profile Photo Enhancements */
.profile-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto 15px;
}
.profile-photo:hover {
  transform: scale(1.05);
}
