body{
    font-family: Inter, sans-serif;
    background:#000000;
    color:#ffffff;
}

/* Navbar */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #000 !important;
    transition: all .3s ease;
}
.navbar.scrolled{
    background: #000000;
    border-bottom: 1px solid #222222;
    backdrop-filter: blur(10px);
}
.navbar-brand{
    color:#ffffff !important;
    font-weight: 700;
    font-size: 1.3rem;
}
.nav-link{
    color:#cccccc;
    font-size:14px;
    margin:0 12px;
    transition: color .3s;
}
.nav-link:hover{
    color:#ffffff;
}
.navbar-toggler{
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =========================
   HERO
========================= */
.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    padding-top:120px;
    background:#000000;
}
.hero-title{
    font-size:2.1rem;
    font-weight:700;
    letter-spacing:-1px;
    margin-bottom:0;
    color:#ffffff;
}
.description{
    padding-top: 20px;
    color:#bbbbbb;
    font-size:1.05rem;
    max-width: 380px;
}

/* Right Side - FOR GOVERNMENTS etc */
.hero-right{
    text-align:left;
    padding-left: 20px;
}
.hero-right p{
    margin:0;
    font-size:13.5px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    line-height:2.6;
    color:#aaaaaa;
}

/* Center Dashboard */
.hero-center{
    display:flex;
    justify-content:center;
    align-items:center;
    padding: 20px 0;
}
.hero-graph{
    width:100%;
    max-width:100%;
    height:auto;
    border-radius:24px;
    border:1px solid #222;
    box-shadow:0 20px 50px rgba(0,0,0,.7);
}
.hero-graph:hover{
    transform:translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

/* Buttons */
.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:16px;
}
.hero-buttons .btn{
    padding:15px 32px;
    border-radius:50px;
    font-weight:600;
}
.deploy-btn{
    background:#ffffff;
    color:#000000;
    border:none;
}
.sales-btn{
    background:transparent;
    color:#ffffff;
    border:1px solid #555;
}

/* Trusted Logos */
.trusted{
    padding:80px 0 60px;
    background:#000000;
    border-top:1px solid #222222;
    border-bottom:1px solid #222222;
}
.trusted h5{
    text-align:center;
    color:#888888;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:40px;
}
.logo-track{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}
.logo-track img{
    height:42px;
    width:auto;
    opacity:0.6;
    transition:.3s;
    filter: brightness(1.4) grayscale(10%);
}
.logo-track img:hover{
    opacity:1;
}

/* Mobile */
@media (max-width:991px){
    .hero{
        min-height:auto;
        padding-top:100px;
        padding-bottom:80px;
        text-align:center;
    }
    .hero-title{
        font-size:1.6rem;
        letter-spacing:-1.2px;
    }
    .hero-right{
        padding-left: 0;
        margin-top: 40px;
        text-align:center;
    }
    .hero-buttons{
        margin-top:35px;
        flex-direction:column;
        gap:30px;
        width:100%;
        margin-bottom:35px;
    }
    .hero-buttons .btn{
        width:100%;
        padding:15px 20px;
    }
    .logo-track{
        gap:40px;
    }
    .logo-track img{
        height:38px;
    }
}


/* Section */

.apps-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 0;
    border-bottom:1px solid #222222;
}

/* Heading */

.section-title{
    font-size:5rem;
    font-weight:700;
    line-height:.9;
    letter-spacing:-4px;
    margin-bottom:20px;
    
}

.section-description{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

/* Left */

.left-content{
    max-width:350px;
}

.left-content h2{
    font-size:2.2rem;
    line-height:1.1;
    font-weight:500;
    margin-bottom:50px;
}

.left-content h2 span{
    color:#6b7280;
}

.features-title{
    color:var(--muted);
    margin-bottom:15px;
}

.features-list{
    list-style:none;
    padding:0;
    margin:0;
}

.features-list li{
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

/* Dashboard */

.dashboard-wrapper{
    margin-top:40px;
}

.dashboard-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.30),
    0 30px 80px rgba(0,0,0,.50);
}

