/* Why Choose Section Styles */

        .why-choose-section {
            position: relative;
            background: linear-gradient(180deg, rgba(1, 87, 255, 0.03) 0%, rgba(255, 17, 59, 0.03) 100%);
        }
        
        .why-choose-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230157ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.6;
            z-index: 0;
        }
        
        .why-choose-container {
            position: relative;
            z-index: 1;
        }
        
        
        
        .pillars-intro {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto 50px;
            background: white;
            padding: 20px 30px;
            border-radius: 50px;
            box-shadow: var(--shadow-md);
        }
        
        .pillars-intro-text {
            font-weight: 600;
            color: var(--neutral-800);
            font-size: 18px;
            margin-left: 12px;
        }
        
        
        
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pillar-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            cursor: pointer;
        }
        
        .pillar-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-blue), var(--primary-red));
        }
        
        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .pillar-card:hover .pillar-icon {
            transform: scale(1.1);
        }
        
        .pillar-card:hover .pillar-title {
            color: var(--primary-blue);
        }
        
        .pillar-header {
            padding: 20px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .pillar-number {
            font-size: 14px;
            color: var(--primary-blue);
            background: rgba(1, 87, 255, 0.1);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .pillar-title {
            font-weight: 700;
            font-size: 22px;
            color: var(--neutral-800);
            transition: color 0.3s ease;
        }
        
        .pillar-content {
            padding: 10px 30px 30px;
        }
        
        .pillar-subtitle {
            font-weight: 600;
            color: var(--neutral-800);
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .pillar-description {
            color: var(--neutral-600);
            font-size: 15px;
            line-height: 1.6;
        }
        
        .pillar-icon-wrapper {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--neutral-100);
            z-index: 1;
        }
        
        
        
        /* Decorative Elements */
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            z-index: 0;
        }
        
        .shape-1 {
            background: var(--primary-blue);
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }
        
        .shape-2 {
            background: var(--primary-red);
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -150px;
        }
        
        /* Animation Keyframes */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(1, 87, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(1, 87, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(1, 87, 255, 0);
            }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        /* Media Queries */
        @media (max-width: 992px) {
            .pillars-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .section-subtitle {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .section-subtitle {
                font-size: 16px;
            }
            
            .pillars-intro {
                padding: 15px 25px;
                border-radius: 30px;
            }
            
            .pillars-intro-text {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }
            
            .pillars-intro {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .pillar-title {
                font-size: 20px;
            }
            
            .pillar-subtitle {
                font-size: 15px;
            }
        }