.main-logo {
  width: 150px;
}
.hero-section {
  background: black;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.hero-section,
.deep-hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
}
.hero-section,
.deep-hero-section p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.deep-hero-section {
  background: black;
  color: white;
  padding: 60px 0;
}
.hero-btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  background-color: white;
  border: none;
  border-radius: 5px;
  color: black;
  text-transform: uppercase;
}
.hero-btn:hover {
  background-color: #e64a19;
}

.about-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.about-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}
.about-card {
  border: none;
  background: none;
  text-align: center;
}
.about-card .icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}
.about-card h5 {
  font-size: 1.25rem;
  font-weight: bold;
}
.about-card p {
  font-size: 1rem;
  color: #6c757d;
}

.curriculum-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.curriculum-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}

.technologies-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.technologies-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}
.tech-logo {
  max-width: 100px;
  margin: 15px;
  transition: transform 0.3s;
}
.tech-logo:hover {
  transform: scale(1.1);
}

.projects-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.projects-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}
.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}
.form-control:focus {
  box-shadow: none;
  border-color: #007bff;
}
.social-links a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #007bff;
  transition: color 0.3s;
}
.social-links a:hover {
  color: #0056b3;
}

.footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 40px 0;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover {
  color: #007bff;
  text-decoration: underline;
}
.social-icons a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #ffffff;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #007bff;
}
.footer .copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

canvas {
  width: 100%;
}
/* Wow Heading Style with Enhanced Animations */
.wow-heading {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
  color: #fff;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #ffffff, #cccccc 30%, #ffffff 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Subtle shadow to add depth */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  
  /* Smooth gradient animation */
  animation: gradient-animation 3s linear infinite;
}

/* Gradient animation */
@keyframes gradient-animation {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
/* Styling for the Paragraph */
.wow-paragraph {
  font-size: 1.25rem;
  color: #e0e0e0;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  max-width: 750px;
  margin: 0 auto;
  padding: 20px 0px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* background: linear-gradient(135deg, #4e5d6b, #2d3644); */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.wow-paragraph:hover {
  transform: translateY(-5px);
}

/* Button Styling */
.wow-btn {
  display: inline-block;
  position: relative;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 600;
  border: 1px solid #fff;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.wow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.6),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wow-btn:hover::before {
  opacity: 1;
}

.wow-btn:hover {
  transform: translateY(-3px);
  background-color: #222;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
}

.wow-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Slide-In Effect */
@keyframes slide-in {
  0% {
      transform: translateX(-50%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

/* Subtle Underline Animation */
.wow-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #ff4d4d;
  animation: underline-grow 1.5s ease-out 1.5s forwards;
}

@keyframes underline-grow {
  0% {
      width: 0;
  }
  100% {
      width: 100%;
  }
}
