.premium-offer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-offer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(25, 105, 255, 0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 0;
}

.premium-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.premium-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(90deg, #0061ff 0%, #60efff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 30px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.deco-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 97, 255, 0.5), transparent);
}

.deco-diamond {
    width: 12px;
    height: 12px;
    background: #0061ff;
    transform: rotate(45deg);
    margin: 0 15px;
}

.premium-feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.premium-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.03) 0%, rgba(96, 239, 255, 0.01) 100%);
    z-index: 0;
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 97, 255, 0.08);
    border-color: rgba(0, 97, 255, 0.1);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.1) 0%, rgba(96, 239, 255, 0.05) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.premium-feature-card:hover .icon-bg-shape {
    transform: rotate(0deg);
    border-radius: 25px;
}

.feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    object-fit: contain;
    z-index: 2;
}

.premium-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
    position: relative;
    z-index: 1;
    text-align: center;
}

.premium-feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-align: center;
}

.feature-hover-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    overflow: hidden;
}

.hover-line {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0061ff 0%, #60efff 100%);
    transition: all 0.6s ease;
}

.hover-dot {
    position: absolute;
    bottom: -5px;
    right: -10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0061ff;
    transition: all 0.6s ease;
    opacity: 0;
}

.premium-feature-card:hover .hover-line {
    left: 0;
}

.premium-feature-card:hover .hover-dot {
    right: 0;
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .premium-feature-card {
        padding: 35px 25px;
    }
}

@media (max-width: 991px) {
    .premium-offer-section {
        padding: 80px 0;
    }
    
    .premium-header h2 {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .premium-offer-section {
        padding: 60px 0;
    }
    
    .premium-header h2 {
        font-size: 2rem;
    }
    
    .deco-line {
        width: 50px;
    }
    
    .premium-feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 575px) {
    .premium-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .premium-feature-card h3 {
        font-size: 1.3rem;
    }
    
    .premium-feature-card p {
        font-size: 0.9rem;
    }
}

.premium-counter-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
    position: relative;
    margin-top: -90px;
    overflow: hidden;
}
.premium-counter {
  display: inline-flex;
  align-items: flex-end;
}
.counter-suffix {
  font-size: 0.8em;
  margin-left: 3px;
  color: inherit;
  line-height: 1;
}
.premium-counter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0, 97, 255, 0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 0;
}

.premium-counter-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 97, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1;
    height: 100%;
    border: 1px solid rgba(0, 97, 255, 0.05);
}

.premium-counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 97, 255, 0.12);
}

.counter-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.icon-pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(0.95); opacity: 1; }
}

.counter-content span {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.counter-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 500;
}

.counter-wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0061ff 0%, #60efff 100%);
    transition: all 0.4s ease;
}

.premium-counter-card:hover .counter-wave-decoration {
    height: 6px;
}

/* Custom Color Schemes for Each Counter */
.client-counter .icon-pulse-effect {
    background: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
}

.plans-counter .icon-pulse-effect {
    background: linear-gradient(135deg, #ff7b00 0%, #ffcc00 100%);
}

.transaction-counter .icon-pulse-effect {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.payment-counter .icon-pulse-effect {
    background: linear-gradient(135deg, #bb0852 0%, #ff6b8b 100%);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .premium-counter-card {
        padding: 35px 25px;
    }
    
    .counter-content span {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .premium-counter-section {
        padding: 80px 0;
    }
    
    .counter-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .counter-icon-wrapper i {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .premium-counter-section {
        padding: 60px 0;
    }
    
    .premium-counter-card {
        padding: 30px 20px;
    }
    
    .counter-content span {
        font-size: 2.2rem;
    }
    
    .counter-content p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .premium-counter-card {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .counter-content span {
        font-size: 2rem;
    }
}

.premium-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.premium-features-header {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(90deg, #0061ff 0%, #60efff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.deco-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 97, 255, 0.5), transparent);
}

.deco-diamond {
    width: 12px;
    height: 12px;
    background: #0061ff;
    transform: rotate(45deg);
    margin: 0 15px;
}

.feature-image-wrapper {
    position: relative;
    padding: 20px;
}

.feature-image {
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 97, 255, 0.08);
    position: relative;
    z-index: 2;
}

.image-shape-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.1) 0%, rgba(96, 239, 255, 0.05) 100%);
    border-radius: 20px;
    transform: rotate(-2deg);
    z-index: 1;
}

.premium-features-grid {
    padding-left: 20px;
}

.premium-feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(0, 97, 255, 0.05);
}

.premium-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 97, 255, 0.1);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.1) 0%, rgba(96, 239, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.premium-feature-card:hover .feature-icon-box {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.2) 0%, rgba(96, 239, 255, 0.1) 100%);
}

.feature-icon-box i {
    font-size: 1.8rem;
    color: #0061ff;
}

