/*Dance page css start*/


a{
      text-decoration:none;
    }

    .container{
      width:90%;
      max-width:1200px;
      margin:auto;
    }

    /* Hero Section */
    .hero{
      height:100vh;
      background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
      url('https://www.ckiacademy.in/videos/dance-photo.jpeg');
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:20px;
    }

    .hero-content h1{
      font-size:70px;
      margin-bottom:20px;
    }

    .hero-content h1 span{
      color:#ff2e93;
    }

    .hero-content p{
      font-size:22px;
      color:#ddd;
      margin-bottom:30px;
    }

    .btn{
      display:inline-block;
      background:#ff2e93;
      color:white;
      padding:15px 35px;
      border-radius:50px;
      transition:0.3s;
      font-size:18px;
      font-weight:bold;
    }

    .btn:hover{
      background:#ff0077;
      transform:translateY(-3px);
    }

    /* About Section */
    .about{
      padding:100px 0;
    }

    .about-wrapper{
      display:flex;
      gap:50px;
      align-items:center;
      flex-wrap:wrap;
    }

    .about-image,
    .about-content{
      flex:1;
      min-width:300px;
    }

    .about-image img{
      width:100%;
      border-radius:20px;
    }

    .section-title{
      font-size:45px;
      margin-bottom:20px;
      color:#C71E23;
    }

    .about-content p{
      color:#fff;
      font-size:18px;
    }

    .stats{
      display:flex;
      gap:20px;
      margin-top:30px;
      flex-wrap:wrap;
    }

    .stat-box{
      background:#151515;
      padding:25px;
      border-radius:15px;
      flex:1;
      min-width:150px;
      text-align:center;
      border:1px solid #222;
    }

    .stat-box h3{
      color:#C71E23;
      font-size:35px;
    }

    /* Dance Styles */
    .styles{
      padding:100px 0;
      background:#111;
    }

    .styles-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
      gap:30px;
      margin-top:50px;
    }

    .style-card{
      background:#1a1a1a;
      padding:35px;
      border-radius:20px;
      transition:0.3s;
      border:1px solid #222;
    }

    .style-card:hover{
      transform:translateY(-10px);
      background:#222;
    }

    .style-card h3{
      color:#C71E23;
      margin-bottom:15px;
      font-size:28px;
    }

    .style-card p{
      color:#ccc;
    }

    /* Features */
    .features{
      padding:100px 0;
    }

    .feature-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
      gap:25px;
      margin-top:50px;
    }

    .feature-box{
      background:#151515;
      padding:40px 20px;
      text-align:center;
      border-radius:20px;
      transition:0.3s;
      border:1px solid #222;
    }

    .feature-box:hover{
      background:#C71E23;
    }

    .feature-box h3{
      font-size:24px;
    }

    /* CTA */
    .cta{
      padding:100px 20px;
      text-align:center;
      /*background:linear-gradient(45deg,#ff2e93,#7b2ff7);*/
      background:linear-gradient(45deg,#C71E23,#161617);
      
    }

    .cta h2{
      font-size:50px;
      margin-bottom:20px;
    }

    .cta p{
      max-width:700px;
      margin:auto;
      font-size:20px;
      margin-bottom:35px;
    }

    .cta .btn{
      background:white;
      color:black;
    }
    
    .videos{
          padding:100px 0;
        }

    .video-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:30px;
      margin-top:50px;
    }
    
    .video-card{
      background:#151515;
      padding:15px;
      border-radius:20px;
      border:1px solid #222;
      overflow:hidden;
      transition:0.4s ease;
      box-shadow:0 10px 30px rgba(0,0,0,0.3);
    }
    
    .video-card:hover{
      transform:translateY(-10px);
      box-shadow:0 15px 40px rgba(199,30,35,0.35);
    }
    
    .video-card iframe{
      width:100%;
      height:250px;
      border:none;
      border-radius:15px;
    }

    /* Responsive */
    @media(max-width:768px){
      .hero-content h1{
        font-size:45px;
      }

      .hero-content p{
        font-size:18px;
      }

      .section-title{
        font-size:35px;
      }

      .cta h2{
        font-size:35px;
      }
    }

  

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes zoomIn {
      from {
        opacity: 0;
        transform: scale(0.8);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes floating {
      0% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
      100% {
        transform: translateY(0px);
      }
    }

    .hero-content{
      animation: fadeUp 1.2s ease;
    }

    .about-image img{
      animation: zoomIn 1.5s ease;
    }

    .style-card{
      animation: fadeUp 1s ease;
    }

    .feature-box{
      animation: floating 4s ease-in-out infinite;
    }

    .btn{
      position: relative;
      overflow: hidden;
    }

    .btn::before{
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.3);
      transition: 0.5s;
    }

    .btn:hover::before{
      left: 100%;
    }

    .style-card:hover
    {
        transform:translateY(-10px);
        box-shadow:0 15px 40px rgba(199,30,35,0.3);
        background:#202020;
        /*box-shadow: 0 15px 40px rgba(255,46,147,0.3);*/
    }

    .feature-box:hover{
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 10px 30px rgba(255,46,147,0.3);
    }

    .hero::after{
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255,46,147,0.15);
      border-radius: 50%;
      filter: blur(100px);
      animation: floating 6s infinite ease-in-out;
      top: 10%;
      right: 10%;
    }
    
    /*Dance page css end*/
    
    
    
    /*Zumba page css start*/
    img{
          width:100%;
          display:block;
        }
        
        .btn{
          display:inline-block;
          padding:15px 35px;
          background:#C71E23;
          color:#fff;
          border-radius:50px;
          text-decoration:none;
          font-size:18px;
          transition:0.4s ease;
          position:relative;
          overflow:hidden;
        }
        
        .btn:hover{
          transform:translateY(-5px);
          box-shadow:0 10px 30px rgba(199,30,35,0.4);
        }
        
        .btn::before{
          content:'';
          position:absolute;
          top:0;
          left:-100%;
          width:100%;
          height:100%;
          background:rgba(255,255,255,0.2);
          transition:0.5s;
        }
        
        .btn:hover::before{
          left:100%;
        }
        
        /* Hero Section */
        .hero{
          position:relative;
          height:100vh;
          display:flex;
          align-items:center;
          justify-content:center;
          text-align:center;
          overflow:hidden;
          background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
          url('https://www.ckiacademy.in/videos/zumba.jpg');
          background-size:cover;
          background-position:center;
        }
        
        .hero::after{
          content:'';
          position:absolute;
          width:450px;
          height:450px;
          background:rgba(199,30,35,0.2);
          filter:blur(100px);
          border-radius:50%;
          top:10%;
          right:10%;
          animation:floating 5s infinite ease-in-out;
        }
        
        .hero-content{
          position:relative;
          z-index:2;
          animation:fadeUp 1.2s ease;
        }
        
        .hero-content h1{
          font-size:70px;
          margin-bottom:20px;
        }
        
        .hero-content span{
          color:#C71E23;
        }
        
        .hero-content p{
          font-size:22px;
          max-width:750px;
          margin:auto;
          margin-bottom:35px;
          color:#ddd;
        }
        
        /* About */
        .about{
          padding:100px 0;
        }
        
        .about-wrapper{
          display:flex;
          gap:50px;
          align-items:center;
          flex-wrap:wrap;
        }
        
        .about-image,
        .about-content{
          flex:1;
          min-width:300px;
        }
        
        .about-image img{
          border-radius:20px;
          animation:zoomIn 1.2s ease;
        }
        
        .section-title{
          font-size:45px;
          margin-bottom:20px;
          color:#C71E23;
        }
        
        .about-content p{
          color:#ccc;
          font-size:18px;
        }
        
        /* Benefits */
        .benefits{
          padding:100px 0;
          background:#111;
        }
        
        .benefit-grid{
          display:grid;
          grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
          gap:30px;
          margin-top:50px;
        }
        
        .benefit-card{
          background:#1a1a1a;
          padding:35px;
          border-radius:20px;
          border:1px solid #222;
          transition:0.4s ease;
          animation:fadeUp 1s ease;
        }
        
        .benefit-card:hover{
          transform:translateY(-10px);
          box-shadow:0 15px 40px rgba(199,30,35,0.3);
          background:#202020;
        }
        
        .benefit-card h3{
          color:#C71E23;
          margin-bottom:15px;
          font-size:28px;
        }
        
        .benefit-card p{
          color:#ccc;
        }
        
        /* Schedule */
        .schedule{
          padding:100px 0;
        }
        
        .schedule-box{
          background:#151515;
          border-radius:20px;
          overflow:hidden;
          border:1px solid #222;
        }
        
        .schedule table{
          width:100%;
          border-collapse:collapse;
        }
        
        .schedule th,
        .schedule td{
          padding:20px;
          text-align:center;
          border-bottom:1px solid #222;
        }
        
        .schedule th{
          background:#C71E23;
        }
        
        .schedule td{
          color:#ccc;
        }
        
        /* CTA */
        .cta{
          padding:100px 20px;
          text-align:center;
          background:linear-gradient(45deg,#C71E23,#7b2ff7);
        }
        
        .cta h2{
          font-size:50px;
          margin-bottom:20px;
        }
        
        .cta p{
          max-width:700px;
          margin:auto;
          font-size:20px;
          margin-bottom:35px;
        }
        
        /* Footer */
        footer{
          text-align:center;
          padding:25px;
          color:#aaa;
          border-top:1px solid #222;
        }
        
        /* Animations */
        @keyframes fadeUp{
          from{
            opacity:0;
            transform:translateY(50px);
          }
          to{
            opacity:1;
            transform:translateY(0);
          }
        }
        
        @keyframes zoomIn{
          from{
            opacity:0;
            transform:scale(0.8);
          }
          to{
            opacity:1;
            transform:scale(1);
          }
        }
        
        @keyframes floating{
          0%{
            transform:translateY(0);
          }
          50%{
            transform:translateY(-10px);
          }
          100%{
            transform:translateY(0);
          }
        }
        
        /* Responsive */
        @media(max-width:768px){
        
        .hero-content h1{
          font-size:45px;
        }
        
        .hero-content p{
          font-size:18px;
        }
        
        .section-title{
          font-size:35px;
        }
        
        .cta h2{
          font-size:35px;
        }
        
        .schedule{
          overflow-x:auto;
        }
        
        }
    
    /*Zumba page css end*/
    
    
    
    
    /*Yoga page css start*/
    
    img{
          width:100%;
          display:block;
        }
        
        .btn{
          display:inline-block;
          padding:15px 35px;
          background:#C71E23;
          color:#fff;
          border-radius:50px;
          text-decoration:none;
          font-size:18px;
          transition:0.4s ease;
          position:relative;
          overflow:hidden;
        }
        
        .btn:hover{
          transform:translateY(-5px);
          box-shadow:0 10px 30px rgba(199,30,35,0.4);
        }
        
        .btn::before{
          content:'';
          position:absolute;
          top:0;
          left:-100%;
          width:100%;
          height:100%;
          background:rgba(255,255,255,0.2);
          transition:0.5s;
        }
        
        .btn:hover::before{
          left:100%;
        }
        
        /* Hero Section */
        .hero{
          position:relative;
          height:100vh;
          display:flex;
          align-items:center;
          justify-content:center;
          text-align:center;
          overflow:hidden;
          background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
          url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?q=80&w=2070');
          background-size:cover;
          background-position:center;
        }
        
        .hero::after{
          content:'';
          position:absolute;
          width:450px;
          height:450px;
          background:rgba(199,30,35,0.18);
          filter:blur(100px);
          border-radius:50%;
          top:10%;
          right:10%;
          animation:floating 6s infinite ease-in-out;
        }
        
        .hero-content{
          position:relative;
          z-index:2;
          animation:fadeUp 1.2s ease;
        }
        
        .hero-content h1{
          font-size:70px;
          margin-bottom:20px;
        }
        
        .hero-content span{
          color:#C71E23;
        }
        
        .hero-content p{
          font-size:22px;
          max-width:750px;
          margin:auto;
          margin-bottom:35px;
          color:#ddd;
        }
        
        /* About Section */
        .about{
          padding:100px 0;
        }
        
        .about-wrapper{
          display:flex;
          gap:50px;
          align-items:center;
          flex-wrap:wrap;
        }
        
        .about-image,
        .about-content{
          flex:1;
          min-width:300px;
        }
        
        .about-image img{
          border-radius:20px;
          animation:zoomIn 1.3s ease;
        }
        
        .section-title{
          font-size:45px;
          margin-bottom:20px;
          color:#C71E23;
        }
        
        .about-content p{
          color:#ccc;
          font-size:18px;
        }
        
        /* Yoga Benefits */
        .benefits{
          padding:100px 0;
          background:#111;
        }
        
        .benefit-grid{
          display:grid;
          grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
          gap:30px;
          margin-top:50px;
        }
        
        .benefit-card{
          background:#1a1a1a;
          padding:35px;
          border-radius:20px;
          border:1px solid #222;
          transition:0.4s ease;
          animation:fadeUp 1s ease;
        }
        
        .benefit-card:hover{
          transform:translateY(-10px);
          box-shadow:0 15px 40px rgba(199,30,35,0.3);
          background:#202020;
        }
        
        .benefit-card h3{
          color:#C71E23;
          margin-bottom:15px;
          font-size:28px;
        }
        
        .benefit-card p{
          color:#ccc;
        }
        
        /* Yoga Programs */
        .programs{
          padding:100px 0;
        }
        
        .program-grid{
          display:grid;
          grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
          gap:30px;
          margin-top:50px;
        }
        
        .program-card{
          background:#151515;
          border-radius:20px;
          overflow:hidden;
          transition:0.4s ease;
          border:1px solid #222;
        }
        
        .program-card:hover{
          transform:translateY(-10px);
          box-shadow:0 15px 40px rgba(199,30,35,0.3);
        }
        
        .program-card img{
          height:250px;
          object-fit:cover;
        }
        
        .program-content{
          padding:25px;
        }
        
        .program-content h3{
          color:#C71E23;
          margin-bottom:12px;
          font-size:28px;
        }
        
        .program-content p{
          color:#ccc;
        }
        
        /* Schedule */
        .schedule{
          padding:100px 0;
          background:#111;
        }
        
        .schedule-box{
          background:#151515;
          border-radius:20px;
          overflow:hidden;
          border:1px solid #222;
        }
        
        .schedule table{
          width:100%;
          border-collapse:collapse;
        }
        
        .schedule th,
        .schedule td{
          padding:20px;
          text-align:center;
          border-bottom:1px solid #222;
        }
        
        .schedule th{
          background:#C71E23;
        }
        
        .schedule td{
          color:#ccc;
        }
        
        /* CTA */
        .cta{
          padding:100px 20px;
          text-align:center;
          background:linear-gradient(45deg,#C71E23,#7b2ff7);
        }
        
        .cta h2{
          font-size:50px;
          margin-bottom:20px;
        }
        
        .cta p{
          max-width:700px;
          margin:auto;
          font-size:20px;
          margin-bottom:35px;
        }
        
        /* Footer */
        footer{
          text-align:center;
          padding:25px;
          color:#aaa;
          border-top:1px solid #222;
        }
        
        /* Animations */
        @keyframes fadeUp{
          from{
            opacity:0;
            transform:translateY(50px);
          }
          to{
            opacity:1;
            transform:translateY(0);
          }
        }
        
        @keyframes zoomIn{
          from{
            opacity:0;
            transform:scale(0.8);
          }
          to{
            opacity:1;
            transform:scale(1);
          }
        }
        
        @keyframes floating{
          0%{
            transform:translateY(0);
          }
          50%{
            transform:translateY(-10px);
          }
          100%{
            transform:translateY(0);
          }
        }
        
        /* Responsive */
        @media(max-width:768px){
        
        .hero-content h1{
          font-size:45px;
        }
        
        .hero-content p{
          font-size:18px;
        }
        
        .section-title{
          font-size:35px;
        }
        
        .cta h2{
          font-size:35px;
        }
        
        .schedule{
          overflow-x:auto;
        }
        
        }
        
    
    /*Yoga page css end*/