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;
}

/******* banner start*******/
.banner {
    background-image: url(../images/all_pl.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 450px;

}

.banner::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #16006e;
    background: linear-gradient(303deg, rgba(133, 132, 132, 0.383) 59%, #000000d1 88%);
}

.banner .container {
    position: relative;
    z-index: 1;
    /* display: flex;
  justify-content: center;
  align-items: center; */
}

.banner .allPHEAD h1 {
    color: #fff;
    padding-top: 300px;
    font-size: 50px;
    font-weight: bold;

}

.bn-outer {
    padding-top: 200px;
}

.bn-outer h1 {
    color: #fff;
        font-size: 35px;
    font-weight: bold;
    font-family: "Montserrat", Sans-serif;
}

/******* banner start*******/
/******* alplans start ******/
.all-plan {
    padding: 50px 0px 100px 0px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-image: url(../images/procing-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.all-plan::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f3f3f3ae;
    
}

.all-plan .container{
    position: relative;
    z-index: 10;
}
.all-plan .all-head h2{
        color: #001135;
    font-size: 35px;
    font-weight: bold;
    font-family: "Montserrat", Sans-serif;
padding: 10px 0;
}
.all-plan .all-head p{
        color: #DA7500;
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", Sans-serif;
}
.all-plan .pricing-header {
    text-align: center;
    max-height: 80px;
    min-height: 60px;
}


.all-plan .pricing-header h3 {
    color: #352000;
    font-size: 25px;
    font-weight: bold;
    font-family: "Montserrat", Sans-serif;
}
.all-plan .start-price p{
    color: #000;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 8px;
        font-family: "Montserrat", Sans-serif;
}
.all-plan .cut-price p{
    color: red;
        font-weight: 600;
    font-size: 20px;
    padding-bottom: 8px;
    text-decoration: line-through;
        font-family: "Montserrat", Sans-serif;
}
.all-plan .main-price p{
    color: rgb(181, 145, 1);
        font-weight: 600;
    font-size: 25px;
 padding: 9px 0;

        font-family: "Montserrat", Sans-serif;
}
.all-plan .plan-details{
    max-height: 130px;
    min-height: 100px;
    padding: 20px 0px 10px 0px;
}
.all-plan .plan-details li{
          font-family: "Montserrat", Sans-serif;
          font-size: 18px; 
           font-weight: 500;
}
.all-plan .card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;

    margin-top: 65px;
}




.all-plan .card {
    background: white;
    border-radius: 20px;
    width: 100%;
    height: 450px;
    padding: 45px 30px 35px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.all-plan .card.basic {
    --accent-color: #00bcd4;
    --accent-light: #80deea;
    --accent-dark: #0097a7;
}

.all-plan .card.advanced {
    --accent-color: #e91e63;
    --accent-light: #f48fb1;
    --accent-dark: #c2185b;
    /* transform: translateY(-25px); */
}



.all-plan .card.pro {
    --accent-color: #ff9800;
    --accent-light: #ffb74d;
    --accent-dark: #f57c00;
}

.all-plan .card::before {
    width: 90%;
    margin: auto;
    z-index: -1;
    content: '';
    position: absolute;
    top: -21px;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 20px 20px 0 0;
}

.all-plan .card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.all-plan .card:hover::after {
    opacity: 0.3;
}
.all-plan .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.all-plan .card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.all-plan .icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.all-plan .icon {
    font-size: 36px;
    color: white;
    z-index: 1;
}

.all-plan .pr_bt {
    width: 85%;
}

.all-plan .pricing-btn {
    width: 100%;
    height: 60px;
    border: none;
    padding: 20px 0;
    border-radius: 0 0 20px 20px;
    font-size: 13px;
    font-weight: bold;
    
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    bottom: 10px;
    z-index:-1;
    overflow: hidden;
}

.all-plan .pricing-btn::before {
    content: '';
    position: absolute;
    z-index: 10;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.all-plan .pricing-btn:hover::before {
    left: 100%;
    z-index: 10;
}

.all-plan .pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.all-plan .pricing-btn:active {
    transform: translateY(-1px);
}

.all-plan .card-wrapper.basic .pricing-btn {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.all-plan .card-wrapper.advanced .pricing-btn {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.all-plan .card-wrapper.pro .pricing-btn {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

@media (max-width: 768px) {


   .all-plan .card.advanced:hover {
        transform: translateY(-10px) scale(1.02);
    }

   .all-plan .pricing-header h1 {
        font-size: 36px;
    }

  .all-plan .pricing-header p {
        font-size: 16px;
    }
}

/******* plans end ******/