.sec-two{
    padding: 120px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pos-abs-two{
    position: absolute;
    right: 0;
    max-width: 600px;
}
.sec-three{
    padding: 60px 0px;
    margin: 60px 0px;
    background-color: #fff0e8;
}

.mainContainerAppCta{
    padding-bottom: 20px;
}

.mainContainerAppCta h2{
    font-size: 3.8vw !important;
}
.comparison-container {
            padding: 1rem 0;
            background: #fff;
        }

        .partner-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .our-company-card {
            border: 3px solid #ff5722;
            background: linear-gradient(135deg, white 0%, #fff8f6 100%);
        }

        .our-company-card::before {
            content: 'RECOMMENDED';
            position: absolute;
            top: 19px;
            right: 19px;
            background: #ff5722;
            color: white;
            padding: 0.5rem 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            transform: rotate(45deg) translate(30%, -100%);
            transform-origin: center;
        }

        .partner-logo {
            height: 60px;
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            justify-content: center;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .logo-accent {
            background: #ff5722;
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            margin-left: 0.5rem;
        }

        .partner-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 2rem;
            text-align: center;
        }

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

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .feature-item:hover {
            background: #f8f9fa;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .feature-icon.positive {
            background: #28a745;
            color: white;
        }

        .feature-icon.negative {
            background: #dc3545;
            color: white;
        }

        .feature-text {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #333;
        }

        .cta-section {
            background: #1a1a1a;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta-button {
            background: #ff5722;
            border: none;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 1.5rem;
        }

        .cta-button:hover {
            background: #e64a19;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
            color: white;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .partner-card {
                margin-bottom: 2rem;
                padding: 2rem;
            }
            
            .comparison-container {
                padding: 3rem 0;
            }
        }
        .calculator-container {
            background: #2d2d2d;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid #404040;
            padding: 40px;
            margin: 50px auto;
            max-width: 800px;
        }

        .header-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .header-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: #ff600b;
            color: #fff;
            border-radius: 11px;
        }
        .header-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: #ff600b;
            color: #fff;
            border-radius: 11px;
        }

        .header-section p {
            color: #adb5bd;
            font-size: 1.1rem;
            margin-bottom: 0;
            padding: 0px 80px;
        }

        .calculator-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid #404040;
            transition: all 0.3s ease;
        }

        .calculator-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
            border-color: #ff6b35;
        }

        .item-label {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }

        .item-label i {
            color: #ff6b35;
            width: 20px;
        }

        .slider-container {
            position: relative;
            margin: 10px 0;
        }

        .form-range {
            background: transparent;
            border: none;
            height: 6px;
            margin: 15px 0;
        }

        .form-range::-webkit-slider-track {
            background: #404040;
            border-radius: 3px;
            height: 6px;
        }

        .form-range::-webkit-slider-thumb {
            appearance: none;
            background: #ff6b35;
            border-radius: 50%;
            height: 20px;
            width: 20px;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
            transition: all 0.2s ease;
        }

        .form-range::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
        }

        .form-range::-moz-range-track {
            background: #404040;
            border-radius: 3px;
            height: 6px;
            border: none;
        }

        .form-range::-moz-range-thumb {
            background: #ff6b35;
            border-radius: 50%;
            height: 20px;
            width: 20px;
            border: none;
            cursor: pointer;
        }

        .slider-value {
            background: #ff6b35;
            color: white;
            padding: 7px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            float: right;
            min-width: 70px;
            text-align: center;
        }

        .form-select {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #404040;
            color: #f8f9fa;
            border-radius: 8px;
            padding: 11px 20px !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            border-color: #ff6b35;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
            background: rgba(255, 255, 255, 0.15);
            color: #f8f9fa;
        }

        .form-select option {
            background: #2d2d2d;
            color: #f8f9fa;
        }

        .pricing-btn {
            background: linear-gradient(45deg, #ff600b, #ff600b);
            border: none;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 18px 40px;
            border-radius: 50px;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
            background: linear-gradient(45deg, #ff8a65, #ff6b35);
        }

        .pricing-display {
            background: linear-gradient(45deg, #ff600b, #ff600b);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            margin-top: 30px;
            display: none;
        }

        .pricing-display h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .pricing-display p {
            margin: 0;
            font-size: 1.1rem;
            opacity: 0.9;
            color: #fff;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .calculator-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .calculator-item:nth-child(1) { animation-delay: 0.1s; }
        .calculator-item:nth-child(2) { animation-delay: 0.2s; }
        .calculator-item:nth-child(3) { animation-delay: 0.3s; }
        .calculator-item:nth-child(4) { animation-delay: 0.4s; }
        .calculator-item:nth-child(5) { animation-delay: 0.5s; }
        .calculator-item:nth-child(6) { animation-delay: 0.6s; }
        .calculator-item:nth-child(7) { animation-delay: 0.7s; }
        .calculator-item:nth-child(8) { animation-delay: 0.8s; }