*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}
.top-bar{
  width:100%;
  background:#7a0045;
  color:#fff;
  padding:10px 30px;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:20px;
  overflow:hidden;
}

.top-left,
.top-right{
  white-space:nowrap;
  font-weight:500;
}

/* marquee area */
.marquee{
  flex:1;
  overflow:hidden;
  white-space:nowrap;
  text-align:center;
  position:relative;
}

/* single span animation */
.marquee-text{
  display:inline-block;
  padding-left:100%;
  animation: marquee 8s linear infinite;
}

@keyframes marquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.top-bar i{
  margin-right:6px;
  color:#ffd54f;
}

/* ===== NAVBAR ===== */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 60px;
    background:#f4f4f4;
}

/* LOGO IMAGE */
.navbar .logo img{
    height:auto;        /* logo height */
    width:6rem;
    object-fit:contain;
}

/* LINKS */
.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-links li a:hover{
    color:#7a0045;
}

/* ===== MOBILE MENU ===== */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .navbar{
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:200px;
        left:0;
        width:100%;
        background:#f4f4f4;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;   /* hidden by default */
    }

    .nav-links.active{
        display:flex;
    }
}
/* tps://images.unsplash.com/photo-1515169067865-5387ec356754?q=80&w=2070') no-repeat center center/cover; 
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    top:0;
    left:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.hero button{
    background:#7a0045;
    border:none;
    padding:12px 25px;
    color:#fff;
    font-size:16px;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}

.hero button:hover{
    background:#a1005c;
} */








/* ===== HERO ===== */
.hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}

/* Big background slider */
.hero .heroSwiper{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero .heroSwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Dark overlay */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:2;
}

/* Hero text */
.hero .hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
    z-index:4;
}

.hero .hero-content h1{
    font-size:60px;
    margin-bottom:20px;
    margin-top: 100px;
}

