        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #1B365D;
            background: #F8F9FA;
            overflow-x: hidden;
        }
		
		a:link, a:visited, a:hover, a:active {
		  color: #fff;
		  text-decoration: none;
		}

		a:hover, a:active {
		  text-decoration: underline;
		}
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
		
		.text-orange {
			color: #E67E22;
		}
        
        /* Animated Background */
        .hero {
            background: linear-gradient(135deg, #1B365D 0%, #2C5282 100%);
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }
        
        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        
        .company-name {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .company-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .hero-tagline {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 40px;
            line-height: 1.4;
        }
        
        .hero-description {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 50px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .cta-button:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        /* Power Stats Section */
        .power-stats {
            background: white;
            padding: 100px 0;
            position: relative;
        }
        
        .stats-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .stats-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1B365D;
        }
        
        .stats-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 760px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #F8F9FA 0%, #E2E8F0 100%);
            padding: 50px 40px;
            border-radius: 15px;
            text-align: center;
            position: relative;
            border: 1px solid #E2E8F0;
            transition: all 0.3s ease;
			margin-bottom: 50px;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(27, 54, 93, 0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1B365D;
            margin-bottom: 15px;
            display: block;
        }
        
        .stat-label {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1B365D;
            margin-bottom: 15px;
        }
        
        .stat-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Expertise Section */
        .expertise-section {
            background: #1B365D;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .section-subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
        }
        
        .expertise-card {
            background: rgba(255,255,255,0.1);
            padding: 50px;
            border-radius: 15px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        
        .expertise-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .expertise-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: block;
        }
        
        .expertise-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .expertise-description {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Industries Section */
        .industries-section {
            background: white;
            padding: 120px 0;
        }
        
        .industries-intro {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .industry-card {
            background: #F8F9FA;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #E2E8F0;
            position: relative;
        }
        
        .industry-card:hover {
            transform: translateY(-8px);
            background: #1B365D;
            color: white;
            box-shadow: 0 15px 30px rgba(27, 54, 93, 0.2);
        }
        
        .industry-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            display: block;
        }
        
        .industry-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .industry-description {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.5;
        }

        /* Company Section */
        .company-section {
            background: linear-gradient(135deg, #F8F9FA 0%, #E2E8F0 100%);
            padding: 120px 0;
        }
        
        .company-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .company-text h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #1B365D;
            margin-bottom: 30px;
        }
        
        .company-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #555;
        }
        
        .company-highlights {
            background: white;
            padding: 50px;
            border-radius: 15px;
            border-left: 8px solid #1B365D;
        }
        
        .highlight-item {
            margin-bottom: 25px;
            padding: 20px 0;
            border-bottom: 1px solid #E2E8F0;
        }
        
        .highlight-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .highlight-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1B365D;
            margin-bottom: 8px;
        }
        
        .highlight-description {
            color: #666;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-section {
            background: #1B365D;
            color: white;
            padding: 120px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .contact-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .contact-content p {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .contact-info-grid {
            display: grid;
            gap: 30px;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .contact-label {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 8px;
        }
        
        .contact-value {
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .footer-note {
            margin-top: 80px;
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
            opacity: 0.7;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
            
            .company-content,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .company-name {
                font-size: 3rem;
            }
            
            .hero-tagline {
                font-size: 1.4rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .stats-title {
                font-size: 2.3rem;
            }
            
            .expertise-grid,
            .industries-grid {
                grid-template-columns: 1fr;
            }
        }