
        /* CTA Button Color */
        .cta-btn {
            background-color: #e92f2f !important;
        }
        .cta-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Zoom Effect */
        @keyframes zoomEffect {
          0% { transform: scale(1); }
          100% { transform: scale(1.15); }
        }
        
        .bg-image-zoom {
           background-size: cover;
           background-position: center;
           animation: zoomEffect 10s linear infinite alternate;
        }

        /* Text Animations */
        @keyframes fadeInUp {
          from { opacity: 0; transform: translateY(30px); }
          to { opacity: 1; transform: translateY(0); }
        }

        .animate-fade-up {
           opacity: 0;
           animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .delay-100 { animation-delay: 0.2s; }
        .delay-200 { animation-delay: 0.4s; }
        .delay-300 { animation-delay: 0.6s; }

        .carousel-item.active .animate-fade-up {
           animation-name: fadeInUp;
        }

        /* Custom Nav Buttons for Split Layout (Desktop) */
        .nav-btn-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 1px solid #e5e7eb;
            background: white;
            color: #e92f2f; /* Nav Color Config */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        .nav-btn-circle:hover {
            background: #e92f2f;
            color: white;
            border-color: #e92f2f;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        /* Mobile Stack Fix for Split Layout */
        @media (max-width: 768px) {
            .mobile-stack-container {
                display: block !important;
                position: relative;
            }
            .split-image-col {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
            }
            .split-text-col {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: auto;
                min-height: 50%; /* Cover bottom half */
                z-index: 2;
                background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 70%, transparent 100%);
                padding-top: 60px !important; 
                padding-bottom: 60px !important;
                justify-content: flex-end !important;
            }
            .mobile-title {
                font-size: 2rem;
            }
            .mobile-desc {
                font-size: 1rem;
                margin-bottom: 1.5rem !important;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
        }
      