html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}



.text {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 200;
    letter-spacing: 0;
    font-size: clamp(18px, 2vw, 20px);
}

.font {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}
.font2 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: clamp(38px, 8vw, 100px);
}

/* CSS (Pure CSS - No Tailwind/Bootstrap needed) */
.noise-btn-container {
    position: relative;
    display: inline-flex;
    padding: 9px;
    border-radius: 9999px;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 32px -8px #ff510040;
}

.noise-btn-container:hover {
    transform: translateY(-2px);
}

.noise-gradient-layer {
    position: absolute;
    inset: 0;
    z-index: -20;
    background: linear-gradient(60deg, #ff5100, #0c57b8, #ff8c00, #ff5100);
    background-size: 300% 300%;
    animation: gradient-flow 8s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.noise-canvas-layer {
    position: absolute;
    inset: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    opacity: 0.52;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.noise-btn-inner {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer;
    border-radius: 9999px;
    border: none;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    padding: 0.85rem 1.75rem;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        inset 0px 2px 0px 0px rgba(255, 255, 255, 0.6),
        inset 0px -1px 1px 0px rgba(0, 0, 0, 0.12),
        0px 2px 4px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.15s ease-out;
}

.noise-btn-inner:active {
    transform: scale(0.96);
}


:root {
            --color-primary: #ff5100;
            --color-secondary: #0c57b8;
            --beam-speed: 4s;
            --beam-width: 1.75px;
            --beam-spread: 50%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #09090b;
            color: #fafafa;
        }

        /* 
          @property --angle enables smooth, hardware-accelerated rotation of conic gradients
        */
        @property --angle {
            syntax: "<angle>";
            initial-value: 0deg;
            inherits: false;
        }

        @keyframes spin-beam {
            to {
                --angle: 360deg;
            }
        }

        /* Border Beam Base Class */
        .border-beam-element {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            z-index: 10;
        }
        
        .border-beam-element::before {
            content: "";
            position: absolute;
            inset: 0; 
            border-radius: inherit;
            padding: var(--beam-width);
            
            /* Conic gradient rotating from #0c57b8 to #ff5100 */
            background: conic-gradient(
                from var(--angle), 
                transparent var(--beam-spread), 
                #0c57b8 82%, 
                #ff5100 100%
            );
            
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            
            animation: spin-beam var(--beam-speed) linear infinite;
        }

        /* Outer Glow Layer */
        .border-beam-glow::after {
            content: "";
            position: absolute;
            inset: -4px;
            border-radius: inherit;
            padding: 6px;
            background: conic-gradient(
                from var(--angle), 
                transparent var(--beam-spread), 
                rgba(12, 87, 184, 0.45) 80%, 
                rgba(255, 81, 0, 0.65) 100%
            );
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            filter: blur(14px);
            opacity: 0.85;
            animation: spin-beam var(--beam-speed) linear infinite;
            pointer-events: none;
            z-index: 5;
        }

        /* Dark Theme Styles (Default) */
        .card-theme-dark {
            background-color: rgba(3, 3, 96, 0.85);
            color: #fafafa;
            border-color: rgba(255, 255, 255, 0.1);
        }
        .card-theme-dark .stat-num {
            background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .card-theme-dark .stat-sub { color: #a1a1aa; }
        .card-theme-dark .icon-box {
            background: rgba(255, 81, 0, 0.1);
            border: 1px solid rgba(255, 81, 0, 0.2);
            color: #ff5100;
        }

        /* Light Theme Styles */
        .card-theme-light {
            background-color: rgba(255, 255, 255, 0.95);
            color: #09090b;
            border-color: rgba(0, 0, 0, 0.1);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
        }
        .card-theme-light .stat-num {
            background: linear-gradient(135deg, #09090b 30%, #3f3f46 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .card-theme-light .stat-sub { color: #52525b; }
        .card-theme-light .icon-box {
            background: rgba(12, 87, 184, 0.08);
            border: 1px solid rgba(12, 87, 184, 0.2);
            color: #0c57b8;
        }

        /* Hover animation for stat cards */
        .stat-card-hover {
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
        }
        .stat-card-hover:hover {
            transform: translateY(-4px);
        }

        /* Custom Scrollbar */
        pre::-webkit-scrollbar {
            height: 6px;
        }
        pre::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }

        .fade {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}


 .component-wrapper {
      width: 100%;
      height: 100%;
      padding: 0;
      background: #0033A0;
      box-sizing: border-box;
      overflow: auto;
    }

     /* =========================================
   ABOUT SECTION — MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    /* Section spacing */
    #about {
        padding: 70px 20px;
        overflow: hidden;
    }

    /* Main container */
    #about .wrap {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* Stack image + content */
    #about .about-grid {
        display: flex;
        flex-direction: column;
        gap: 45px;
        width: 100%;
    }

    /* =====================================
       IMAGE AREA
    ===================================== */

    #about .about-visual {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        position: relative;
    }

    #about .about-img {
        width: 100%;
        height: 220px;
        overflow: hidden;
        border-radius: 16px;
    }

    #about .about-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block;
    }

    /* First image */
    #about .about-img.a1 {
        transform: translateY(20px);
    }

    /* Second image */
    #about .about-img.a2 {
        transform: translateY(-20px);
    }

    /* Badge */
    #about .about-badge {
        position: absolute;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        z-index: 5;
        white-space: nowrap;
    }

    #about .about-badge b {
        font-size: 28px;
    }

    #about .about-badge small {
        font-size: 12px;
    }


    /* =====================================
       CONTENT
    ===================================== */

    #about .about-copy {
        width: 100%;
        padding: 0;
    }

    #about .kicker {
        display: block;
        font-size: 13px;
        margin-bottom: 12px;
    }

    #about .h-lead {
        font-size: 34px;
        line-height: 1.05;
        letter-spacing: -1px;
        margin-bottom: 22px;
    }

    #about .about-copy > p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 30px;
    }


    /* =====================================
       PILLARS
    ===================================== */

    #about .about-pillars {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    #about .pillar {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }

    #about .pillar .ic {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #about .pillar i {
        width: 28px !important;
        height: 28px !important;
    }

    #about .pillar h4 {
        font-size: 16px;
        line-height: 1.2;
        margin: 0 0 5px;
    }

    #about .pillar p {
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 400px) {

    #about {
        padding: 55px 16px;
    }

    #about .about-grid {
        gap: 40px;
    }

    #about .about-visual {
        gap: 8px;
    }

    #about .about-img {
        height: 180px;
        border-radius: 12px;
    }

    #about .h-lead {
        font-size: 30px;
    }

    #about .about-copy > p {
        font-size: 14px;
    }

    #about .pillar {
        gap: 10px;
    }

}

