        /* ==========================================================================
           1. AGGRESSIVE CANVAS & THEME RESET (Removes White Corners & Borders)
           ========================================================================= */
        html, body, #page, .site, .site-content, .ast-container, 
        .elementor-section, .elementor-container, .elementor-column, 
        .elementor-widget-wrap, .elementor-widget-html, .elementor-widget-container,
        .e-con, .e-con-inner {
            background-color: #0b0f19 !important;
            margin: 0 !important;
            padding: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: #94a3b8 !important;
            line-height: 1.6;
            background-color: #0b0f19 !important;
        }

        /* ==========================================================================
           2. GLOBAL HIGH-CONTRAST TEXT OVERRIDES (Fixes Theme Bleeding)
           ========================================================================= */
        .hero-content h1, 
        .section-header h2, 
        .card h3, 
        .team-card h3.member-name, 
        .contact-info-panel h3,
        .form-group label,
        .logo {
            color: #ffffff !important;
            font-weight: 700 !important;
            letter-spacing: -0.025em;
        }

        .hero-content p, 
        .section-header p, 
        .card-desc, 
        .member-bio, 
        .contact-info-panel p,
        .site-footer p {
            color: #94a3b8 !important;
        }

        /* ==========================================================================
           3. SITE DESIGN LAYOUT & UTILITIES
           ========================================================================= */
        .cloudro-wrapper {
            background-color: #0b0f19;
            width: 100%;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        /* Navbar Layout */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 4rem;
            background-color: rgba(11, 15, 25, 0.9);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo span {
            color: #6366f1;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: #94a3b8 !important;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #6366f1 !important;
        }

        /* Menu Toggle Button for Mobile Devices */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        /* Hero Layout */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            padding: 8rem 4rem 4rem 4rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .hero-content {
            flex: 1;
            max-width: 650px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            color: #a5b4fc !important;
            padding: 0.5rem 1.2rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .btn-group {
            display: flex;
            gap: 1.25rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: #ffffff !important;
            border: none;
        }

        .btn-primary:hover {
            opacity: 0.95;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff !important;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Hero Graphic Canvas */
        .hero-graphic {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 450px;
        }

        .circle-container {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 2px dashed rgba(99, 102, 241, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: spin 40s linear infinite;
        }

        .center-node {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, rgba(11,15,25,1) 70%);
            border: 2px solid #6366f1;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
            animation: anchor-reverse 40s linear infinite;
        }

        .floating-node {
            position: absolute;
            width: 50px;
            height: 50px;
            background: #1e293b;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            animation: anchor-reverse 40s linear infinite;
        }

        .node-1 { top: -25px; left: 125px; }
        .node-2 { top: 200px; left: 255px; }
        .node-3 { top: 200px; left: -5px; }

        @keyframes spin { 100% { transform: rotate(360deg); } }
        @keyframes anchor-reverse { 100% { transform: rotate(-360deg); } }

        /* Stats Section */
        .stats-panel {
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1rem;
            padding: 2.5rem;
            max-width: 1100px;
            margin: 2rem auto 6rem auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            text-align: center;
            gap: 2rem;
        }

        .stats-panel h3 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #a5b4fc, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stats-panel p {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        /* Section Typography Header Blocks */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
        }

        /* Grid Framework layouts */
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        /* Component Cards Design */
        .card {
            background: rgba(17, 24, 39, 0.6) !important;
            border: 1px solid rgba(255, 255, 255, 0.05) !important;
            border-radius: 1rem;
            padding: 2.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: rgba(99, 102, 241, 0.3) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(17, 24, 39, 0.8) !important;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 0.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
            color: #6366f1;
        }

        .card h3 {
            font-size: 1.35rem !important;
            margin-bottom: 1rem !important;
        }

        /* Dedicated Checklist Architecture styling */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #ffffff !important;
            font-weight: 500;
        }

        .feature-list svg {
            color: #10b981;
            flex-shrink: 0;
        }

        /* Team Framework Custom Card Design */
        .team-card {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-start;
            background: rgba(17, 24, 39, 0.6) !important;
            border: 1px solid rgba(255, 255, 255, 0.05) !important;
            border-radius: 1rem;
            padding: 2.5rem;
        }

        .team-avatar-wrapper {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #6366f1;
            flex-shrink: 0;
        }

        .team-info {
            width: 100%;
        }

        .team-info h3.member-name {
            font-size: 1.5rem !important;
            margin: 0 0 0.25rem 0 !important;
        }

        .team-info .member-role {
            color: #8b5cf6 !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Contact Structural Block Design */
        .contact-layout {
            display: grid;
            grid-template-columns: 45% 55%;
            background: rgba(17, 24, 39, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }

        .contact-info-panel {
            padding: 4rem;
            background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-info-panel h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .contact-channels {
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .channel-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #ffffff !important;
            font-weight: 500;
        }

        .channel-item svg {
            color: #3b82f6;
        }
        a{
            color: #FFFFFF;
        }
        .contact-form-panel {
            padding: 4rem;
            background: rgba(11, 15, 25, 0.3);
        }

        /* Forms Layout & Inputs Configuration */
        .form-group {
            margin-bottom: 1.75rem;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            background: #090d16 !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 0.5rem;
            padding: 0.85rem 1rem;
            color: #ffffff !important;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: #6366f1 !important;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
        }

        .form-submit-btn {
            width: 100%;
            border: none;
            font-size: 1rem;
            padding: 1rem;
        }

        /* Success Message Banner Layout */
        .success-banner {
            display: none;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #34d399 !important;
            padding: 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-align: center;
            margin-top: 2rem;
        }

        /* Error Banner Display Layout */
        .error-banner {
            display: none;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #f87171 !important;
            padding: 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-align: center;
            margin-top: 2rem;
        }

        /* Footer Infrastructure styling */
        .site-footer {
            text-align: center;
            padding: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            background-color: #070a10;
        }

        /* ==========================================================================
           4. ADAPTIVE RESPONSIVE FRAMEWORK BREAKPOINTS
           ========================================================================= */
        @media (max-width: 1200px) {
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 1024px) {
            .hero-section { flex-direction: column; text-align: center; padding: 4rem 2rem; }
            .hero-content { max-width: 100%; }
            .btn-group { justify-content: center; }
            .grid-3 { grid-template-columns: repeat(2, 1fr); }
            .grid-2, .contact-layout { grid-template-columns: 1fr; }
            .contact-info-panel { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 3rem; }
            .contact-form-panel { padding: 3rem; }
        }

        @media (max-width: 768px) {
            .navbar { padding: 1.5rem 2rem; position: relative; }
            .menu-toggle { display: block; }
            
            .nav-links { 
                display: none; 
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(11, 15, 25, 0.98);
                backdrop-filter: blur(16px);
                padding: 2rem;
                box-sizing: border-box;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                gap: 1.5rem;
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            .hero-content h1 { font-size: 2.5rem; }
            .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .stats-panel { grid-template-columns: 1fr; gap: 1.5rem; }
            .team-card { align-items: center; text-align: center; }
        }
