    body {
            background: #0a0e27;
            color: #ffffff;
            overflow-x: hidden;
        }
.header {
    background: #fff;
}
        /* Animated Background */
        .crms-animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1629 100%);
        }

        .crms-animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: crms-grid-move 20s linear infinite;
        }

        @keyframes crms-grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Floating Particles */
        .crms-particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            opacity: 0.6;
            animation: crms-float 15s infinite ease-in-out;
        }

        @keyframes crms-float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-100px) translateX(50px); }
            50% { transform: translateY(-50px) translateX(-50px); }
            75% { transform: translateY(-150px) translateX(30px); }
        }

        /* Hero Section */
        .crms-hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 100px 0;
        }

        .crms-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .crms-hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00ffff, #0080ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 5px;
            animation: crms-glow 3s ease-in-out infinite;
        }

        @keyframes crms-glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5)); }
            50% { filter: drop-shadow(0 0 40px rgba(0, 128, 255, 0.8)); }
        }

        .crms-hero-subtitle {
            font-size: 2rem;
            color: #00ffff;
            margin-bottom: 40px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .crms-hero-image {
            position: absolute;
            width: 600px;
            height: 600px;
            opacity: 0.2;
            filter: brightness(0.8) contrast(1.2);
            animation: crms-rotate 20s linear infinite;
        }

        @keyframes crms-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Section Styles */
        .crms-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .crms-section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #ffffff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .crms-intro-text {
            font-size: 1.3rem;
            line-height: 2;
            color: #b0c4de;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 60px;
            font-weight: 300;
        }

        /* Services Cards */
        .crms-service-card {
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(15, 22, 41, 0.9));
            border: 2px solid transparent;
            border-radius: 20px;
            padding: 40px 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            backdrop-filter: blur(10px);
        }

        .crms-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, #00ffff, #0080ff, #ff00ff);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .crms-service-card:hover::before {
            opacity: 1;
        }

        .crms-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
        }

        .crms-service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .crms-service-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: #00ffff;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }

        .crms-service-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #b0c4de;
            text-align: center;
        }

        /* Technology Cards */
        .crms-tech-category {
            margin-bottom: 60px;
        }

        .crms-tech-category-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: #ff00ff;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .crms-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .crms-tech-item {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .crms-tech-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }

        .crms-tech-item:hover::before {
            left: 100%;
        }

        .crms-tech-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
            border-color: #00ffff;
        }

        .crms-tech-name {
            font-size: 1.2rem;
            font-weight: 500;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .crms-tech-desc {
            font-size: 0.95rem;
            color: #b0c4de;
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        /* Parallax Layers */
        .crms-parallax-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .crms-parallax-shape {
            position: absolute;
            opacity: 0.1;
        }

        .crms-shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            border-radius: 50%;
            top: 10%;
            left: 5%;
            filter: blur(80px);
        }

        .crms-shape-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #ff00ff, #0080ff);
            border-radius: 50%;
            bottom: 10%;
            right: 5%;
            filter: blur(100px);
        }

        .crms-shape-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #00ffff, #ff00ff);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: blur(90px);
        }

        /* Image Containers */
        .crms-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
            margin: 40px 0;
        }

        .crms-image-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }

        .crms-image-container:hover img {
            transform: scale(1.05);
        }

        .crms-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 128, 255, 0.2));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .crms-image-container:hover .crms-image-overlay {
            opacity: 1;
        }

        /* Scan Line Effect */
        .crms-scanline {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
            animation: crms-scan 3s linear infinite;
        }

        @keyframes crms-scan {
            0% { transform: translateY(0); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(100vh); opacity: 0; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .crms-hero-title {
                font-size: 3rem;
            }

            .crms-hero-subtitle {
                font-size: 1.5rem;
            }

            .crms-section-title {
                font-size: 2.5rem;
            }

            .crms-hero-image {
                width: 300px;
                height: 300px;
            }
        }

        /* Glowing Borders */
        .crms-glow-border {
            position: relative;
            padding: 60px 0;
        }

        .crms-glow-border::before,
        .crms-glow-border::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .crms-glow-border::before {
            top: 0;
        }

        .crms-glow-border::after {
            bottom: 0;
        }