/* Base Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #2c3e50, #34495e); /* Dark gradient */
  color: #fff;
  overflow-x: hidden;
  animation: fadeIn 1.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
  }
}

/* Header Section */
header {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(to right, #333, #444); /* Dark gradient */
  border-bottom: 6px solid #4CAF50;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
  animation: fadeIn 2s ease-out;
}

header h1 {
  font-size: 3.5rem;
  margin: 0;
  letter-spacing: 3px;
  color: #4CAF50; /* Green text */
  text-shadow: 0 0 20px #4CAF50, 0 0 40px rgba(76, 175, 80, 0.6);
  animation: glow 3s infinite ease-in-out;
}

header p {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  color: #ddd;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

header img {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 6px solid #4CAF50;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  animation: floating 3s infinite ease-in-out;
}

/* Section Styles */
section {
  padding: 3rem 2rem;
  margin: 2rem 5%;
  background: linear-gradient(to bottom right, #1d1f22, #333); /* Dark section background */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #ccc; /* Light gray text for readability */
  animation: fadeIn 1s ease forwards;
}

section h2 {
  color: #4CAF50; /* Green text for headings */
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #2c3e50, #4CAF50);
  border-radius: 2px;
  animation: glow 2s infinite ease-in-out;
}

.info-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-box {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(to bottom, #333, #2c3e50); /* Dark box background */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-box:hover::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 15px;
  background: linear-gradient(to right, #4CAF50, #1C6B3D);
  z-index: -1;
  filter: blur(10px);
}

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

.info-box li {
  padding: 0.5rem 0;
  font-size: 1.2rem;
  color: #ddd; /* Light gray for text */
}

.info-box li::before {
  content: '✔';
  color: #4CAF50; /* Green check icon */
  margin-right: 10px;
}

.contact a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #1C6B3D;
}

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

.contact li {
  padding: 0.5rem 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.contact li svg {
  margin-right: 10px;
  color: #4CAF50;
}

/* Footer */
footer {
  background: linear-gradient(to right, #333, #444);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 1rem;
  border-top: 5px solid #4CAF50;
}

footer p {
  margin: 0;
  color: #aaa; /* Light gray footer text */
}

/* Button Style */
button {
  padding: 1rem 2rem;
  background: linear-gradient(to right, #4CAF50, #1C6B3D);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

button:active {
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
    align-items: center;
  }

  header h1 {
    font-size: 3rem;
  }

  header p {
    font-size: 1.2rem;
  }
}

