 

        :root {
            --navy: #0d2f5ed6;
            --navy-dark: #051b38f2;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #464fb7;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Hero Section */
        .solution-hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%), url('../../Content/Images/SlideDeck/lms-bg.jpg') center/cover no-repeat;
            color: var(--light-text);
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .solution-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 47, 94, 0.85);
        }
        
        .solution-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .solution-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--light-text);
        }
        
        .solution-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .ExploreBtn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--teal);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .ExploreBtn:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styling */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* Overview Section */
        .overview-content h2 {
            color: var(--navy);
            margin-bottom: 25px;
        }
        
        .overview-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .overview-content ul {
            list-style: none;
            padding-left: 0;
        }
        
        .overview-content ul li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .overview-content ul li:before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--teal);
            position: absolute;
            left: 0;
            top: 8px;
        }
        
        .overview-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Features Section */
        .features {
            background: var(--light);
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            color: var(--teal);
            font-size: 2rem;
        }
        
        .feature-card h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Benefits Section */
        .benefits {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
        }
        
        .benefits .section-title h2 {
            color: var(--light-text);
        }
        
        .benefit-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.1);
            height: 100%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .benefit-card h4 {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        .benefit-card p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--light);
            padding: 80px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            color: var(--navy);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Technology Stack Section */
        .tech-stack {
            background: var(--light);
        }
        
        .tech-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .tech-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .tech-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .tech-item {
            background: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            font-weight: 500;
            color: var(--navy);
            transition: var(--transition);
        }
        
        .tech-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background: var(--teal);
            color: white;
        }
        
        /* Use Cases Section */
        .use-cases {
            background: var(--light);
        }
        
        .use-case-card {
            padding: 30px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .use-case-card h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--light);
            padding: 80px 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 25px 30px;
            background: var(--navy);
            color: white;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: var(--navy-dark);
        }
        
        .faq-question:after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            transition: var(--transition);
        }
        
        .faq-question.active:after {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 25px 30px;
            max-height: 500px;
        }
        
        /* Interlinking Section */
        .interlinking {
            background: var(--light);
            padding: 60px 0;
        }
        
        .interlink-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .interlink-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .interlink-card h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-section h2 {
            color: var(--light-text);
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .button1 {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
        }
        
        .button1:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .solution-hero {
                padding: 150px 0 80px;
            }
            
            .solution-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .solution-hero {
                padding: 130px 0 60px;
            }
            
            .solution-hero h1 {
                font-size: 2rem;
            }
            
            .solution-hero p {
                font-size: 1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }
   