body {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}
.plan-icon img{
width: 100%;
}
.plan-icon{
width: 30%;
margin: auto;
}
.bg-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 1s ease; /* Smooth fade */
}
.bg-video.hidden {
  opacity: 0;
  visibility: hidden;
}
/******* banner start*******/
.allplan-banner {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.allplan-banner::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000015;
}
.allplan-banner .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* place behind content */
}
.allplan-banner h2{
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    margin-top: 123px;
	animation: slideIn 2s ease-out forwards;
    transform: translateX(-100%);
    opacity: 0;
}

@keyframes slideIn 
{
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}


    

@media (min-width:600px) and (max-width:990px) {
    .allplan-box .plan-icon {
        width: 15%;
        margin: auto;
    }
}
.allplan-banner h6{
        color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    padding: 5px 0;
}
/******* banner start*******/

/******* allplan-body start*******/
.allplan-body{
    padding: 50px 0;
    background-image: url(../images/allplan-bgg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.allplan-box{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 15px;
    text-align: center;
    padding: 15px 20px;
    margin: 20px 0;
	max-height: 440px;
    min-height: 420px;
	
	transition: all 8s;
}

.allplan-box:hover{
    border: 1px solid #69aee6;
    box-shadow: rgba(158, 188, 243, 0.25) 0px 30px 60px -12px inset, rgba(121, 150, 187, 0.3) 0px 18px 36px -18px inset; 
      
}
 
.allplan-box .plan-name{
    max-height: 90px;
    min-height: 80px;
}
.allplan-box .plan-name p{
    font-weight: bold;
    text-transform: capitalize;
    font-size: 22px;
    padding: 10px 0;
}
.allplan-box .plan-icon{
    max-height: 70px;
    min-height: 50px;
    padding: 20px 0;
}
.allplan-box .plan-details{
    max-height:240px;
    min-height: 210px;
    padding: 40px 0px 0px 0px;
}
.allplan-box .plan-details p{
    font-size: 15px;
    line-height: 1.4;
    color: #464545;
}
.allplan-box .allplan-btn{
    background-color: #0075ff;
    border-radius: 10px;
    padding: 8px 12px;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
	transition: all 0.2s ease;
  	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.allplan-box .allplan-btn:hover{
    transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/******* allplan-body end*******/