﻿   
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #eef2f6;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #0f1e2f;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5b342;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffd966;
        }

        /* ----- TOP INFO BAR (SAME AS HOME) ----- */
        .top-info-bar {
            background: linear-gradient(145deg, #1a2a3a 0%, #0f1e2f 100%);
            padding: 0.7rem 0;
            border-bottom: 3px solid #f5b342;
            color: #f0f6ff;
            font-size: 1rem;
            position: relative;
            z-index: 10;
            animation: slideDown 0.8s ease-out;
        }
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        .social-left {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .social-icon {
            color: #eef3ff;
            font-size: 1.9rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 30%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .social-icon:hover {
            transform: translateY(-3px) scale(1.08);
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.25);
        }
        .bi-facebook:hover { color: #1877f2; }
        .bi-instagram:hover { color: #e1306c; }
        .bi-linkedin:hover { color: #0a66c2; }
        .bi-twitter-x:hover { color: #ffffff; }

        .contact-right {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f0f6ff;
            text-decoration: none;
            transition: color 0.15s;
            font-size: 1.1rem;
        }
        .contact-item i {
            font-size: 1.6rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }
        .contact-item:hover {
            color: #ffd966;
        }
        .contact-item:hover i {
            color: #f5b342;
            transform: scale(1.05);
        }
        .divider-vertical {
            width: 1px;
            height: 28px;
            background: rgba(255,255,255,0.2);
            margin: 0 0.2rem;
        }

        /* ----- HEADER NAV (SAME AS HOME) ----- */
        .header-nav {
            background: #0f1e2f;
            border-bottom: 2px solid #f5b342;
            box-shadow: 0 10px 20px -8px rgba(0,0,0,0.4);
            padding: 0.4rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar .navbar-brand {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.7rem;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 5px rgba(245,180,66,0.3);
        }
        .navbar .navbar-brand i {
            color: #f5b342;
            font-size: 2.2rem;
            margin-right: 0.3rem;
            filter: drop-shadow(0 0 8px #f5b34277);
        }
        .navbar-nav .nav-link {
            color: #eef3ff !important;
            font-weight: 500;
            padding: 0.6rem 1.3rem !important;
            transition: all 0.25s;
            border-radius: 40px;
            margin: 0 0.2rem;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background: #f5b342;
            color: #0f1e2f !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 14px -6px #f5b342;
        }

        /* Dropdown Styles */
        .dropdown-menu {
            background: #1a2a3a;
            border: 2px solid #f5b342;
            border-radius: 16px;
            padding: 0.8rem 0;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
            animation: dropdownFade 0.3s ease;
            margin-top: 0.5rem !important;
        }
        @keyframes dropdownFade {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .dropdown-item {
            color: #eef3ff;
            padding: 0.7rem 1.8rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .dropdown-item:hover {
            background: #f5b342;
            color: #0f1e2f !important;
            padding-left: 2.3rem;
        }
        .dropdown-divider {
            background: #f5b342;
            opacity: 0.3;
            margin: 0.5rem 1rem;
        }

        /* ===== PAGE HEADER / BANNER ===== */
        .page-header {
            background: linear-gradient(135deg, #0f1e2f 0%, #1a2a3a 100%);
            padding: 60px 0;
            text-align: center;
            border-bottom: 4px solid #f5b342;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245,180,66,0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: rotate 20s infinite linear;
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .page-header h1 {
            color: white;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }
        .page-header h1 span {
            color: #f5b342;
        }
        .page-header p {
            color: #eef3ff;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-top: 20px;
        }
        .breadcrumb-item a {
            color: #f5b342;
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: white;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255,255,255,0.5);
        }

        /* ===== CYBERSECURITY OVERVIEW ===== */
        .overview-section {
            padding: 80px 0;
            background: white;
        }
        .overview-content {
            padding-right: 40px;
        }
        .overview-content h2 {
            color: #0f1e2f;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .overview-content h2 span {
            color: #f5b342;
        }
        .overview-content p {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .overview-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border: 4px solid #f5b342;
        }
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .overview-image:hover img {
            transform: scale(1.1);
        }

        /* ===== THREAT STATS ===== */
        .threat-stats {
            background: #0f1e2f;
            padding: 60px 0;
            color: white;
        }
        .stat-box {
            text-align: center;
            padding: 30px;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #f5b342;
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* ===== SECURITY SOLUTIONS ===== */
        .solutions-section {
            padding: 80px 0;
            background: #f8faff;
        }
        .solution-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-bottom: 4px solid transparent;
        }
        .solution-card:hover {
            transform: translateY(-15px);
            border-bottom-color: #f5b342;
            box-shadow: 0 20px 40px rgba(245,180,66,0.2);
        }
        .solution-icon {
            width: 80px;
            height: 80px;
            background: rgba(245,180,66,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #f5b342;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .solution-card:hover .solution-icon {
            background: #f5b342;
            color: #0f1e2f;
            transform: rotateY(360deg);
        }
        .solution-card h3 {
            color: #0f1e2f;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .solution-card p {
            color: #4a5568;
            margin-bottom: 20px;
        }
        .solution-features {
            list-style: none;
            padding: 0;
        }
        .solution-features li {
            padding: 8px 0;
            color: #4a5568;
            border-bottom: 1px solid #e2e8f0;
        }
        .solution-features li:last-child {
            border-bottom: none;
        }
        .solution-features i {
            color: #f5b342;
            margin-right: 10px;
        }

        /* ===== FIREWALL SOLUTIONS ===== */
        .firewall-section {
            padding: 80px 0;
            background: white;
        }
        .firewall-card {
            background: #f8faff;
            border-radius: 30px;
            padding: 40px;
            height: 100%;
            transition: all 0.3s ease;
            border-left: 5px solid #f5b342;
        }
        .firewall-card:hover {
            transform: translateX(10px);
            box-shadow: 0 20px 40px rgba(245,180,66,0.2);
        }
        .firewall-icon {
            width: 100px;
            height: 100px;
            background: #f5b342;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #0f1e2f;
            margin-bottom: 25px;
        }
        .firewall-card h3 {
            color: #0f1e2f;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .firewall-list {
            list-style: none;
            padding: 0;
        }
        .firewall-list li {
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .firewall-list i {
            color: #f5b342;
            font-size: 1.3rem;
        }

        /* ===== TREND MICRO SOLUTIONS ===== */
        .trendmicro-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f1e2f 0%, #1a2a3a 100%);
            color: white;
        }
        .trendmicro-section .section-header h2 {
            color: white;
        }
        .trendmicro-section .section-header p {
            color: #eef3ff;
        }
        .trend-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245,180,66,0.2);
            border-radius: 30px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        .trend-card:hover {
            transform: translateY(-15px);
            border-color: #f5b342;
            box-shadow: 0 30px 50px rgba(245,180,66,0.3);
            background: rgba(245,180,66,0.1);
        }
        .trend-logo {
            font-size: 4rem;
            color: #f5b342;
            margin-bottom: 20px;
        }
        .trend-card h3 {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .trend-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        .trend-features li {
            padding: 10px 0;
            color: #eef3ff;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .trend-features i {
            color: #f5b342;
            margin-right: 10px;
        }

        /* ===== ADDITIONAL SECURITY TOOLS ===== */
        .tools-section {
            padding: 80px 0;
            background: white;
        }
        .tool-item {
            text-align: center;
            padding: 30px;
            background: #f8faff;
            border-radius: 20px;
            transition: all 0.3s ease;
            height: 100%;
        }
        .tool-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(245,180,66,0.2);
        }
        .tool-icon {
            font-size: 3rem;
            color: #f5b342;
            margin-bottom: 15px;
        }
        .tool-item h4 {
            color: #0f1e2f;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .tool-item p {
            color: #4a5568;
            font-size: 0.95rem;
        }

        /* ===== COMPLIANCE SECTION ===== */
        .compliance-section {
            padding: 80px 0;
            background: #f8faff;
        }
        .compliance-badge {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        .compliance-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(245,180,66,0.2);
        }
        .compliance-icon {
            font-size: 3rem;
            color: #f5b342;
            margin-bottom: 15px;
        }
        .compliance-badge h4 {
            color: #0f1e2f;
            font-size: 1.3rem;
            font-weight: 600;
        }

        /* ===== PRICING SECTION ===== */
        .pricing-section {
            padding: 80px 0;
            background: #0f1e2f;
        }
        .pricing-section .section-header h2 {
            color: white;
        }
        .pricing-section .section-header p {
            color: #eef3ff;
        }
        .pricing-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245,180,66,0.2);
            border-radius: 30px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        .pricing-card:hover {
            transform: translateY(-15px);
            border-color: #f5b342;
            box-shadow: 0 30px 50px rgba(245,180,66,0.3);
        }
        .pricing-icon {
            font-size: 3rem;
            color: #f5b342;
            margin-bottom: 20px;
        }
        .pricing-card h3 {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: #f5b342;
            margin-bottom: 25px;
        }
        .pricing-price span {
            font-size: 1rem;
            color: #eef3ff;
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        .pricing-features li {
            padding: 10px 0;
            color: #eef3ff;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .pricing-features i {
            color: #f5b342;
            margin-right: 10px;
        }
        .pricing-btn {
            background: transparent;
            border: 2px solid #f5b342;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        .pricing-btn:hover {
            background: #f5b342;
            color: #0f1e2f;
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 80px 0;
            background: white;
        }
        .accordion-item {
            background: #f8faff;
            border: 1px solid #e2e8f0;
            border-radius: 10px !important;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .accordion-button {
            font-weight: 600;
            color: #0f1e2f;
            padding: 20px;
        }
        .accordion-button:not(.collapsed) {
            background: #f5b342;
            color: #0f1e2f;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: #f5b342;
        }
        .accordion-body {
            padding: 20px;
            color: #4a5568;
            line-height: 1.8;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f5b342 0%, #ffd966 100%);
            text-align: center;
        }
        .cta-content h2 {
            color: #0f1e2f;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .cta-content p {
            color: #1e293b;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #0f1e2f;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .cta-btn:hover {
            background: white;
            color: #0f1e2f;
            transform: translateY(-3px);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(145deg, #1a2a3a 0%, #0f1e2f 100%);
            color: #eef3ff;
            padding: 60px 0 20px;
            border-top: 4px solid #f5b342;
        }
        .footer h5 {
            color: #f5b342;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #f5b342;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #eef3ff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-links a:hover {
            color: #f5b342;
            transform: translateX(5px);
        }
        .footer-contact {
            list-style: none;
            padding: 0;
        }
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .footer-contact i {
            color: #f5b342;
            font-size: 1.2rem;
        }
        .footer-newsletter input {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(245,180,66,0.3);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            width: 100%;
            margin-bottom: 10px;
        }
        .footer-newsletter input:focus {
            outline: none;
            border-color: #f5b342;
        }
        .footer-newsletter button {
            background: #f5b342;
            color: #0f1e2f;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        .footer-newsletter button:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(245,180,66,0.2);
        }
        .footer-bottom p {
            margin-bottom: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Loading Animation */
        .loading-animation {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #0f1e2f;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(245,180,66,0.2);
            border-top: 5px solid #f5b342;
            border-radius: 50%;
            animation: spin 1s infinite linear;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .page-header h1 { font-size: 2.5rem; }
            .overview-content { padding-right: 0; }
        }
        @media (max-width: 768px) {
            .page-header h1 { font-size: 2rem; }
            .page-header p { font-size: 1rem; }
            .stat-number { font-size: 2.5rem; }
        }
    </style>