    .feature-box {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            margin: 0; 
            color: #1e293b; 
            min-height: 100vh;
            background: #f8fafc;
        }
        
        /* Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
        }
        
        .logo-text span {
            color: #3b82f6;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-links a:hover {
            color: #3b82f6;
        }
        
        /* Hero section - Full screen height */
        .hero { 
            height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-top: 0;
        }
        
        /* P9 Image as background */
        .hero-bg {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 80%;
    background-image: url('/images/p9.png');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 0;
}
        
          
        /* Dark overlay for text readability */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero h1 { 
            font-size: 4rem; 
            margin-bottom: 20px; 
            font-weight: 800;
            letter-spacing: -0.02em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p { 
            font-size: 1.3rem; 
            margin-bottom: 35px; 
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .cta-button { 
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #0f172a; 
            padding: 16px 42px; 
            font-size: 1.2rem; 
            font-weight: 700; 
            border-radius: 50px; 
            text-decoration: none; 
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        
        .cta-button:hover { 
            transform: translateY(-3px); 
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            box-shadow: 0 12px 35px rgba(0,0,0,0.35);
        }
        
        /* Who We Are Section */
        .about-section {
            padding: 80px 40px;
            background: white;
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            color: #0f172a;
            margin-bottom: 20px;
            position: relative;
        }
        
        .about-content h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: #3b82f6;
            border-radius: 2px;
        }
        
        .about-content p {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .company-name {
            color: #3b82f6;
            font-weight: 700;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #3b82f6;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 5px;
        }
        
        .about-image {
            background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            color: white;
        }
        
        .about-image img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 20px;
            background: white;
            border-radius: 20px;
            padding: 15px;
        }
        
        .about-image h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .about-image p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .features { 
            display: flex; 
            justify-content: center; 
            gap: 40px; 
            padding: 70px 20px; 
            background: #f8fafc;
            flex-wrap: wrap;
        }
        
        .feature-box { 
            text-align: center; 
            max-width: 300px; 
            padding: 30px 25px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }
        
        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: #3b82f6;
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        
        .feature-box h3 { 
            color: #0f172a; 
            margin-bottom: 12px;
            font-size: 1.35rem;
            font-weight: 700;
        }
        
        .feature-box p { 
            color: #64748b; 
            line-height: 1.5;
            font-size: 0.9rem;
        }
        
        .footer {
            background: #0f172a;
            color: #94a3b8;
            text-align: center;
            padding: 40px;
            font-size: 0.8rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-logo img {
            width: 30px;
            height: 30px;
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 12px 20px;
            }
            .nav-links {
                gap: 15px;
            }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .cta-button { padding: 12px 30px; font-size: 1rem; }
            .about-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .about-content h2 { font-size: 2rem; }
            .features { gap: 20px; padding: 40px 20px; }
            .feature-box { max-width: 260px; padding: 20px; }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .nav-links { display: none; }
            .features { flex-direction: column; align-items: center; }
            .feature-box { max-width: 100%; width: 100%; }
            .about-stats { grid-template-columns: 1fr; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-content {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        .feature-box {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }