 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Hero Section */
        .phi-hero {
            background: linear-gradient(135deg, #FF8C19 0%, #1E3A8A 100%);

            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .phi-hero::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .phi-hero-content {
            position: relative;
            z-index: 2;
        }

        .phi-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .phi-hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .phi-hero-image {
            position: relative;
            animation: fadeInRight 1s ease-out 0.4s both;
        }

        .phi-hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
            border-radius: 15px;
        }

        .phi-cta-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .phi-btn-primary {
            background: white;
            color: #1E3A8A;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .phi-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: #1E3A8A;
        }

        .phi-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 13px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .phi-btn-secondary:hover {
            background: white;
            color: #1E3A8A;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Floating Elements */
        .phi-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .phi-float-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .phi-float-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .phi-float-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
            background: rgba(255, 140, 25, 0.2);
        }

        .phi-float-3 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        /* About Section */
        .phi-about {
            padding: 120px 0;
            background: #F8FAFC;
            position: relative;
        }

        .phi-section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1E3A8A;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .phi-section-subtitle {
            font-size: 1.2rem;
            color: #6B7280;
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .phi-feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .phi-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FF8C19, #1E3A8A);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .phi-feature-card:hover::before {
            transform: scaleX(1);
        }

        .phi-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .phi-feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .phi-feature-card:nth-child(1) .phi-feature-icon {
            background: #FFF5E6;
            color: #FF8C19;
        }

        .phi-feature-card:nth-child(2) .phi-feature-icon {
            background: #E6F3FF;
            color: #1E3A8A;
        }

        .phi-feature-card:nth-child(3) .phi-feature-icon {
            background: #E6FFF2;
            color: #10B981;
        }

        .phi-feature-card:hover .phi-feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .phi-feature-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .phi-feature-card p {
            color: #6B7280;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Services Section */
        .phi-services {
            padding: 120px 0;
            background: white;
        }

        .phi-service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .phi-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #FF8C19;
            transform: scaleY(0);
            transition: transform 0.3s ease;
            transform-origin: top;
        }

        .phi-service-card:hover::before {
            transform: scaleY(1);
        }

        .phi-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .phi-service-icon {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .phi-service-card:hover .phi-service-icon {
            transform: scale(1.1);
        }

        .phi-service-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .phi-service-card p {
            color: #6B7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Contact CTA Section */
        .phi-contact-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #1E3A8A 0%, #FF8C19 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .phi-contact-cta::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .phi-contact-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .phi-contact-cta p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .phi-contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .phi-hero h1 {
                font-size: 2.8rem;
            }
            
            .phi-hero p {
                font-size: 1.1rem;
            }
            
            .phi-section-title {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .phi-hero {
                min-height: 80vh;
                text-align: center;
            }
            
            .phi-hero h1 {
                font-size: 2.2rem;
            }
            
            .phi-hero p {
                font-size: 1rem;
            }
            
            .phi-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .phi-section-title {
                font-size: 2rem;
            }
            
            .phi-contact-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .phi-about,
            .phi-services {
                padding: 80px 0;
            }
            
            .phi-contact-cta {
                padding: 80px 0;
            }
            
            .phi-feature-card,
            .phi-service-card {
                padding: 30px 20px;
            }
        }