.premium-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #212529;
}

.premium-feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .premium-feature-card {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .premium-features-section {
        padding: 80px 0;
    }
    
    .gradient-text {
        font-size: 2.4rem;
    }
    
    .feature-image-wrapper {
        margin-bottom: 40px;
        padding: 0;
    }
    
    .premium-features-grid {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .premium-features-section {
        padding: 60px 0;
    }
    
    .gradient-text {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .premium-feature-card {
        padding: 20px;
    }
    
    .feature-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon-box i {
        font-size: 1.5rem;
    }
    
    .premium-feature-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .gradient-text {
        font-size: 1.8rem;
    }
    
    .premium-feature-card {
        margin-bottom: 15px;
    }
}

/* Premium Services Section Styles */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    z-index: 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #5a6f90;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #4a6cf7 0%, #a34cfd 100%);
    margin: 0 auto;
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    perspective: 1000px;
    height: 280px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #4a6cf7 0%, #a34cfd 100%);
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
}

.blue-gradient {
    background: linear-gradient(135deg, #4a6cf7 0%, #6a8eff 100%);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

.orange-gradient {
    background: linear-gradient(135deg, #ff7b4e 0%, #ffa64d 100%);
    box-shadow: 0 10px 20px rgba(255, 123, 78, 0.3);
}

.green-gradient {
    background: linear-gradient(135deg, #3dd88c 0%, #6ce5b4 100%);
    box-shadow: 0 10px 20px rgba(61, 216, 140, 0.3);
}

.red-gradient {
    background: linear-gradient(135deg, #ff4d6e 0%, #ff8a9d 100%);
    box-shadow: 0 10px 20px rgba(255, 77, 110, 0.3);
}

.purple-gradient {
    background: linear-gradient(135deg, #a34cfd 0%, #c77dff 100%);
    box-shadow: 0 10px 20px rgba(163, 76, 253, 0.3);
}

.pink-gradient {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa1c5 100%);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a2e4a;
}

.card-back h3 {
    color: white;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6f90;
    margin-bottom: 20px;
}

.card-back p {
    color: rgba(255, 255, 255, 0.9);
}

.learn-more {
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 15px;
    }
}

/* Premium Pricing Section Styles */
.pricing-section {
    padding: 10px 0;
    background: #f9fbfd;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMzAsMjM4LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    z-index: 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #5a6f90;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #4a6cf7 0%, #a34cfd 100%);
    margin: 0 auto;
    border-radius: 3px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.pricing-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-card:hover .pricing-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(259deg, #d8dde7 0%, #d3d9e5 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-badge {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #4a6cf7;
    margin-right: 2px;
    margin-top: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #4a6cf7;
    line-height: 1;
}

.duration {
    font-size: 16px;
    color: #5a6f90;
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 3px;
}

.plan-description {
    font-size: 15px;
    color: #5a6f90;
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
}

.pricing-features {
    padding: 0 30px 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #5a6f90;
    display: flex;
    align-items: flex-start;
}

.pricing-features li i {
    color: #4a6cf7;
    margin-right: 10px;
    font-size: 18px;
    margin-top: 2px;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4a6cf7 0%, #6a8eff 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
    width: 100%;
}

.pricing-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
}

.pricing-btn:hover i {
    transform: translateX(3px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff4d6e;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(255, 77, 110, 0.3);
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-note i {
    color: #4a6cf7;
    font-size: 20px;
    margin-right: 10px;
}

.pricing-note p {
    margin: 0;
    font-size: 14px;
    color: #5a6f90;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 991px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .amount {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .pricing-header {
        padding: 25px 20px;
    }
    
    .pricing-features {
        padding: 0 20px 25px;
    }
    
    .amount {
        font-size: 38px;
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        border-radius: 12px;
    }
    
    .pricing-note i {
        margin-right: 0;
        margin-bottom: 8px;
    }
}


.clients {
  padding: 20px 0;
  background: #f7f7f7;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header p {
  font-size: 24px;
  font-weight: 600;
  color: #2a2a2a;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-header p:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #3498db;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.gateways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.gateway-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.3s ease;
  height: 120px;
}

.gateway-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gateway-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gateway-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .gateways-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gateway-item {
    padding: 15px;
    height: 100px;
  }
  
  .section-header p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .gateways-grid {
    gap: 15px;
  }
  
  .gateway-item {
    padding: 10px;
    height: 80px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header p {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.section-header p:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #3498db;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-box i {
  font-size: 28px;
  color: #3498db;
  margin-bottom: 15px;
  display: block;
}

.info-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.info-box p {
  color: #7f8c8d;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 24px;
  }
  
  .info-box {
    padding: 20px;
  }
  
  .info-box i {
    font-size: 24px;
  }
}

  @media (min-width: 992px) {
    .boishakhipay {
        flex: 0 0 auto;
        width: 100%;
    }
}