/* section spacing */

.about_new_section {
  padding: 50px 0;
}

/* small title */

.small_newtitle {
  color: #b54a2a;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* main heading */

.about-heading_new {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
}

.highlight {
  color: #ff4d29;
}

/* paragraph */

.about-text_neww {
  color: #666;
  margin-top: 20px;
  line-height: 1.7;
}

/* award box */

.award-box_new {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-left: 5px solid #ff4d29;
}

.award-iiicon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-right: 15px;
}

/* right image card */

.image_newcard {
  background: #ffc107;
  border-radius: 25px;
  padding: 119px;
  text-align: center;
  position: relative;
}

.image_newcard img {
  max-width: 450px !important;
}

.year-bbbbadge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 22px;
}

.gallery-section_neww {
  padding: 60px 0;
}

/* gallery card */

.galleryycard_new {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.galleryycard_new img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

/* overlay */

.gallery-overlay_neww {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: 0.4s;
  color: white;
}

/* hover effect */

.galleryycard_new:hover img {
  transform: scale(1.1);
}

.galleryycard_new:hover .gallery-overlay_neww {
  opacity: 1;
}

/* button */

.view_bbtn {
  background: white;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 10px;
}

.dance-slider {
  background: #f5f5f5;
  overflow: hidden;
}

/* HORIZONTAL SCROLL */
.slider-wrapperrrrr {
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
}

/* HIDE SCROLLBAR */
.slider-wrapperrrrr::-webkit-scrollbar {
  display: none;
}

/* CARD STYLE */
.dance-card {
  width: 300px;
  height: 420px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 5px;
  cursor: pointer;
}

/* IMAGE */
.dance-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* ZOOM EFFECT */
.dance-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY TEXT */
.overlayyy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.overlayyy h2 {
  font-size: 26px;
  font-weight: bold;
}

.overlayyy p {
  margin: 0;
  font-size: 14px;
}
/* counter */
        .counter-box_counter {
            background: #fff;
            border-radius: 15px;
            padding-top: 75px;
            padding-bottom: 25px;
            position: relative;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: 0.3s;
        }

        .counter-box_counter:hover {
            transform: translateY(-8px);
        }

        /* TOP BAR */
        .top-shape_counter {
            width: 100%;
            height: 90px;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 15px 15px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 🔥 TRIANGLE PERFECT */
        .top-shape_counter::after {
            content: "";
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
        }

        /* 🔥 FOLD EFFECT (important) */
        .top-shape_counter::before {
            content: "";
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 10px;
            background: rgba(0, 0, 0, 0.08);
        }

        /* ICON */
        .top-shape_counter i {
            font-size:35px !important;
            color: #fff;
        }

        /* COLORS */
        .green .top-shape_counter {
           background: linear-gradient(135deg, #1e8b3c, #40371b);
        }

        .green .top-shape_counter::after {
            border-top: 18px solid  #1e8b3c;
        }


        /* TEXT */
        .content_counter {
            margin-top: 35px;
        }

        .content_counter p {
            font-size: 19px;
            font-weight: 600;
            color: #777;
            letter-spacing: 1px;
        }

        .content_counter h3 {
            font-size: 28px;
            font-weight: bold;
        }

        /* why choose us */

    .main-section {
      background: linear-gradient(135deg, #0b0015, #200021);
      border-radius: 20px;
      padding: 50px;
      color: white;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    .title span {
      background: linear-gradient(90deg, #ff5ec4, #b86bff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .card-custom {
      background: #0f0018;
      border-radius: 20px;
      padding: 25px;
          height: 162px;
      display: flex;
      gap: 20px;
      align-items: center;
      border: 2px solid transparent;
      transition: 0.3s;
      position: relative;
    }

    .card-custom::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 2px;
      background: linear-gradient(45deg, #464144, #757577);
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .card-custom:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 25px rgba(255, 94, 196, 0.6);
    }

    .icon-box img {
      width: 80px;
    }

    .card-text h5 {
      font-weight: 700;
    }

    .card-text p {
      font-size: 14px;
      color: #ccc;
      margin: 0;
    }

    @media (max-width: 768px) {
      .main-section {
        padding: 30px 20px;
      }

      .card-custom {
        flex-direction: column;
        text-align: center;
      }
    }
.img_round{
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.four_img{
    height:180px;
    width: 100%;
margin-bottom:10px;
border-radius: 20px;
}

/* mobile view */
@media (max-width:576px){
     .card-custom {
          height:auto;
        }
        .faq-banner_300 {
    height: 170px !important;
    /* margin-bottom: 20px; */
        }
}
