/* General Styles */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
}

/* Header Styles */

header {
  background-color: #333;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  display: flex;
  align-items: center;
  color: #fff;
}

nav .logo img {
  height: 45px;
  margin-right: 10px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
}

nav ul li a:hover {
  background-color: #555;
  border-radius: 5px;
}

/* Banner Styles */

.banner {
  background-image: url("images/12.jpg");
  background-size: cover;
  background-position: 0% 10%;
  text-align: center;
  padding: 210px 0;
  color: #fff;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner h1 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #ffcc00;
}

.highlight {
  color: #ffcc00;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffcc00;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #ffdb4d;
}

/* About Section Styles */

section#about {
  background-color: #f9f9f9;
  padding: 60px 0;
}

section#about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.about-content {
  flex: 0 0 calc(60% - 20px);
  padding-right: 20px;
}

.about-image {
  flex: 0 0 calc(40% - 20px);
  padding-left: 20px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* Section Styles */

section#classes {
  background-color: #f9f9f9;
}

section#classes .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.classes-heading {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.card {
  flex: 0 0 calc(33.33% - 40px);
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.card .content {
  padding: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}

a {
  text-decoration: none;
  color: #333;
}


a:hover {
  color: #ffcc00;
}

.image-back {
      position: absolute;
      top:110%;
      left: -15%;
      width: 50%;
      height: 50%;
    }

/* Gallery Styles */

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.image-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.1);
}

/* Class Details Styles */

section#class-details {
  padding: 60px 0;
  background-image: url("images/16.jpeg");
}

section#class-details .container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

section#class-details h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

section#class-details p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

.class-details-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: inline-block;
}


/*schedule*/

section#class-schedule {
  background-color: #f9f9f9;
  padding: 60px 0;
}

section#class-schedule .container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

section#class-schedule h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

section#class-schedule ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

section#class-schedule ul li {
  font-size: 18px;
  margin-bottom: 15px;
  color: #666;
}

section#class-schedule p {
  font-size: 16px;
  margin-top: 30px;
  color: #666;
}

@media (max-width: 768px) {
  section#class-schedule ul li {
    font-size: 16px;
  }
}

/* Contact Section Styles */

section#contact {
  background-color: #333;
  padding: 55px 0;
  text-align: center;
}

section#contact .container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#contact .contact-info {
  text-align: left;
  flex-grow: 1;
}

section#contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
}

section#contact p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f9f9f9;
}

section#contact ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #666;
}

section#contact ul li i {
  font-size: 24px;
  margin-right: 10px;
  color: #333;
}

section#contact .logo img {
  width: 400px; /* Adjust the width as needed */
}

/* Styles for the dancing shapes */
    #about {
      position: relative;
      overflow: hidden;
    }

    .about-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .about-shape {
      position: absolute;
      background-color: rgba(171, 0, 0, 0.5); /* Set the desired shape color and transparency */
      animation: dance 4s infinite; /* Adjust the animation duration as needed */
    }

    @keyframes dance {
      0% {
        transform: translate(-50%, -50%) rotate(0deg);
      }

      50% {
        transform: translate(50%, 50%) rotate(180deg);
      }

      100% {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