.dashboard-card img{
    width:100%;
    display:block;
}

/* Top Text */

.top-right{
    text-align:left;
}

.top-right p{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .apps-section{
        padding:120px 0 80px;
    }

    .section-title{
        font-size:4rem;
        text-align:center;
        margin-bottom:20px;
    }

    .top-right{
        text-align:center;
        margin-bottom:40px;
    }

    .left-content{
        max-width:100%;
        margin-top:40px;
    }

    .left-content h2{
        font-size:2.3rem;
    }

}
/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .apps-section{
        padding:100px 0 60px;
        min-height:auto;
    }

    /* Title */

    .section-title{
        font-size:2.5rem;
        line-height:1;
        letter-spacing:-2px;
        text-align:left;
        margin-bottom:20px;
    }

    /* Top Description */

    .top-right{
        text-align:left;
        margin-bottom:30px;
    }

    .top-right p{
        font-size:14px;
        line-height:1.8;
    }

    /* Dashboard First */

    .apps-section .row.align-items-center{
        display:flex;
        flex-direction:column;
    }

    .apps-section .row.align-items-center .col-lg-8{
        order:1;
    }

    .apps-section .row.align-items-center .col-lg-4{
        order:2;
    }

    /* Dashboard */

    .dashboard-wrapper{
        margin-top:0;
        margin-bottom:40px;
    }

    .dashboard-card{
        border-radius:16px;
    }

    /* Content */

    .left-content{
        max-width:100%;
        margin-top:0;
    }

    .left-content h2{
        font-size:1.35rem;
        line-height:1.5;
        font-weight:500;
        margin-bottom:25px;
    }

    .features-title{
        font-size:14px;
        margin-bottom:12px;
    }

    .features-list li{
        font-size:13px;
        margin-bottom:8px;
        letter-spacing:.5px;
    }

}

@media(max-width:991px){

    .dashboard-wrapper{
        margin:0 auto 30px;
        max-width:320px;

    }

    .dashboard-card{
        border-radius:14px;
        
    }

    .dashboard-card img{
        width:100%;
        height:auto;
        display:block;

    }

}





/* FOOTER */

.footer{
    padding:120px 0 40px;
}

.cta-box{
    background:linear-gradient(
        135deg,
        #0b0b10,
        #14141c
    );

    border:1px solid rgba(168,85,247,.15);
    border-radius:30px;

    padding:60px 40px;
    text-align:center;
}

