body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

.animation-container {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  animation: backgroundZoom 5s ease-in-out forwards;
}

.navbar {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  padding-left: 20px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 5s ease-in-out forwards 0.5s;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ff5722;
}

.content {
  text-align: center;
  color: white;
  z-index: 1;
}

.animated-text {
  font-size: 6em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 5s ease-in-out forwards;
  color: rgb(0, 0, 0);
  font-family: oswald;
}

.animated-button {
  font-size: 1.5em;
  padding: 10px 20px;
  color: white;
  background-color: #fb7046;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 5s ease-in-out forwards 1s;
}

.animated-button:hover {
  background-color: #f63900;
}

.info-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding: 20px;
  margin-left: 20%;
  margin-right: 20%;
  z-index: 1;
}

.info-box {
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 5s ease-in-out forwards 1s;
  transition: background-color 0.3s, color 0.3s;
}

.info-box:hover {
  background-color: #f63900;
  color: white;
}

.info-box h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 1em;
}

@keyframes backgroundZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.arrow {
  border: solid black;
  border-width: 0 7px 7px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.tutorials-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.tutorials-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container {
  flex: 1;
}

.image-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.text-container {
  flex: 2;
  padding-left: 40px;
}

.text-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 16px;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.stat h3 span {
  font-size: 24px;
}

.stat p {
  font-size: 16px;
  margin-bottom: 5px;
}

.stat .description {
  font-size: 14px;
  color: #666;
}

.browse-courses-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("img3.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: left;
}

.browse-courses-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-overlay {
  position: absolute;
  left: 20px;
  bottom: 40px;
  max-width: 300px;
}

.text-overlay h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.explore-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s, border-color 0.3s;
}

.explore-button:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.8);
}

.competitions-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.heading-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.heading-container p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

.competitions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.competition-block {
  background-color: #ffffff;
  padding: 20px;
  margin: 10px;
  width: calc(33.333% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  text-align: left;
}

.competition-block h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.competition-block p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.competition-block img {
  width: 100%;
  height: auto;
  display: block;
}
.our-team-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.our-team-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.our-team-section hr {
  width: 50px;
  height: 3px;
  background-color: #000;
  border: none;
  margin: 10px auto 40px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.team-member p {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

.fade-in {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 2s ease-out, transform 1s ease-out;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.Comphr {
  width: 140px;
  height: 3px;
  background-color: #000;
  border: none;
  margin: 10px auto 40px;
}

.competitions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.competition-block {
  flex: 1 1 calc(33.333% - 20px); /* 3 columns with spacing */
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.competition-block button {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.competition-block img {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.competition-block h3 {
  margin: 16px;
  font-size: 1.5em;
}

.competition-block p {
  margin: 0 16px 16px;
  color: #555;
}

.competition-block:hover {
  background-color: #f0f0f0;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-23,
.btn-23 *,
.btn-23 :after,
.btn-23 :before,
.btn-23:after,
.btn-23:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-23 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-23:disabled {
  cursor: default;
}

.btn-23:-moz-focusring {
  outline: auto;
}

.btn-23 svg {
  display: block;
  vertical-align: middle;
}

.btn-23 [hidden] {
  display: none;
}

.btn-23 {
  border-radius: 99rem;
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.btn-23 span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}

.btn-23 .marquee {
  --spacing: 5em;
  --start: 0em;
  --end: 5em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
    #fff calc(var(--spacing) * -2) 0;
}

.btn-23:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-23:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

/* Existing CSS code remains unchanged */

.static-btn {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 99rem;
  padding: 0.8rem 3rem;
  font-weight: 900;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
}

.static-btn:hover {
  background-color: #444;
}

.static-btn {
  margin-left: 30%;
  margin-top: 7%;
}
