 /* .service-card {
            max-width: 400px;
            margin: 0 auto;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .card-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .plan-title {
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            margin: 0 0 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .plan-price {
            color: #fff;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            opacity: 0.9;
        }

        .plan-price .currency {
            font-size: 18px;
            opacity: 0.8;
        }

        .plan-price .period {
            font-size: 14px;
            opacity: 0.7;
        }

        .card-body {
            padding: 30px 25px;
        }

        .what-you-get {
            text-align: center;
            margin-bottom: 25px;
        }

        .what-you-get h3 {
            color: #333;
            font-size: 18px;
            font-weight: bold;
            margin: 0;
            letter-spacing: 1px;
            position: relative;
        }

        .what-you-get h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

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

        .feature-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-item:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            padding-left: 10px;
            border-radius: 8px;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-text {
            color: #555;
            font-size: 14px;
            font-weight: 500;
            flex: 1;
        }

        .special-feature {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 8px;
            padding: 15px;
            margin: 5px 0;
        }

        .special-feature .feature-text {
            color: #667eea;
            font-weight: 600;
        }

        .cta-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .highlight-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #ff6b6b;
            color: white;
            padding: 8px 40px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(45deg);
            text-transform: uppercase;
            letter-spacing: 1px;
        } */








/* 
                .plans-container {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .service-card {
            background: #fff;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            overflow: hidden;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 35px 80px rgba(0,0,0,0.25);
        }

        .service-card.core {
            border-color: #667eea;
        }

        .service-card.extra {
            border-color: #ff6b6b;
            transform: scale(1.05);
        }

        .service-card.extra:hover {
            transform: translateY(-15px) scale(1.07);
        }

        .service-card.ultimate {
            border-color: #ffd700;
        }

        .card-header {
            padding: 35px 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .card-header.core {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .card-header.extra {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
        }

        .card-header.ultimate {
            background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
        }

        .card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .plan-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
        }

        .plan-title {
            color: #fff;
            font-size: 32px;
            font-weight: bold;
            margin: 0 0 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .plan-price {
            color: #fff;
            font-size: 28px;
            font-weight: 600;
            margin: 0;
            opacity: 0.95;
        }

        .plan-price .currency {
            font-size: 20px;
            opacity: 0.8;
        }

        .plan-price .period {
            font-size: 16px;
            opacity: 0.7;
            display: block;
            margin-top: 5px;
        }

        .card-body {
            padding: 35px 25px;
        }

        .what-you-get {
            text-align: center;
            margin-bottom: 30px;
        }

        .what-you-get h3 {
            color: #333;
            font-size: 20px;
            font-weight: bold;
            margin: 0;
            letter-spacing: 2px;
            position: relative;
        }

        .what-you-get h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            border-radius: 2px;
        }

        .core .what-you-get h3::after {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .extra .what-you-get h3::after {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
        }

        .ultimate .what-you-get h3::after {
            background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
        }

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

        .feature-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-item:hover {
            padding-left: 15px;
            border-radius: 10px;
        }

        .core .feature-item:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
        }

        .extra .feature-item:hover {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(238, 90, 36, 0.08) 100%);
        }

        .ultimate .feature-item:hover {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(243, 156, 18, 0.08) 100%);
        }

        .feature-icon {
            width: 28px;
            height: 28px;
            margin-right: 18px;
            flex-shrink: 0;
        }

        .feature-text {
            color: #555;
            font-size: 15px;
            font-weight: 500;
            flex: 1;
        }

        .special-feature {
            border-radius: 12px;
            padding: 18px;
            margin: 8px 0;
            position: relative;
            overflow: hidden;
        }

        .core .special-feature {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
        }

        .extra .special-feature {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.12) 0%, rgba(238, 90, 36, 0.12) 100%);
        }

        .ultimate .special-feature {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(243, 156, 18, 0.12) 100%);
        }

        .special-feature .feature-text {
            font-weight: 700;
            font-size: 16px;
        }

        .core .special-feature .feature-text {
            color: #667eea;
        }

        .extra .special-feature .feature-text {
            color: #ff6b6b;
        }

        .ultimate .special-feature .feature-text {
            color: #f39c12;
        }

        .cta-button {
            width: 100%;
            padding: 18px;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .core .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .extra .cta-button {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
        }

        .ultimate .cta-button {
            background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
            color: #333;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }

        .core .cta-button:hover {
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .extra .cta-button:hover {
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
        }

        .ultimate .cta-button:hover {
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
        }

        .highlight-badge {
            position: absolute;
            top: 25px;
            right: -35px;
            color: white;
            padding: 10px 45px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(45deg);
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 3;
        }

        .core .highlight-badge {
            background: #4CAF50;
        }

        .extra .highlight-badge {
            background: #FF9800;
        }

        .ultimate .highlight-badge {
            background: #9C27B0;
        }

        @media (max-width: 768px) {
            .plans-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 10px;
            }
            
            .service-card.extra {
                transform: none;
            }
            
            .service-card.extra:hover {
                transform: translateY(-15px) scale(1.02);
            }
        } */


