/* =========================
   POWERON BRAND COLORS
========================= */
:root {
    --poweron-black: #111111;
    --poweron-green: #2ecc71;
    --poweron-red: #e60023;
    --poweron-dark-text: #222222;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--poweron-dark-text);
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

/* =========================
   NAVBAR (WHITE VERSION)
========================= */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eeeeee;
    transition: 0.3s ease;
}

.navbar .nav-link {
    color: var(--poweron-dark-text) !important;
    font-weight: 600;
    margin-left: 15px;
}

.navbar .nav-link:hover {
    color: var(--poweron-green) !important;
}

.navbar-brand img {
    max-height: 45px;
}

/* =========================
   BUTTONS
========================= */
.btn-success {
    background-color: var(--poweron-green);
    border-color: var(--poweron-green);
}

.btn-success:hover {
    background-color: #27ae60;
    border-color: #27ae60;
}

/* =========================
   HERO SECTION
========================= */











.hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('images/hero.webp') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-weight: 700;
}

.hero .text-poweron-green {
    color: var(--poweron-green);
}

/* =========================
   CARDS
========================= */
.card {
    border: none;
    border-radius: 12px;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* =========================
   ICON COLORS
========================= */
.text-poweron-green {
    color: var(--poweron-green);
}

.text-poweron-red {
    color: var(--poweron-red);
}

/* =========================
   FOOTER
========================= */
footer {
    background-color: var(--poweron-black);
    color: #ffffff;
}

footer hr {
    border-color: #444;
}

/* =========================
   RESPONSIVE TWEAKS
========================= */
@media (max-width: 768px) {
    .navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .hero {
        height: 70vh;
        text-align: center;
        padding: 20px;
    }
}



.navbar {
    background-color: #ffffff !important;
    border-bottom: 3px solid #111111;
    box-shadow: 0 2px 0 #2ecc71;
}



 




/* =========================
   ANNOUNCEMENT BAR
========================= */
.announcement-bar {
    position: relative;
    width: 100%;
    background: #111111;
    color: #ffffff;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    border-bottom: 2px solid #2ecc71;
}



/* HERO BACKGROUND IMAGE */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('../images/hero.webp') center/cover no-repeat;
    z-index: 1;
}

.hero .container {
    z-index: 2;
}


/* =========================
   HERO TITLE ANIMATION
========================= */
/* HERO ANIMATIONS */

.hero-title {
    font-weight: 700;
}

/* Slide animation */
.slide-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease forwards;
}

/* Subtitle animation */
.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
    animation-delay: 1s;
}

/* Button animation */
.hero-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
    animation-delay: 1.5s;
}

/* typing word glow */
.typing-wrapper {
    font-size: 1.2em;
    font-weight: 700;
}

/* cursor */
.cursor {
    animation: blink 1s infinite;
}

/* glow effect */
.text-poweron-green {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46,204,113,0.7);
}

/* animations */

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    50% { opacity: 0; }
}


















