:root {
            --primary-color: #11367e;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --hero-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: var(--dark-color);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* New Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0,0,0,0.15);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 100px;
        }
        
        .navbar-brand img {
            height: 40px;
            width: auto;
            transition: all 0.3s ease;
        }
        
        .header.scrolled .navbar-brand img {
            height: 35px;
        }
        
        .nav-item {
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            padding: 10px 15px !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: calc(100% - 30px);
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 8px;
            margin-top: 5px;
            padding: 10px 0;
        }
        
        .dropdown-item {
            padding: 8px 20px;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: rgba(17, 54, 126, 0.05);
            color: var(--primary-color);
            padding-left: 25px;
        }

        /* New Hero Section */
        .hero-section {
            background: var(--hero-gradient);
            color: white;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .hero-section .subtitle {
            display: inline-block;
            background: rgba(255, 193, 7, 0.9);
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            padding: 8px 20px;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--primary-color);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            color: var(--primary-color);
        }
        
        .hero-illustration {
            position: absolute;
            right: 5%;
            bottom: 0;
            height: 90%;
            opacity: 0.9;
        }

        /* Rest of the styles remain the same */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            flex: 1;
        }
        
        .gateway-text {
            text-align: center;
            margin: 40px 0 30px;
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }
        
        .gateway-text::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px auto 0;
        }
        
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .app-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        
        .app-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .app-icon {
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            position: relative;
        }
        
        /* Gradient backgrounds for app icons */
        .app-card:nth-child(1) .app-icon { background: linear-gradient(135deg, #1e5799 0%, #207cca 51%, #2989d8 100%); }
        .app-card:nth-child(2) .app-icon { background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 51%, #AF7AC5 100%); }
        .app-card:nth-child(3) .app-icon { background: linear-gradient(135deg, #27AE60 0%, #2ECC71 51%, #58D68D 100%); }
        .app-card:nth-child(4) .app-icon { background: linear-gradient(135deg, #E67E22 0%, #EB984E 51%, #F0B27A 100%); }
        .app-card:nth-child(5) .app-icon { background: linear-gradient(135deg, #C0392B 0%, #E74C3C 51%, #EC7063 100%); }
        .app-card:nth-child(6) .app-icon { background: linear-gradient(135deg, #16A085 0%, #1ABC9C 51%, #48C9B0 100%); }
        .app-card:nth-child(7) .app-icon { background: linear-gradient(135deg, #D35400 0%, #E67E22 51%, #F39C12 100%); }
        .app-card:nth-child(8) .app-icon { background: linear-gradient(135deg, #7F8C8D 0%, #95A5A6 51%, #BDC3C7 100%); }
        
        .icon-stack {
            position: relative;
            width: 60px;
            height: 60px;
        }
        
        .icon-back {
            position: absolute;
            font-size: 3.5rem;
            opacity: 0.2;
        }
        
        .icon-front {
            position: absolute;
            font-size: 2rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .app-info {
            padding: 20px;
        }
        
        .app-info h3 {
            margin: 0 0 10px;
            color: var(--primary-color);
        }
        
        .app-info p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.8rem;
            }
            
            .hero-illustration {
                opacity: 0.4;
                right: -10%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
                text-align: center;
            }
            
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .hero-illustration {
                display: none;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-cta {
                margin: 0 auto;
            }
        }