/* 
           .plans-container {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 30px;
            max-width: 1500px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
            flex: 1;
            min-width: 320px;
            max-width: 380px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .highlight-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 2;
        }

        .card-header {
            padding: 40px 30px 20px;
            text-align: center;
            position: relative;
        }

        .card-header.core {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .card-header.extra {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
        }

        .card-header.ultimate {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }

        .plan-icon {
            margin-bottom: 20px;
        }

        .plan-title {
            color: white;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .plan-price {
            color: white;
            font-size: 18px;
        }

        .currency {
            font-size: 24px; */
            /* font-weight: bold; */
        /* }

 .money {
            font-size: 50px;
            font-weight: bold;
        }


        .period {
            font-size: 14px;
            opacity: 0.9;
        }

        .card-body {
            padding: 30px;
        }

        .what-you-get {
            margin-bottom: 30px;
        }

        .what-you-get h3 {
            color: #333;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-text {
            color: #333;
            font-size: 16px;
        }

        .special-feature .feature-text {
            font-weight: bold;
        }

        .cta-button {
            width: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .extra .cta-button {
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
        }

        .extra .cta-button:hover {
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        .ultimate .cta-button {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }

        .ultimate .cta-button:hover {
            box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
        }

        @media (max-width: 768px) {
            .plans-container {
                flex-direction: column;
                align-items: center;
            }
            
            .service-card {
                max-width: 100%;
            }
        } */










    /* /////////////// */


       
 .subscribe-section {
            max-width: 1500px;
            margin: 0 auto;
            width: 100%;
        }

        .subscribe-container {
            width: 100%;
            padding: 0 20px;
        }

        .plans-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            justify-items: center;
            align-items: stretch;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Service Card Base Styles */
        .service-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 380px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        /* Highlight Badges */
        .highlight-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
        }

        .service-card.extra .highlight-badge {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
        }

        .service-card.ultimate .highlight-badge {
            background: linear-gradient(45deg, #667eea, #764ba2);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        /* Card Headers */
        .card-header {
            padding: 50px 30px 30px;
            text-align: center;
            position: relative;
            color: white;
        }

        .card-header.core {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .card-header.extra {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
        }

        .card-header.ultimate {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .plan-icon {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            opacity: 0.9;
        }

        .plan-icon svg {
            width: 48px;
            height: 48px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .plan-title {
            color: white;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 12px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .plan-price {
            color: white;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .currency {
            font-size: 20px;
            font-weight: 600;
            opacity: 0.9;
        }

        .money {
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
        }

        .period {
            font-size: 14px;
            opacity: 0.85;
            text-align: center;
            flex-basis: 100%;
            margin-top: 4px;
            font-weight: 500;
        }

        /* Card Body */
        .card-body {
            padding: 20px 11px;
            background: white;
        }

        .what-you-get {
            margin-bottom: 30px;
            text-align: center;
        }

        .what-you-get h3 {
            color: #6b7280;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .features-list {
            list-style: none;
            margin-bottom: 35px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(102, 126, 234, 0.02);
            padding-left: 10px;
            margin: 0 -10px;
            border-radius: 8px;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-text {
            color: #374151;
            font-size: 15px;
            line-height: 1.5;
            font-weight: 500;
        }

        .special-feature .feature-text {
            font-weight: 700;
            color: #1f2937;
        }

        /* CTA Buttons */
        .cta-button {
            width: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
        }

        .extra .cta-button {
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
        }

        .extra .cta-button:hover {
            box-shadow: 0 12px 24px rgba(255, 107, 107, 0.4);
        }

        .ultimate .cta-button {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }

        .ultimate .cta-button:hover {
            box-shadow: 0 12px 24px rgba(79, 172, 254, 0.4);
        }

        /* Responsive Design */
        
        /* Small tablets and large phones */
        @media (min-width: 640px) {
            .plans-container {
                grid-template-columns: repeat(2, 1fr);
                /* gap: 30px; */
                gap: 10px;
                max-width: 800px;
            }

            .service-card {
                max-width: none;
            }
        }

        /* Tablets and small desktops */
        @media (min-width: 900px) {
            .plans-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 35px;
                max-width: 1500px;
            }

            .service-card:hover {
                transform: translateY(-15px) scale(1.03);
            }
        }

        /* Large desktops */
        @media (min-width: 1500px) {
          
            .subscribe-container {
                padding: 0 40px;
            }

            .plans-container {
                gap: 40px;
            }

            .card-header {
                padding: 60px 35px 35px;
            }

            .plan-icon svg {
                width: 52px;
                height: 52px;
            }

            .plan-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .money {
                font-size: 56px;
            }

            .currency {
                font-size: 24px;
            }

            .period {
                font-size: 15px;
            }

            /* .card-body {
                padding: 40px 35px;
            } */

            .what-you-get h3 {
                font-size: 14px;
            }

            .feature-icon {
                width: 22px;
                height: 22px;
                margin-right: 18px;
            }

            .feature-text {
                font-size: 16px;
            }

            .feature-item {
                padding: 16px 0;
            }

            .cta-button {
                font-size: 16px;
                padding: 18px 35px;
            }

            .highlight-badge {
                top: 25px;
                right: 25px;
                padding: 10px 20px;
                font-size: 13px;
            }
        }

        /* Extra large screens */
        @media (min-width: 1400px) {
            .plans-container {
                gap: 50px;
                max-width: 1300px;
            }

            .service-card:hover {
                transform: translateY(-18px) scale(1.04);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            .service-card,
            .cta-button,
            .feature-item {
                transition: none;
            }

            .service-card:hover {
                transform: none;
            }

            .cta-button:hover {
                transform: none;
            }

            .cta-button::before {
                display: none;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .service-card {
                border: 2px solid #333;
            }

            .feature-item {
                border-bottom-color: #666;
            }
        }

        /* Focus states for accessibility */
        .cta-button:focus {
            outline: 3px solid rgba(102, 126, 234, 0.5);
            outline-offset: 2px;
        }


 .elementor-126 .elementor-element.elementor-element-7848efc:not(.elementor-motion-effects-element-type-background)>.elementor-column-wrap, .elementor-126 .elementor-element.elementor-element-7848efc>.elementor-column-wrap>.elementor-motion-effects-container>.elementor-motion-effects-layer {
    background-color: #63d6f9e7;
      /* background: linear-gradient(45deg, #b60f0009 , #054977); */

    /* box-shadow: #667eea; */
    /* color:#ffffff; */
   
}










/* 

    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      max-width: 1500px;
      margin: 0 auto;
    }

    .card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 20px;
      flex: 1 1 300px;
      max-width: 350px;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      margin-top: 0;
      font-size: 1.5rem;
      color: #333;
    }

    .card p {
      font-size: 1rem;
      color: #666;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: center;
      }
    } */


    .card1 {
      flex: 1 1 300px;
      max-width: 400px;
      /* background: linear-gradient(135deg, #5abffe, #a6e377); */
      /* background: linear-gradient(135deg, #b61000, #2a0000);   */
      background-color: #d7dfe5;
      color: rgb(19, 18, 18);
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      transition: transform 0.3s ease;
    }


    .card2 {
      flex: 1 1 300px;
      max-width: 400px;
      /* background: linear-gradient(135deg, #feeb5a, #e38b77); */
      /* background: linear-gradient(135deg, #07143a, #07143a); */
      /* color: white; */
      background-color: #d7dfe5;
      color: rgb(19, 18, 18);
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      transition: transform 0.3s ease;
    }


    .card3 {
      flex: 1 1 300px;
      /* max-width: 350px; */
      max-width: 400px;
      /* background: linear-gradient(135deg, #5acdfe, #b177e3); */
      /* background: linear-gradient(135deg, #20671b, #162f11); */
      /* color: white; */
      background-color: #d7dfe5;
      color: rgb(19, 18, 18);
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      transition: transform 0.3s ease;
    }


    .card:hover {
      transform: translateY(-5px);
    }

    .card-header {
      padding: 20px;
      /* background: rgba(0, 0, 0, 0.2); */
      background-color: darkgreen;
      font-size: 1.4rem;
      font-weight: bold;
    }

    .card-content {
      padding: 20px;
      height:auto;
    }

    .accordion {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      margin-top: 10px;
      overflow: hidden;
    }

    .accordion-item {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .accordion-header {
      padding: 15px;
      cursor: pointer;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.15);
      transition: background 0.2s;
    }

    .accordion-header:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    .accordion-content {
      padding: 0 15px 15px;
      display: none;
      font-size: 0.95rem;
      padding-top: 6px;

      max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
    }

    .accordion-item.active .accordion-content {
      display: block;
      max-height: 700px;
    }



/* .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
} */

/* .accordion-item.active .accordion-content {
  max-height: 500px; 
} */


    
.accordion-header {
  display: flex;
  flex-direction: row-reverse; /* Puts text on the right, arrow on the left */
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
  gap: 10px;
}

.accordion-header .arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
}

.innerText{
    /* color:#5f1a1d; */
    margin-top: 8px;
    

}


/* listing style  */
.tick-list {
  list-style: none !important;
  padding-left: 0;
}

.tick-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.tick-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

.strongTxt{
    color:#5f1a1d;
}















/* style for request a call back  */





/* Base styles */
#service-section {
  padding: 40px 20px;
  box-sizing: border-box;
}

#service-section .elementor-container,
#service-section .elementor-row,
#service-section .elementor-column-wrap,
#service-section .elementor-widget-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.aux-modern-heading-primary,
.aux-modern-heading-secondary,
.aux-modern-heading-description {
  text-align: center;
  padding: 0 15px;
}

.aux-modern-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.callback {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  /* background: linear-gradient(45deg, #b60f0009, #054977); */
  border-radius: 10px;
  box-sizing: border-box;
  color: #000000;
}

.callback h3 {
  text-align: center;
  margin-bottom: 15px;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  color: black;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.wpcf7-form input[type="submit"] {
  background-color: #054877;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

/* Make layout flexible for buttons and other elements */
.elementor-widget-container a.aux-modern-button {
  width: fit-content;
  max-width: 100%;
  text-align: center;
  padding: 12px 20px;
}

/* View all services button center align */
.elementor-element-f1bbf11 .aux-modern-button-wrapper {
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  #service-section .elementor-container, #service-section .elementor-row, #service-section .elementor-column-wrap, #service-section .elementor-widget-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

       .elementor-126 .elementor-element.elementor-element-7848efc>.elementor-element-populated>.elementor-widget-wrap {
        padding: 25% 10% 1% 12%;
    } 
    
}


.entry-content h2 {
    font-size: 1.1em;
}



.card-header {
    padding: 10px;

}

@media screen and (max-width: 300px) {
    .plans-container {
     
        padding-top: 18px;
    }
}



.wpcf7-form input[type="text"], .wpcf7-form input[type="number"], .wpcf7-form textarea {
    width: 206%;
}

@media screen and (max-width: 768px) {
.subscribe-container {
    width: 100%;
    padding: 0px 0px;
}

.aux-s-fhd .elementor-section.elementor-section-boxed>.elementor-container, .aux-s-fhd:not(.elementor-page) .elementor-section-boxed>.elementor-container {
    width: 100%;
}


}