/* Body & Typography */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #e0f7fa, #fffde7);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



.hover-shadow:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: 0.3s ease-in-out;
}

.transition {
  transition: all 0.3s ease;
}

/* Glowing Headline */
.glowing-text {
  text-shadow: 0 0 8px #00bcd4, 0 0 20px rgba(0, 188, 212, 0.6);
  transition: text-shadow 0.4s ease;
}
.glowing-text:hover {
  text-shadow: 0 0 20px #00acc1, 0 0 40px rgba(0, 172, 193, 0.8);
}

/* Highlighted Keywords */
.highlighted {
  color: #ff5722;
  font-weight: bold;
  transition: color 0.3s ease;
}
.highlighted:hover {
  color: #2196f3;
}

/* Paragraph Fade-in */
.animated-paragraph {
  opacity: 0;
  animation: fadeInText 1.2s ease forwards;
}
.animated-paragraph:nth-child(2) {
  animation-delay: 0.3s;
}
.animated-paragraph:nth-child(3) {
  animation-delay: 0.6s;
}

/* Bottom Fade-up */
.fade-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.2s ease forwards;
  animation-delay: 0.9s;
}

/* Section Background */
.section-bg {
  background: linear-gradient(135deg, #eaf6ff, #f5fcff);
  border: 1px solid #dfefff;
  transition: box-shadow 0.3s ease;
}
.section-bg:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Typography */
h1 {
  font-size: 32px;
  color: #444;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

ul {
  font-size: 16px;
  color: #555;
  font-weight: bold;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* Updated Image Container */
.image-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: scale(1.02);
}

/* Basic Responsive Image */
.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Canvas Overlay */
#dotsCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  border-radius: 12px;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: auto;
}

.footer-section h3 {
  color: #00e6e6;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-section p,
.footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cccccc;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00e6e6;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #aaa;
  font-size: 14px;
  margin-top: 30px;
}

/* Animations */
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
