
/* Pricing css */

section.pricing_section {
    padding: 40px 0px;
}

.top-sec {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.pricing-content {
    padding: 50px 20px 20px 34px;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-left {
    background: #fafafa;
    padding: 30px;
    border-right: 1px solid #eee;
    text-align: center;
}

.plan-label {
    background: linear-gradient(126deg, #2872d1, #35dbb7);
    color: #fff;
    padding: 6px 24px;
    border-radius: 82px 9px 11px 90px;
    font-size: 17px;
    display: inline-block;
    margin-bottom: 10px;
}

.course-name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.course-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.pricing-right {
    padding: 30px;
    max-height: 250px;
    overflow-y: auto;
}

.pricing-right h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-right p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-right::-webkit-scrollbar {
    width: 8px;
}

.pricing-right::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pricing-right::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.pricing-right::-webkit-scrollbar-thumb:hover {
    background: #501019;
}

.list_item li::before{
    content: "›";
    color: #006efe;
    font-weight: bold;
    margin-right: 8px;
    font-size: 26px;
}

.hover-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

h5.top_title.aos-init.aos-animate {
    font-size: 21px;
    font-weight: 600;
}

.top-sec h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 7px auto;
    letter-spacing: 2px;
}

.pricing-card {
    position: relative;
    background: #e7d8d80a;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease;
    clip-path: polygon(8% 0, 100% 0%, 100% 100%, 0 99%, 0 15%);
    z-index: 0;
    border-right: 10px solid #00000021;
    border-bottom: 10px solid #00000021;
}

.pricing-card:before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 11px;
    background-color: #fff;
    clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 99%, 0 33%);
    z-index: -1;
}

.hover-logo {
    position: absolute;
    top: 17%;
    left: 12%;
    width: 92px;
    height: 92px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.pricing-card:hover .hover-logo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.course-details {
    height: 260px;
    overflow-x: hidden;
    margin: 20px 0 30px;
    padding-right: 10px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-right: 7px solid linear-gradient(#011230, #1071b6);
    border-right: 10px solid #2872d1;
    border-bottom: 10px solid #2872d1;
}

.tag {
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

h3.list_heading {
    font-size: 17px;
    font-weight: 700;
    color: #0a58ca;
}

.bottom_sec {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.info-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    font-family: "Poppins", sans-serif;
}

.info-box {
    text-align: left;
}

.info-box h6 {
    color: #1071b6;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.info-box p {
    color: #000;
    font-size: 14px;
    margin-bottom: 6px;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0066ff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.info-link i {
    color: #0066ff;
}

.divider {
    height: 45px;
    width: 1px;
    background: #d1d1d1;
}

.counter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 46px;
    padding: 60px 20px;
    flex-wrap: wrap;
    font-family: "Poppins", sans-serif;
    background-image: url(/images/bg_sec.png);
}


.counter-box {
    position: relative;
    background: #fff;
    border-radius: 40px;
    padding: 50px 30px 30px;
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-8px);
}

ul li {
    list-style-type: none;
}

.icon-box {
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(126deg, #2872d1, #35dbb7);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.counter-box:hover .icon-box {
    transform: translateX(-50%) rotateY(180deg);
}

.counter-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 15px;
    color: #000;
}

.counter-box p {
    font-size: 15px;
    color: #000000;
    margin-top: 4px;
}

.counter-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    right: 30px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #35dbb7);
    border-radius: 3px;
}

.icon-box img {
    width: 56px;
    height: 54px;
}

@media (max-width: 767px) {
    .pricing-left {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .pricing-right {
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 479px) {
    .counter-section{
        padding: 30px 0;
    }

    .counter-box{
        width: 300px;
    }
    .info-section{
        flex-direction: column;
    }
    .divider{
        display: none;
    }
}