.cta-box h2{
    font-size:44px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.cta-box p{
    color:#9ca3af;
    max-width:600px;
    margin:auto;
    line-height:1.9;
}

.cta-btn{
    display:inline-block;
    margin-top:35px;
    padding:16px 38px;

    border-radius:14px;

    background:#a855f7;
    color:#fff;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.cta-btn:hover{
    background:#9333ea;
}

.footer-main{
    margin-top:80px;
}

.brand{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.brand-text{
    color:#fff;
    max-width:400px;
    line-height:1.8;
}

.contact-title{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    margin-bottom:10px;
}

.contact-item{
    margin-bottom:25px;
}

.contact-item p{
    margin:0;
    color:#fff;
}

.footer-line{
    height:1px;
    background:rgba(255,255,255,.08);
    margin:50px 0 25px;
}

.copyright{
    color:#6b7280;
    text-align:center;
}

/* MOBILE */

@media(max-width:768px){

.footer{
    padding:70px 0 30px;
}

.cta-box{
    padding:50px 25px;
}

.cta-box h2{
    font-size:38px;
}

.brand{
    font-size:34px;
    margin-top:40px;
}

}
/* CONTACT */

.contact-section{
    padding:120px 30px;
    border-bottom:1px solid #222222;
}

.contact-left{
    padding-right:40px;
}

.section-tag{
    color:#a855f7;
    letter-spacing:2px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
}

.section-title{
    font-size:30px;
    font-weight:500;
    line-height:1.1;
    margin:15px 0 40px;
    letter-spacing: -1px;
}

.section-title span{
    color:#a855f7;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-icon{
    width:30px;
    height:30px;
    border-radius:8px;
    background:rgba(168,85,247,.1);
    border:1px solid rgba(168,85,247,.2);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#c084fc;
    font-size:18px;
}

.contact-item h5{
    margin-bottom:4px;
    font-size:16px;
    font-weight:600;
}

.contact-item p{
    color:#9ca3af;
    font-size:15px;
    margin:0;
}

.hours-card{
    margin-top:30px;
    background:#0b0b10;
    border:1px solid rgba(168,85,247,.15);
    border-radius:20px;
    padding:15px;
}

.hours-card i{
    color:#c084fc;
    font-size:26px;
}

.hours-card h5{
    margin-top:10px;
    font-size:20px;
    font-weight:600;
}

.hours-card p{
    color:#9ca3af;
    font-size:15px;
    margin-bottom:0;
}

/* FORM */

.contact-form{
    background:#0b0b10;
    border:1px solid rgba(168,85,247,.15);
    border-radius:8px;
    padding:35px;
}

.form-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:30px;
}

.form-icon{
    width:30px;
    height:30px;
    border-radius:8px;
    background:rgba(168,85,247,.1);
    border:1px solid rgba(168,85,247,.2);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#c084fc;
    font-size:16px;
}

.form-header h3{
    margin-bottom:4px;
    font-size:16px;
    font-weight:600;
}

.form-header p{
    color:#9ca3af;
    font-size:12px;
    margin:0;
}

.form-label{
    margin-bottom:8px;
    font-size:12px;
    font-weight:500;
}

.form-control,
.form-select{
    background:#09090f;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:10px 18px;
    border-radius:0px;
}

.form-control:focus,
.form-select:focus{
    background:#09090f;
    color:#fff;
    border-color:#a855f7;
    box-shadow:none;
}

textarea{
    resize:none;
}

.send-btn{
    width:100%;
    border:none;
    border-radius:14px;
    padding:15px;

    background:linear-gradient(
        90deg,
        #a855f7,
        #9333ea
    );

    color:#fff;
    font-weight:600;
    font-size:16px;

    margin-top:10px;
}

.secure-text{
    text-align:center;
    color:#9ca3af;
    font-size:14px;
    margin-top:18px;
}

/* MOBILE */

@media(max-width:768px){

.contact-section{
    padding:70px 0;
}

.contact-left{
    padding-right:0;
    margin-bottom:40px;
}

.section-title{
    font-size:36px;
    margin-bottom:30px;
}

.contact-item{
    padding:16px 0;
    gap:14px;
}

.contact-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.contact-item h5{
    font-size:18px;
}

.contact-item p{
    font-size:14px;
}

.hours-card{
    padding:20px;
}

.contact-form{
    padding:24px;
}

.form-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.form-header h3{
    font-size:20px;
}

}



 .about-section {
        padding: 120px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .container {
        max-width: 900px;
    }

    .section-tag {
        color: #a855f7;
        letter-spacing: 4px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 50px;
    }

    .section-title span {
        color: #a855f7;
    }

    .bio-content {
        background: #0b0b10;
        border: 1px solid rgba(168, 85, 247, 0.15);
        border-radius: 28px;
        padding: 60px 55px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .bio-paragraph {
        color: #d1d5db;
        font-size: 17.8px;
        line-height: 1.85;
    }

    .bio-paragraph p {
        margin-bottom: 28px;
    }

    .bio-paragraph p:last-child {
        margin-bottom: 0;
    }

    /* Subtle accent line */
    .accent-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #a855f7, #9333ea);
        margin-bottom: 25px;
        border-radius: 50px;
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 38px;
        }
        .bio-content {
            padding: 40px 30px;
        }
    }


 /* SECTION */

.training-gallery{
    padding:100px 0;
}

.section-tag{
    color:#a855f7;
    font-size:13px;
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
}

.section-title{
    font-size:52px;
    font-weight:700;
    line-height:1;
    margin:20px 0;
}

.section-text{
    color:#9ca3af;
    font-size:18px;
    line-height:1.9;
}

/* STATS */

.stat-card{
    background:#0b0b10;
    border:1px solid rgba(168,85,247,.15);
    border-radius:20px;
    padding:30px;
    height:100%;
}

.stat-card i{
    color:#a855f7;
    font-size:32px;
}

.stat-card h3{
    font-size:48px;
    margin:15px 0 5px;
}

.stat-card p{
    color:#9ca3af;
    margin:0;
}

/* PHOTOS */

.gallery-title{
    font-size:30px;
    margin-bottom:25px;
}

.gallery-card{
    overflow:hidden;
    border-radius:20px;
    background:#0b0b10;
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

/* VIDEOS */

.video-card{
    background:#0b0b10;
    border:1px solid rgba(255,255,255,.05);
    border-radius:20px;
    overflow:hidden;
}

.video-thumb{
    position:relative;
}

.video-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:70px;
    height:70px;

    border-radius:50%;
    background:rgba(0,0,0,.7);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;
}

.video-content{
    padding:20px;
}

.video-content h5{
    margin-bottom:8px;
    font-size:18px;
}

.video-content p{
    color:#9ca3af;
    margin:0;
    font-size:14px;
}

/* CTA */

.cta-box{
    margin-top:80px;
    background:#0b0b10;
    border:1px solid rgba(168,85,247,.15);
    border-radius:24px;
    padding:40px;
}

.cta-btn{
    display:inline-block;
    padding:14px 30px;
    background:#a855f7;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
}

/* MOBILE */

@media(max-width:768px){

.training-gallery{
    padding:70px 0;
}

.section-title{
    font-size:42px;
}

.section-text{
    font-size:15px;
}

.gallery-card img{
    height:140px;
}

.video-thumb img{
    height:140px;
}

.video-content{
    padding:12px;
}

.video-content h5{
    font-size:14px;
}

.video-content p{
    font-size:12px;
}

.play-btn{
    width:45px;
    height:45px;
    font-size:18px;
}

.stat-card h3{
    font-size:36px;
}

.gallery-title{
    font-size:24px;
}

}

/* experience-section */

.experience-section{
    padding:120px 0 80px;
}

.hero-tag{
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.85rem;
    margin-bottom:10px;
}

.experience-section h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.experience-section p{
    color:var(--muted);
    font-size:1.1rem;
    line-height:1.8;
}

.hero-image{
    width:100%;
    border-radius:20px;
    border:1px solid var(--border);
}

/* STATS */

.stats-section{
    margin-bottom:70px;
}

.stats-card{
    background:linear-gradient(145deg,#111118,#0A0A0F);
    border:1px solid var(--border);
    border-radius:18px;
    padding:25px;
    text-align:center;
    height:100%;
}

.stats-card i{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:15px;
}

.stats-card h3{
    font-size:2rem;
    font-weight:700;
}

.stats-card p{
    color:var(--muted);
    margin-bottom:0;
}

/* TIMELINE */

.timeline{
    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    left:30px;
    top:0;
    width:2px;
    height:100%;
    background:#2d2d3a;
}

.experience-card{
    background:linear-gradient(145deg,#111118,#0B0B10);
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    margin-bottom:30px;
    margin-left:80px;
    position:relative;
}

.timeline-icon{
    position:absolute;
    left:-70px;
    top:35px;
    width:50px;
    height:50px;
    border-radius:50%;
    border:2px solid var(--primary);
    background:var(--dark);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
}

.organization{
    font-size:1.7rem;
    font-weight:700;
}

.role{
    color:var(--primary);
    margin-bottom:15px;
    font-weight:500;
}

.period{
    color:var(--primary);
    font-weight:600;
    margin-bottom:15px;
}

.experience-card ul{
    padding-left:20px;
}

.experience-card li{
    margin-bottom:10px;
    color:#d3d3dd;
}

.focus-list{
    list-style:none;
    padding:0;
}

.focus-list li{
    margin-bottom:10px;
}

.focus-list li::before{
    content:'✓';
    color:var(--primary);
    margin-right:10px;
}

.logo-box{
    height:180px;
    border-radius:15px;
    background:white;
    color:black;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* CTA */

.cta{
    padding:100px 0;
    text-align:center;
}

.cta h2{
    font-size:3rem;
    font-weight:700;
}

.cta p{
    color:var(--muted);
}

.btn-purple{
    background:var(--primary);
    color:white;
    padding:12px 35px;
    border-radius:30px;
    border:none;
}

.btn-purple:hover{
    background:#8245ff;
    color:white;
}

/* MOBILE */

@media(max-width:992px){

.hero{
    text-align:center;
}

.hero-image{
    margin-top:40px;
}

.period{
    margin-top:20px;
}

}

@media(max-width:768px){

.experience-section{
    padding:100px 0 60px;
}

.experience-section h1{
    font-size:2.3rem;
}

.experience-section p{
    font-size:1rem;
}

.timeline::before{
    display:none;
}

.timeline-icon{
    display:none;
}

.experience-card{
    margin-left:0;
    padding:22px;
}

.organization{
    font-size:1.3rem;
}

.role{
    font-size:.95rem;
}

.stats-card{
    padding:20px;
}

.stats-card h3{
    font-size:1.5rem;
}

.cta h2{
    font-size:2rem;
}

}



/* service-section*/

.service-section{
    padding:120px 0 80px;
}

.hero-badge{
    display:inline-block;
    color:var(--primary);
    border:1px solid rgba(155,92,255,.25);
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:20px;
}

.service-section h1{
    font-size:3rem;
    font-weight:600;
    line-height:1.1;
}

.service-section h1 span{
    color:var(--primary);
}

.service-section p{
    color:var(--muted);
    font-size:1.1rem;
    line-height:1.8;
    margin-top:20px;
}

.service-section .hero-image{
    width:100%;
    border-radius:20px;
}

/* FEATURES */

.feature-list{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:30px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.feature-item i{
    color:var(--primary);
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:3rem;
    font-weight:700;
}

.section-title p{
    color:var(--muted);
}

/* SERVICE CARD */

.service-card{
    background:linear-gradient(
        145deg,
        #111118,
        #0a0a10
    );

    border:1px solid var(--border);
    border-radius:20px;

    padding:30px;
    height:100%;

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
}

.service-icon{
    width:80px;
    height:80px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #9B5CFF,
        #6e2fff
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;
    margin-bottom:25px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:var(--muted);
}

.learn-more{
    color:var(--primary);
    font-weight:600;
}

/* CTA */

.cta{
    margin-top:80px;
}

.cta-box{
    background:linear-gradient(
        145deg,
        #111118,
        #0a0a10
    );

    border:1px solid #6e2fff;
    border-radius:25px;

    padding:40px;
}

.btn-purple{
    background:var(--primary);
    color:white;
    padding:14px 30px;
    border:none;
    border-radius:40px;
}

.btn-purple:hover{
    background:#8245ff;
    color:white;
}

/* MOBILE */

@media(max-width:768px){

.service-section{
    padding:100px 0 50px;
}

.service-section h1{
    font-size:2.5rem;
}

.hero-image{
    margin-top:40px;
}

.section-title h2{
    font-size:2rem;
}

.service-card{
    padding:25px;
}

}