        :root {
            --primary-color: #2c5282; /* Professional Blue */
            --secondary-color: #3182ce; /* Medium Blue */
            --accent-color: #38b2ac; /* Teal */
            --success-color: #48bb78; /* Green */
            --warning-color: #ed8936; /* Orange */
            --danger-color: #f56565; /* Red */
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --gradient-primary: linear-gradient(135deg, #2c5282, #3182ce);
            --gradient-secondary: linear-gradient(135deg, #38b2ac, #48bb78);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #4a5568;
        }
        
        /* Navigation Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        .navbar-brand span {
            color: var(--secondary-color);
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--dark-color) !important;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            background: var(--gradient-primary);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-radius: 10px;
            padding: 12px;
            min-width: 250px;
            border-left: 3px solid var(--primary-color);
        }
        
        .dropdown-item {
            padding: 10px 20px;
            border-radius: 6px;
            margin: 3px 0;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(44, 82, 130, 0.1), rgba(49, 130, 206, 0.1));
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .btn-try {
            background: var(--gradient-primary);
            color: white;
            border-radius: 25px;
            padding: 8px 25px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(44, 82, 130, 0.2);
        }
        
        .btn-try:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(44, 82, 130, 0.3);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: var(--gradient-primary);
            color: white;
            padding: 130px 0 90px;
            margin-top: 76px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 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.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
            pointer-events: none; /* This allows clicks to pass through the background */
        }

        /* Add this to mainstyle.css */
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        /* Feature Badge */
        .feature-badge {
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        
        /* Module Cards */
        .module-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }
        
        .module-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(44, 82, 130, 0.15);
        }
        
        .module-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        /* Pricing Cards */
        .pricing-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(44, 82, 130, 0.15);
        }
        
        .pricing-header {
            background: var(--gradient-primary);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .pricing-popular {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--success-color);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Feature List */
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            padding-left: 35px;
        }
        
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
        }
        
        /* Cloud Advantage Cards */
        .cloud-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .cloud-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        /* Comparison Table */
        .comparison-table th {
            background: var(--gradient-primary);
            color: white;
        }
        
        /* Integration Flow */
        .integration-flow {
            position: relative;
            padding: 40px 0;
        }
        
        .integration-step {
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .integration-step:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            z-index: 1;
        }
        
        .step-circle {
            width: 70px;
            height: 70px;
            background: white;
            border: 3px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
            margin: 0 auto 15px;
            position: relative;
            z-index: 2;
        }
        
        /* Section Headers */
        .section-header {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-header:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .section-header.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Module Highlight */
        .module-highlight {
            border-left: 5px solid var(--accent-color);
            background: linear-gradient(135deg, #f7fafc, #edf2f7);
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        
        /* Pricing Toggle */
        .pricing-toggle {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        
        .toggle-btn {
            padding: 12px 30px;
            border: 2px solid var(--primary-color);
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .toggle-btn:first-child {
            border-radius: 25px 0 0 25px;
            border-right: none;
        }
        
        .toggle-btn:last-child {
            border-radius: 0 25px 25px 0;
        }
        
        .toggle-btn.active {
            background: var(--gradient-primary);
            color: white;
        }
        
        /* Bundle Badge */
        .bundle-badge {
            display: inline-block;
            padding: 5px 15px;
            background: var(--gradient-secondary);
            color: white;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }

        .badge-module {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: white;
                padding: 25px;
                border-radius: 12px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                margin-top: 15px;
            }
            
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .integration-step:before {
                display: none;
            }
        }