/* AI Offerings Section Styles */

        .ai-offerings-section {
            position: relative;
            background: linear-gradient(180deg, rgba(255, 17, 59, 0.03) 0%, rgba(1, 87, 255, 0.03) 100%);
        }
        
        .ai-offerings-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230157ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 0;
        }
        
        .ai-offerings-container {
            position: relative;
            z-index: 1;
        }
        
        
        
        .offerings-intro {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto 60px;
            background: linear-gradient(90deg, rgba(1, 87, 255, 0.02), rgba(255, 17, 59, 0.02));
            padding: 25px 40px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(1, 87, 255, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .offerings-intro::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(1, 87, 255, 0.1), rgba(255, 17, 59, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }
        
        .offerings-intro:hover::before {
            opacity: 0.5;
        }
        
        .offerings-intro-text {
            font-weight: 600;
            color: var(--neutral-800);
            font-size: 18px;
            margin-left: 15px;
            position: relative;
            z-index: 1;
        }
        
        .offerings-intro-icon {
            font-size: 22px;
            color: var(--primary-blue);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        
        .offerings-intro:hover .offerings-intro-icon {
            transform: rotate(15deg) scale(1.2);
            color: var(--primary-red);
        }
        
        .offerings-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        
        
        .offerings-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .offering-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .offering-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(1, 87, 255, 0.2);
        }
        
        .offering-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            transform: scaleX(0);
            transition: transform 0.5s ease;
            transform-origin: left;
        }
        
        .offering-card:hover::after {
            transform: scaleX(1);
        }
        
        .offering-header {
            padding: 35px 35px 20px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        
        .offering-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(1, 87, 255, 0.03), rgba(255, 17, 59, 0.03));
            z-index: 0;
        }
        
        .offering-title-wrapper {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }
        
        .offering-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
            font-size: 26px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .offering-icon::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(1, 87, 255, 0.1), rgba(255, 17, 59, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .offering-card:hover .offering-icon {
            transform: scale(1.2) rotate(10deg);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        
        .offering-card:hover .offering-icon::before {
            opacity: 1;
        }
        
        .pulse-flow-icon {
            color: var(--primary-blue);
        }
        
        .pulse-vision-icon {
            color: #9333ea; /* Purple */
        }
        
        .pulse-talk-icon {
            color: #059669; /* Green */
        }
        
        .pulse-bridge-icon {
            color: #db2777; /* Pink */
        }
        
        .pulse-ignite-icon {
            color: #f59e0b; /* Amber */
        }
        
        .offering-title {
            font-weight: 700;
            font-size: 24px;
            color: var(--neutral-800);
            transition: color 0.3s ease;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }
        
        .offering-card:hover .offering-title {
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .offering-subtitle {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-left: 68px;
            position: relative;
            z-index: 1;
        }
        
        .offering-body {
            padding: 5px 35px 35px;
        }
        
        .offering-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .offering-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 15px;
            color: var(--neutral-600);
            padding-left: 20px;
            position: relative;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        .offering-features li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-blue);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        
        .offering-card:hover .offering-features li:hover {
            transform: translateX(5px);
            color: var(--neutral-800);
        }
        
        .offering-card:hover .offering-features li:hover::before {
            transform: scale(1.5);
            background: var(--primary-red);
        }
        
        .use-case {
            display: flex;
            align-items: center;
            background: linear-gradient(to right, rgba(1, 87, 255, 0.03), rgba(255, 17, 59, 0.03));
            border-left: 3px solid var(--primary-blue);
            border-radius: 0 8px 8px 0;
            padding: 15px 20px;
            margin: 30px 0;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }
        
        .use-case::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(to right, rgba(1, 87, 255, 0.08), rgba(255, 17, 59, 0.08));
            transition: width 0.5s ease;
            z-index: 0;
        }
        
        .offering-card:hover .use-case::before {
            width: 100%;
        }
        
        .use-case-icon {
            color: var(--primary-blue);
            font-size: 18px;
            margin-right: 12px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        
        .offering-card:hover .use-case-icon {
            transform: scale(1.2);
            color: var(--primary-red);
        }
        
        .use-case-text {
            font-size: 14px;
            color: var(--neutral-700);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        .contact-btn {
            margin-top: auto;
            padding: 16px 24px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            color: white;
            box-shadow: 0 8px 15px rgba(1, 87, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            align-self: center;
            max-width: 200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }
        
        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(255, 17, 59, 0.3);
            background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
        }
        
        .contact-btn:hover::before {
            left: 100%;
        }
        
        .contact-btn i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .contact-btn:hover i {
            animation: pulse-icon 1.5s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-4px);
            }
            60% {
                transform: translateY(-2px);
            }
        }
        
        @keyframes pulse-icon {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .trademark {
            font-size: 12px;
            vertical-align: super;
        }
        
        /* Animated elements */
        .animated-icon {
            position: relative;
        }
        
        .animated-icon::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            box-shadow: 0 0 0 rgba(1, 87, 255, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(1, 87, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(1, 87, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(1, 87, 255, 0);
            }
        }
        
        /* Floating animation for icons */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .offering-card:nth-child(odd) .offering-icon {
            animation: float 6s ease-in-out infinite;
        }
        
        .offering-card:nth-child(even) .offering-icon {
            animation: float 5s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        /* Gradient text animation */
        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .offering-card:hover .offering-title {
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red), var(--primary-blue));
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient-shift 3s linear infinite;
        }
        
        /* Decorative Elements */
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            z-index: 0;
        }
        
        .shape-1 {
            background: var(--primary-red);
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }
        
        .shape-2 {
            background: var(--primary-blue);
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -150px;
        }
        
        /* Media Queries */
        @media (max-width: 992px) {
            .offerings-grid {
                grid-template-columns: 1fr;
                max-width: 700px;
            }
            
            .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;
            }
            
            .offerings-intro {
                padding: 15px 25px;
                border-radius: 30px;
            }
            
            .offerings-intro-text {
                font-size: 16px;
            }
            
            .offering-title {
                font-size: 20px;
            }
            
            .offering-header {
                padding: 20px;
            }
            
            .offering-body {
                padding: 0 20px 20px;
            }
            
            .offering-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .offering-subtitle {
                margin-left: 55px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }
            
            .offerings-intro {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .offering-title-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .offering-subtitle {
                margin-left: 0;
            }
            
            .offering-actions {
                flex-direction: column;
            }
        }