/* Global Styles */
html{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

/* Hero Portal Styles */
.hero-portal {
    background: transparent;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Rounded hero card */
.hero-portal-inner {
    background: #f1f1f1; /* clean white panel */
    border-radius: 1.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Logo inside hero */
.hero-logo {
    max-width: 100px;
    height: auto;
}

/* Hero Title */
.hero-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
}

/* Subtitle */
.hero-subtitle {
    color: #0f172a;
    max-width: 40rem;
}

/* Primary hero button */
.hero-primary-btn {
    background-color: #1f2937;
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
}

/* Hover effect for primary hero button */
.hero-primary-btn:hover {
    background-color: #111827;
    color: #fff;
}

/* Secondary hero button */
.hero-secondary-btn {
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
    border: 1px solid #9ba3af;
    color: #1f2937;
    background: transparent;
}

/* Hover effect for secondary hero button */
.hero-secondary-btn:hover {
    background-color: #e5e7eb;
}

/* Hero stats */
.hero-stat {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 0.6rem 0.9rem;
    min-width: 180px;
}

/* Hero stat label */
.hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    display: block;
    margin-bottom: 0.15rem;
}

/* Hero stat value */
.hero-stat-value {
    font-size: 0.85rem;
    color: #374151;
}

/* Quick Links inside hero */
.hero-quicklink {
    background-color: #B7D3E2;
    color: #111;                  /* FIXED: text is now visible */
    padding: 4px 12px;
    font-size: 0.8rem;
}

/* Location card */
.hero-location-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

/* Location dot */
.hero-location-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #16a34a;
}

/* Small screen tweaks */
@media (max-width: 767.98px) {
    .hero-portal-inner {
        padding-inline: 1.25rem;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-logo {
        max-width: 60px;
    }
}

/* Weather Text Styles */
.hero-weather-text div {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.3;
}

/* If the weather line wraps, keep it neat */
.hero-weather-text span {
    white-space: nowrap;
}


/* Quick Link Buttons */
.button {
    background-color: #c3deec;
    color: #222121;
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

/* Hover effect for buttons */
.button:hover {
    background-color: #9bb8c6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Dashboard Cards */
.tech-card {
    border-radius: 0.75rem;
    background-color: #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover effect for tech cards */
.tech-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

/* Icon Circle Wrapper */
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f5f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

/* Tech Card Icon */
.tech-card-icon {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .tech-card,
    .button {
        transition: none;
    }
}

/* Login Card Styles */
.card-header,
.card-body, .card-login{
    background-color: #f8f9fa;
    border-radius: 10px;
}