﻿/* Minimal styles trimmed for brevity in this cell. Full file was in previous bundle. */
:root {
    --gold:#fbbf24;
    --gold-2:#fb923c;
    --text:#e5e7eb;
    --bg:#0a0f1c;
    --bg2:#0b1020;
    --border:#1f2937;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter,system-ui,sans-serif;
    color: var(--text);
    background: radial-gradient(60% 60% at 50% -10%, rgba(251,191,36,0.08), rgba(0,0,0,0) 60%),linear-gradient(180deg,var(--bg2) 35%,var(--bg));
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

.section-border {
    border-top: 1px solid rgba(255,255,255,.05);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media(min-width:992px) {
    .grid-3 {
        grid-template-columns: repeat(3,1fr);
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media(min-width:768px) {
    .grid-2 {
        grid-template-columns: repeat(2,1fr);
    }
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2,6,23,.6);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.nav-links {
    display: none;
}

@media(min-width:768px) {
    .nav-links {
        display: flex;
        gap: 18px;
    }
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
}

    .nav-links a:hover {
        color: #fff;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .brand img {
        height: 50px;
        /*width: 32px;*/
    }

.hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 80px;
}

    .hero h1 {
        font-size: 40px;
        line-height: 1.1;
        margin: 16px 0 0;
    }

@media(min-width:768px) {
    .hero h1 {
        font-size: 56px;
    }
}

.hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.chip {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 20px;
    color: var(--gold);
    background: rgba(251,191,36,.12);
    border: 1px solid rgba(251,191,36,.35);
    padding: 6px 10px;
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: .2s;
}

.btn-primary {
    background: var(--gold);
    color: #000;
}

.btn-secondary {
    background: #111827;
    border-color: #374151;
    color: #e5e7eb;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary:hover {
    filter: brightness(1.15);
}

.ff-focus {
    outline-offset: 3px;
}

    .ff-focus:focus-visible {
        outline: 2px solid var(--gold);
        box-shadow: 0 0 0 4px rgba(251,191,36,.25);
    }

.card {
    background: rgba(2,6,23,.65);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

    .card .card-title {
        font-weight: 600;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size:24px;
    }

    .card-title .lucide 
    {
        width:64px !important;
        height:64px !important;
    }

    .card p{
        color:#ccc !important;
    }

.ff-glow:hover {
    animation: glowPulse 1.8s ease-in-out infinite;
    box-shadow: 0 8px 32px -10px rgba(251,191,36,.45), 0 0 24px rgba(251,191,36,.15) !important;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 6px 18px -12px rgba(251,191,36,.2),0 0 0 rgba(251,191,36,0);
    }

    50% {
        box-shadow: 0 12px 40px -12px rgba(251,191,36,.55),0 0 36px rgba(251,191,36,.18);
    }

    100% {
        box-shadow: 0 6px 18px -12px rgba(251,191,36,.2),0 0 0 rgba(251,191,36,0);
    }
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 999;
}

.sticky-inner {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(2,6,23,.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(251,191,36,.3);
    padding: 12px;
    border-radius: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: #000;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.kpi-card {
    background: rgba(2,6,23,.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.kpi-header {
    padding: 16px;
    font-weight: 600;
    color: #cbd5e1;
    border-bottom: 1px solid var(--border);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    padding: 16px;
}

@media(min-width:768px) {
    .kpi-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

.kpi-box {
    background: rgba(2,6,23,.7);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.kpi-top {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 12px;
}

    .kpi-top i {
        width: 16px;
        height: 16px;
        color: var(--gold);
    }

.kpi-value {
    margin-top: 8px;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.heading {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

    .heading h2 {
        font-size: 32px;
        margin: 8px 0 6px;
    }

    .heading p {
        color: #cbd5e1;
    }

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 20px;
    color: var(--gold);
    background: rgba(251,191,36,.1);
    border: 1px solid rgba(251,191,36,.35);
    padding: 6px 10px;
    border-radius: 999px;
}

.accordion {
    max-width: 920px;
    margin: 16px auto 0;
}

.acc-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(2,6,23,.6);
    overflow: hidden;
    margin-bottom: 10px;
}

.acc-trigger {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    color: #fff;
    padding: 14px 16px;
    font-weight: 600;
    cursor: pointer;
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 16px;
    color: #cbd5e1;
}

.acc-item.open .acc-content {
    max-height: 220px;
    padding: 0 16px 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
    }



    .modal-contents {
    background-image: url(../image/bg_one.jpg);
    border: none;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: .3rem;
    outline:;
    height: 50%;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: none;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
}

.modal-header {
    border-bottom: none;
}

.modal-dialog {
    margin-top: 20%;
}

.modal-body p {
    text-align: center;
    font-family: Montserrat-Regular;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 60px;
    margin-top: 30px;
}

.modal-body h1 {
    text-align: center;
    font-family: Montserrat-Regular;
    font-size: 42px;
    text-transform: uppercase;
    color: #47adff;
    font-weight: 700;
    border-bottom: 2px solid rgba(0,0,0,0.15);
    padding-bottom: 40px;
}

.modal-content {
    border: 3px solid #47adff;
}

.modal_bodys {
    background-image: url(../image/newpop.jpg);
    height: 470px;
    width: 750px;
    border: solid #fff 10px;
}

.modal a {
    position: relative;
    font-family: Montserrat-Regular;
    color: #fff;
    text-decoration: none;
    background-color: #f79c1d;
    font-size: 14px;
    display: block;
    padding: 0px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    box-shadow: 0px 10px 0px #d17a01, 0px 10px 30px #d17a01;
    -webkit-box-shadow: 0px 6px 0px #c67403, 0px 5px 0px #c67403;
    -moz-box-shadow: 0px 10px 0px #c67403, 0px 10px 30px #c67403;
    margin: 100px auto;
    text-align: center;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    width: 30%;
    top: 52%;
    left: -28%;
    padding:5px 2px;
}
    .modal a:hover {
        box-shadow:0px 2px 2px #d17a01, 0px 2px 2px #d17a01;
        color:#111;
        font-weight:600;
    }
 .modal-dialogs .close {
    float: right;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    /* margin-top: -16px; */
    /* margin-left: 20px; */
    position: relative;
   top: -14px;
    left: 1%;

}
.modal-dialogs {
    margin-top: 8%;
}

   .modal-dialog {
    margin-top: 8%;
}