/* =========================================================
   Nowpe – White Theme (Logo Matched)
   ========================================================= */

/* Variables */
:root {
    /* Backgrounds */
    --bg-white: #F9FAFB;
    --surface-white: #FFFFFF;
    --border-light: #E6EAF0;

    /* Brand Colors */
    --brand-blue: #123E72;
    --brand-blue-soft: #1E5FA8;

    --brand-orange: #F59E0B;
    --brand-orange-dark: #E68905;

    --brand-green: #38B86C;

    /* Text */
    --text-dark: #0F172A;
    --text-muted: #64748B;

    /* Glass (light) */
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.08);
}

/* =========================================================
   Base
   ========================================================= */
body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Lexend', sans-serif;
    overflow-x: hidden;
}

/* =========================================================
   Soft Background Blobs (Light)
   ========================================================= */
.blob-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: move 22s infinite alternate;
}

.b1 {
    background: var(--brand-blue);
    top: -15%;
    left: -10%;
}

.b2 {
    background: var(--brand-orange);
    bottom: -15%;
    right: -10%;
    animation-delay: -6s;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(120px, 120px); }
}

/* =========================================================
   Navbar
   ========================================================= */
.main-nav {
    /* background:rgba(15, 23, 42, 0.08)!important; */
    background: #194C80;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
}

.logo-img {
    height: 70px;
    margin-right: 12px;
    background: white;
    padding: 6px;
    border-radius: 10px;
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--brand-blue);
}

.text-orange {
    color: var(--brand-orange);
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(
        90deg,
        var(--brand-blue),
        var(--brand-orange),
        var(--brand-orange-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 22px;
    max-width: 520px;
}

.status-pill {
    background: rgba(245, 158, 11, 0.12);
    color: var(--brand-orange-dark);
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.dot-pulse {
    height: 8px;
    width: 8px;
    background: var(--brand-orange);
    border-radius: 50%;
    margin-right: 10px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-premium {
    background: var(--brand-blue);
    color: white;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 14px;
    transition: 0.3s;
    border: none;
}

.btn-premium:hover {
    background: var(--brand-blue-soft);
    transform: translateY(-2px);
}

.btn-orange-lg {
    background: linear-gradient(
        135deg,
        var(--brand-orange),
        var(--brand-orange-dark)
    );
    color: #111;
    font-weight: 700;
    padding: 18px 42px;
    border-radius: 16px;
    border: none;
    transition: 0.4s;
}

.btn-orange-lg:hover {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.35);
    transform: translateY(-2px) scale(1.04);
}

/* =========================================================
   Floating UI
   ========================================================= */
.floating-ui-wrap {
    position: relative;
    height: 400px;
}

.float-card {
    background: var(--text-dark);
    border: 1px solid var(--border-light);
    padding: 30px;
    border-radius: 24px;
    position: absolute;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.card-1 {
    top: 0;
    right: 50px;
    width: 300px;
}

.card-2 {
    bottom: 50px;
    left: 0;
    width: 280px;
    animation-delay: -3s;
}

.icon-circle.bg-success {
    background: var(--brand-green) !important;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* =========================================================
   Service Cards
   ========================================================= */
.premium-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.premium-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-10px);
}

.premium-card.active {
    border-color: var(--brand-orange);
    background: rgba(245, 158, 11, 0.04);
}

.service-icon {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 25px;
    display: block;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(245, 158, 11, 0.18),
        transparent
    );
    pointer-events: none;
}

/* =========================================================
   About Section
   ========================================================= */
.about-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.about-list i {
    color: var(--brand-orange);
    margin-right: 10px;
}

.about-stat h3 {
    font-weight: 800;
    color: var(--brand-orange);
}

/* =========================================================
   Contact Section
   ========================================================= */
.contact-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.glass-input {
    background: #F8FAFC;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 14px 16px;
    border-radius: 12px;
}

.glass-input::placeholder {
    color: #94A3B8;
}

.glass-input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--brand-orange);
    background: #FFFFFF;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: #103156;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-light);
}

.footer-links a {
    color: var(--border-light);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin: 20px auto;
    }

    .hero-btns {
        text-align: center;
    }
}