.hero .hero-content button{
    padding:12px 35px;
    border:none;
    border-radius:30px;
    background:linear-gradient(45deg,#ff4d6d,#ff7a18,#f9d423);
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

/* ===== TOP FLOATING SLIDER ===== */
.hero .topSwiper{
    position:absolute;
    top:5px;
    left:50%;
    transform:translateX(-50%);
    width:75%;
    height:230px;
    z-index:5;
}

.hero .topSwiper .swiper-slide{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.hero .topSwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Responsive */
@media(max-width:768px){
    .hero .hero-content h1{
        font-size:32px;
    }
    .hero .topSwiper{
        height:160px;
    }
}











/* ===== RESPONSIVE ===== */
@media(max-width:768px){

.top-bar{
    flex-direction:column;
    text-align:center;
    gap:5px;
    padding:10px;
}

.navbar{
    padding:15px 20px;
}

.nav-links{
    position:absolute;
    top:170px;
    right:0;
    background:#fff;
    flex-direction:column;
    width:100%;
    text-align:center;
    display:none;
    padding:20px 0;
    z-index: 10;
}

.nav-links.active{
    display:flex;
}

.menu-toggle{
    display:block;
}

}

/* ===== ABOUT SECTION ===== */
/* ============ ABOUT SECTION ============ */

.about-section{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    padding:100px 100px;
    background:#f9f9f9;
    flex-wrap:wrap;
    gap:40px;
}

.about-left{
    flex:1;
    min-width:300px;
    animation:fadeUp 1s ease;
}

.welcome-text{
    color:#7a0045;
    font-weight:600;
    margin-bottom:12px;
    letter-spacing:1px;
}

.about-left h2{
    font-size:44px;
    margin-bottom:22px;
    color:#222;
    line-height:1.2;
}

.about-left h2 span{
    color:#7a0045;
}

.about-desc{
    color:#555;
    line-height:1.8;
    margin-bottom:9px;
    max-width:520px;
}

.about-btn{
    background:linear-gradient(45deg,#7a0045,#a1005c);
    color:#fff;
    border:none;
    padding:13px 32px;
    border-radius:30px;
    cursor:pointer;
    transition:0.4s;
    font-size:14px;
}

.about-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.about-section{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding:100px;
  background:#f9f9f9;
  gap:60px;
  flex-wrap:wrap;
}

.about-left{ flex:1; }

.about-right{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:30px;
}

/* BACKGROUND IMAGE CARD */
.profile-card1{
  width:88%;
  height:460px;
  border-radius:25px;
  background:url("../img/bjpPatle.png") center/cover;
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
  overflow:hidden;
}

.profile-card{
  width:88%;
  height:460px;
  border-radius:25px;
  background: url("../img/bjpPatle.png") center/contain no-repeat;
  background-color:#000;   /* optional */
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
  overflow:hidden;
}



.profile-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.75),rgba(0,0,0,0.2));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  padding-bottom:30px;
  color:#fff;
  text-align:center;
}

/* CIRCLE IMAGE */
.profile-img{
  width:120px;
  height:120px;
  border-radius:50%;
  overflow:hidden;
  border:5px solid #fff;
  margin-bottom:15px;
}

.profile-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile-overlay h4{
  font-size:18px;
  margin-bottom:6px;
}

.profile-overlay p{
  font-size:13px;
  opacity:0.9;
}

/* EXPERIENCE CARD */
.experience-card{
  width:360px;
  background:linear-gradient(135deg,#ffffff,#f1eef6);
  padding:25px;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  animation:floatCard 4s ease-in-out infinite;
}

.experience-card h4{
  text-align:center;
  color:#7a0045;
  margin-bottom:15px;
}

.scroll-box{
  height:120px;
  overflow:hidden;
}

.scroll-box:hover ul{
  animation-play-state: paused;
}

.scroll-box ul{
  list-style:none;
  padding:0;
  animation:scrollUp 10s linear infinite;
}

.scroll-box li{
  padding:10px 0;
  text-align:center;
  color:#444;
}

@keyframes scrollUp{
  0%{ transform:translateY(100%); }
  100%{ transform:translateY(-100%); }
}

@keyframes floatCard{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-section{
    flex-direction:column;
    padding:60px 20px;
    text-align:center;
  }

  .profile-card,
  .experience-card{
    width:100%;
    max-width:340px;
  }
}
/* ===== DANCE HIGHLIGHT SECTION ===== */

.dance-highlights{
    padding:80px 60px;
    background:#fff;
    text-align:center;
}

.section-title{
    font-size:32px;
    margin-bottom:10px;
    background:linear-gradient(to right, #7a0045, #d4145a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-subtitle{
    color:#666;
    margin-bottom:50px;
}

/* 4 CARD IN ONE LINE */
.highlight-row{
    display:flex;
    justify-content:space-between;
    gap:25px;
}

/* CARD DESIGN */
.highlight-card{
    flex:1;
    background:linear-gradient(135deg, #7a0045, #a0005c);
    color:white;
    padding:35px 25px;
    border-radius:15px;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.highlight-card h4{
    margin-bottom:15px;
    font-size:18px;
}

.highlight-card p{
    font-size:14px;
    opacity:0.9;
}

/* Hover Effect */
.highlight-card:hover{
    transform:translateY(-10px);
    background:linear-gradient(135deg, #a0005c, #d4145a);
}

/* ===== MOBILE VIEW ===== */

@media(max-width:992px){

.highlight-row{
    flex-direction:column;
}

.highlight-card{
    margin-bottom:20px;
}

}



/* ===== DANCE ACHIEVEMENTS ===== */

/* ===== PHOTO ONLY GALLERY ===== */

.dance-gallery{
    padding:80px 60px;
    background:#f9f9f9;
    text-align:center;
}

.gallery-title{
    font-size:32px;
    margin-bottom:50px;
    background:linear-gradient(to right, #7a0045, #d4145a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* 4 photos in one line */
.gallery-row{
    display:flex;
    gap:25px;
    justify-content:space-between;
}

.gallery-card{
    flex:1;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    position:relative;
    transition:0.4s ease;
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.6s ease;
}

/* Overlay content */
.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(122,0,69,0.2),
        rgba(122,0,69,0.8)
    );
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
    text-align:center;
}

.gallery-overlay h4{
    font-size:18px;
    margin-bottom:6px;
    letter-spacing:1px;
}

.gallery-overlay p{
    font-size:13px;
}

/* Hover effects */
.gallery-card:hover img{
    transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

/* MOBILE */
@media(max-width:992px){

.gallery-row{
    flex-direction:column;
}

.gallery-card{
    margin-bottom:25px;
}

.gallery-card img{
    height:220px;
}

}





*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

.form-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1508700115892-45ecd05ae2ad?q=80&w=1974') center/cover no-repeat;
    padding:20px;
}

.form-box{
    background:#111;
    width:100%;
    max-width:420px;
    padding:40px 30px;
    border-radius:10px;
    box-shadow:0 0 25px rgba(255,0,128,0.4);
}

.form-box h2{
    text-align:center;
    color:#ff2e8b;
    margin-bottom:8px;
}

.form-box p{
    text-align:center;
    color:#aaa;
    margin-bottom:25px;
    font-size:14px;
}

.form-group{
    margin-bottom:18px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:10px;
    background:transparent;
    border:none;
    border-bottom:1px solid #555;
    color:#fff;
    outline:none;
    font-size:14px;
}

.form-group textarea{
    height:70px;
    resize:none;
}

.submit-btn{
    width:100%;
    padding:12px;
    border:none;
    background:#ff2e8b;
    color:#fff;
    font-size:15px;
    border-radius:25px;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#ff5cad;
}

.radio-group{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-top:8px;
}
.radio-group input{
        width: auto;

}
.radio-group label{
    color:#fff;
    font-size:14px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
}

.radio-group input[type="radio"]{
    accent-color:#ff2e8b; /* modern browsers */
}

@media(max-width:480px){
    .form-box{
        padding:30px 20px;
    }
}

.footer{
  background:#f5f5f5;
  padding:60px 8% 30px;
  color:#222;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

.footer-col h2,
.footer-col h3{
  color:#7a003c;
  margin-bottom:18px;
}

.footer-col p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:10px;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  text-decoration:none;
  color:#333;
  font-size:15px;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#7a003c;
  padding-left:5px;
}

.social-icons{
  margin-top:15px;
}

.social-icons a{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:40px;
  height:40px;
  margin-right:10px;
  background:#7a003c;
  color:#fff;
  border-radius:50%;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:#b30059;
}

.footer-bottom{
  border-top:1px solid #ccc;
  margin-top:50px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.footer-bottom p{
  font-size:14px;
}

.bottom-links a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
  font-size:14px;
  transition:0.3s;
}

.bottom-links a:hover{
  color:#7a003c;
}

/* Tablet View */
@media(max-width:992px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile View */
@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

  .bottom-links a{
    margin:0 10px;
  }

  .social-icons a{
    margin:5px;
  }
}















@media (max-width : 768px) {
    .dance-gallery{
        padding: 1rem;
    }
    .dance-sponsor-section{
                padding: 1rem;

    }

    .dance-highlights{
        padding: 3rem 1rem;
    }
}


















.watch-now-btn {
  position: fixed;      /* 👈 ye fixed rakhta hai */
  right: 25px;         /* right side */
  top: 50%;            /* middle */
  transform: translateY(-50%);
  background: linear-gradient(45deg, #ff0000, #ff4d4d);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99999;      /* sabke upar rahe */
  box-shadow: 0 10px 25px rgba(255,0,0,0.4);
  transition: 0.3s;
  animation: pulse 1.5s infinite;
}

.watch-now-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}




/* ===== COMMON SECTION STYLE ===== */
.section{
  padding:80px 60px;
  background:#fff;
}

.section h2{
  text-align:center;
  font-size:44px;
  margin-bottom:50px;
  background:linear-gradient(45deg,#7a0045,#d4145a,#ff7a18);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:800;
  letter-spacing:2px;
}

/* ===== GALLERY ===== */
.gallerySwiper .swiper-slide{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.gallerySwiper img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:0.5s;
}

.gallerySwiper img:hover{
  transform:scale(1.1);
}

/* ===== TEACHERS ===== */
.teacher-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:0.4s;
}

.teacher-card:hover{
  transform:translateY(-10px);
}

.teacher-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}
/* ===== FORCE STYLE SWIPER ARROWS ===== */
.swiper-button-next::after,
.swiper-button-prev::after{
  font-size:18px;   /* arrow icon size */
  font-weight:bold;
}

/* Circle buttons */
.swiper-button-next,
.swiper-button-prev{
  color:#7a0045 !important;
  background:#fff !important;
  width:50px !important;
  height:50px !important;
  border-radius:50% !important;
  box-shadow:0 8px 25px rgba(0,0,0,0.25) !important;
  transition:0.3s;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover{
  background:linear-gradient(45deg,#7a0045,#d4145a) !important;
  color:#fff !important;
}
.teacher-card h3{
  margin:15px 0 5px;
  font-size:20px;
}

.teacher-card p{
  margin-bottom:15px;
  background:linear-gradient(45deg,#7a0045,#d4145a);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:700;
}

/* ===== SWIPER BUTTON STYLE ===== */
.swiper-button-next,
.swiper-button-prev{
  color:#7a0045;
  background:#fff;
  width:48px;
  height:48px;
  border-radius:50%;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
  background:linear-gradient(45deg,#7a0045,#d4145a);
  color:#fff;
}

/* Responsive */
@media(max-width:768px){
  .section{
    padding:60px 20px;
  }
  .section h2{
    font-size:28px;
  }
}








/* testimonial */




/* SECTION */
.testimonial-section{
  padding:20px 60px;
  text-align:center;
}

/* TITLE */
.testimonial-section h2{
  font-size:40px;
  font-weight:700;
}
.testimonial-section h2 span{
  background: linear-gradient(to right, #7a0045, #d4145a);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.testimonial-section p{
  margin-top:10px;
  color:#777;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6;
}

/* SWIPER */
.testimonial-section .testimonialSwiper{
  margin-top:60px;
  padding:20px 0 60px;
}

/* CARD */
.testimonial-section .card{
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  text-align:left;
}

.testimonial-section .card h4{
  color:#888;
  font-weight:500;
  margin-bottom:25px;
}

/* PROFILE */
.testimonial-section .profile{
  display:flex;
  align-items:center;
  gap:15px;
}

.testimonial-section .profile img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

.testimonial-section .profile h3{
  font-size:20px;
  color:#002244;
}

/* NAV BUTTONS */
.testimonial-section .testimonialSwiper .swiper-button-next,
.testimonial-section .testimonialSwiper .swiper-button-prev{
  width:45px;
  height:45px;
  background:#c48ba3;
  border-radius:50%;
  color:#fff;
}

.testimonial-section .testimonialSwiper .swiper-button-next:after,
.testimonial-section .testimonialSwiper .swiper-button-prev:after{
  font-size:16px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .testimonial-section{
    padding:60px 20px;
  }
}

























.stage-section{
  padding:10px 20px;
  display:flex;
  justify-content:center;
}

.stage-box{
  max-width:900px;
  text-align:center;
  background:#ffffff;
  padding:70px 50px;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
  animation:fadeUp 1s ease;
}

.stage-box h2{
  font-size:42px;
  margin-bottom:30px;
  background:linear-gradient(45deg,#ff4d6d,#ff7a18,#f9d423);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.stage-box h3{
  font-size:26px;
  margin:25px 0;
  color:#7a0045;
}

.stage-box p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:8px;
  color:#444;
}

.stage-box .gap{
  margin:20px 0;
  font-style:italic;
}

.stage-box .highlight{
  color:#ff4d6d;
  font-weight:600;
  margin-top:20px;
}

.stage-box .final{
  margin-top:30px;
  font-size:18px;
}

.stage-btn{
  margin-top:35px;
  padding:14px 40px;
  border:none;
  border-radius:30px;
  background:linear-gradient(45deg,#ff4d6d,#ff7a18,#f9d423);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.4s;
}

.stage-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* responsive */
@media(max-width:768px){
  .stage-box{
    padding:40px 20px;
  }
  .stage-box h2{ font-size:28px; }
  .stage-box p{ font-size:15px; }
}




.vision-mission-section{
  background:#fff;
  padding:100px 20px;
  display:flex;
  justify-content:center;
}

.vm-container{
  max-width:900px;
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.vm-card{
  background:#ffffff;
  padding:40px 35px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.4s;
}

.vm-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.vm-card h2{
  font-size:28px;
  margin-bottom:20px;
  color:#7a0045;
  display:flex;
  align-items:center;
  gap:12px;
}

.vm-card h2 i{
  color:#ff4d6d;
}

.vm-card p{
  font-size:17px;
  line-height:1.8;
  color:#444;
}

.vm-card ul{
  list-style:none;
  padding:0;
}

.vm-card li{
  font-size:16px;
  margin-bottom:12px;
  color:#444;
  display:flex;
  align-items:center;
  gap:10px;
}

.vm-card li i{
  color:#ff7a18;
  min-width:20px;
}

/* responsive */
@media(max-width:768px){
  .vm-container{
    grid-template-columns:1fr;
  }
}