section.pricing-section .head-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.pricing-info {
    background: var(--white-color);
    box-shadow: 1px 4px 10px 3px rgb(0 0 0 / 24%);
    border-radius: 25px;
    padding: 30px;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: scale(1);
    transform: scale(1);
    border-top:5px solid transparent;
}
.pricing-info:hover{
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
      border-color: var(--territiary-color);
      z-index: 2;
      position: relative;
}
.pricing-upper img{
      width: 50px;
    margin-bottom: 20px;
}
.pricing-upper h4{
  font-size: 22px;
}
.price {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}
.price h2{
     font-size: 35px;
     margin-bottom: 0;
}
.pricing-btn .main-btn{
  width:100%;
 font-size:22px;
}
.pricing-btn .main-btn:hover .icon-container {
    transform: translateX(390%);
}
.pricing-btn .main-btn:hover::after {
    transform: translateX(82%);
}
.pricing-features {
    margin-top: 30px;
}
.pricing-features p.features{
      font-weight: bold;
    font-size: 20px;
  margin-bottom: 10px;
}
.pricing-features li{
      display: flex;
    align-items: flex-start;
    gap: 10px;
  margin-bottom:10px;
}
.pricing-features li i.fa-solid.fa-check {
    background: var(--territiary-color);
    color: var(--white-color);
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.pricing-features li .question-mark{
    background: #e7e3e3;
    width: 20px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
}
.pricing-features li .question-mark i.fa-solid.fa-question{
 font-size: 12px;
}
.pricing-features li .question-mark:hover .question-info {
display:block;
}
.pricing-features li .question-mark .question-info {
    position: absolute;
    width: 195px;
    background: var(--black-color);
    color: #fff;
    border-radius: 20px;
    padding: 20px 15px;
    left: 26px;
    z-index: 2;
    display: none;
}
.pricing-features li .question-mark .question-info p{
 color:#fff;
 font-size: 13px;
 line-height: 1.6;
 margin-bottom: 10px;
}


  /* ================= PRICING SECTION STYLES ================= */
        .pricing-section {
            background: linear-gradient(180deg, #fff2f7, #ffeaf3);
            padding: 5rem 0;
        }

        .pricing-section .pricing-title {
            font-size: 42px;
            font-weight: 700;
            color: #c22ba3;
            margin-bottom: 1rem;
        }

        .pricing-section .pricing-subtitle {
            color: #444;
            max-width: 600px;
            margin: 0 auto 2rem;
            font-weight: 500;
        }

        .pricing-section .plan-tabs {
            margin-bottom: 3rem;
        }

        .pricing-section .plan-tabs .nav-link {
            color: #333;
            padding: 10px 28px;
            border-radius: 30px;
            margin: 0 6px;
            font-weight: 600;
            border: 2px solid transparent;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            background-color: transparent;
        }

        .pricing-section .plan-tabs .nav-link:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(255, 138, 0, 0.35);
        }

        .pricing-section .plan-tabs .nav-link.active:hover {
            transform: scale(1);
            box-shadow: none;
        }

        .pricing-section .bronze-border-btn {
            border-color: #BA4C00 !important;
        }

        .pricing-section .silver-border-btn {
            border-color: #C9CCD6 !important;
        }

        .pricing-section .gold-border-btn {
            border-color: #C9982D !important;
        }

        .pricing-section .tab-content {
            position: relative;
        }

        .pricing-section .tab-pane {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.5s ease;
        }

        .pricing-section .tab-pane.active {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-section .pricing-card {
            border-radius: 25px;
            padding: 40px;
            background: #fff;
            max-width: 1100px;
            margin: 0 auto;
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
            animation: floatCard 3s ease-in-out infinite;
        }

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

        .pricing-section .bronze-border {
            border: 3px solid #BA4C00;
        }

        .pricing-section .silver-border {
            border: 3px solid #C9CCD6;
        }

        .pricing-section .gold-border {
            border: 3px solid #C9982D;
        }

        .pricing-section .badge-plan {
            color: #fff;
            padding: 9px 22px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
        }

        .pricing-section .bronze-bg {
            background: linear-gradient(90deg, #BA4C00 0%, #9F2D00 100%);
        }

        .pricing-section .silver-bg {
            background: linear-gradient(90deg, #C9CCD6 0%, #9EA3AE 100%);
        }

        .pricing-section .gold-bg {
            background: linear-gradient(90deg, #E6B65C 0%, #C9982D 100%);
        }

        .pricing-section .price {
            font-size: 56px;
            font-weight: 700;
            margin: 15px 0;
            letter-spacing: 5px;
            color: #1e2939;
        }

        .pricing-section .price-desc {
            color: #555;
            margin-bottom: 2rem;
        }

        .pricing-section h6 {
            color: #1e2939;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-section .feature-list {
            list-style: none;
            padding: 0;
        }

        .pricing-section .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
        }

        .pricing-section .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #b54700;
            font-weight: bold;
        }

        .pricing-section .get-started-btn {
            color: #fff;
            padding: 14px 40px;
            border-radius: 10px;
            font-weight: 600;
            display: inline-block;
            border: none;
            transition: opacity 0.3s ease;
        }

        .pricing-section .get-started-btn:hover {
            opacity: 0.9;
        }

        .pricing-section .small-text {
            color: #555;
            text-align: center;
            margin-top: 2rem;
        }

        .pricing-section .small-text a {
            color: #ff8a00;
            text-decoration: none;
            font-weight: 600;
        }

        .pricing-section .small-text a:hover {
            text-decoration: underline;
        }





