* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #0f0f0f, #1a1a1a);
  color: #f8f9fa;
}

h1,
h2,
h5,
.navbar-brand {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

h1,
h2 {
  font-weight: 800;
}

.navbar {
  background: rgba(20, 20, 20, 0.9);
  border-bottom: 1px solid #ffd700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffd700 !important;
}

.navbar .nav-link {
  color: #f8f9fa !important;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link:hover {
  color: #ffd700 !important;
  transform: translateY(-2px);
}

p,
.lead {
  color: #e6e6e6;
}

#about p {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #ffd700;
  padding: 25px;
  font-size: 17px;
  line-height: 1.8;
  border-radius: 10px;
}

.glow-text {
  text-shadow: 0 0 12px #ffd700, 0 0 24px #fff;
}

footer {
  background-color: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.95rem;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffd700;
  text-align: center;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.gallery-img {
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

/* Reusable Hover Effect */
.hover-effect {
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
  border-radius: 12px;
}

.hover-effect:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}
.card {
  overflow: hidden;
}
