﻿body {
    margin: 0;
    padding: 0;
    background: #f0f2f5;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.topbar {
    background: #243b55;
    color: white;
    padding: 15px 0;
}

/* Header Gradient and Logo Alignment */
.wcd-topbar {
    background: #e6f2ff;
    color: #fff;
    padding: 24px 0 16px 0;
    box-shadow: 0 2px 24px 0 rgba(36,59,85,0.13);
}

.header-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
   /* border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 6px 0 rgba(36,59,85,0.05);
    border: 2px solid #f4f4f6;*/
}

.navbar-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    flex: 1;
    text-align: center;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(41,128,185,0.13);
    margin: 0 20px;
}

.navbar {
    background: #1565c0;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1rem;
    margin-right: 10px;
}

.dropdown-menu {
    background: #1976d2;
}

.dropdown-item {
    color: #fff;
}

    .dropdown-item:hover {
        background: #1565c0;
        color: #fff;
    }



.navbar-brand img {
    height: 40px;
}

.nav-link, .dropdown-toggle {
    color: white !important;
    margin-left: 15px;
    font-size: 17px;
}

.nav-badge {
    position: relative;
    top: -8px;
    left: -10px;
    background: #28a745;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

.card-counter {
    padding: 20px;
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
}

.yellow {
    background: #f1c40f;
}

.blue {
    background: #3498db;
}

.green {
    background: #1abc9c;
}

.red {
    background: #e74c3c;
}

.graph_head h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial {
    background: #243b55;
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

    .testimonial .img-box img {
        max-width: 100px;
        border-radius: 50%;
        margin: 0 auto 20px;
    }

    .testimonial p {
        font-size: 16px;
        line-height: 1.5;
    }

.progress-label {
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.skill-bar {
    margin-bottom: 15px;
}

.dash_blog {
    background: white;
    border-radius: 8px;
    margin-bottom: 30px;
}

.dash_head {
    background: #243b55;
    color: white;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dash_head h3 {
        margin: 0;
        font-size: 20px;
    }

    .dash_head .plus_green_bt {
        font-size: 24px;
        color: #28a745;
        cursor: pointer;
    }

.task_list_main ul, .msg_list_main ul {
    list-style: none;
    padding: 15px;
    margin: 0;
}

    .task_list_main ul li, .msg_list_main ul li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

        .task_list_main ul li:last-child, .msg_list_main ul li:last-child {
            border: none;
        }

.read_bt {
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    margin: 15px;
}



/* 🔔 Blinking styles */
.blinking-box {
    text-align: center;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 15px;
}

.blink-1 {
    background-color: #ffeb3b;
    animation: bounceBlink 1.5s infinite;
}

.blink-2 {
    background-color: #f44336;
    animation: pulseBlink 2s infinite;
    color: white;
}

@keyframes bounceBlink {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseBlink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.blinking-box a {
    text-decoration: underline;
    color: inherit;
}

@media (max-width: 767px) {
    .wcd-topbar .header-logo {
        width: 48px;
        height: 48px;
    }

    .navbar-title {
        font-size: 1.1rem;
        margin: 0 10px;
    }
}
.wcd-navbar {
    background: #1565c0;
    box-shadow: 0 4px 16px 0 rgba(21,101,192,0.07);
}

/**************************************************/

/* Nav-link underline animation */
.wcd-link span {
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

    .wcd-link span::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 3px;
        background: #ffbe76;
        border-radius: 2px;
        transition: width .35s cubic-bezier(.61,.03,.25,1);
    }

.wcd-link:hover span::after, .wcd-link:focus span::after, .navbar-nav .active > .wcd-link span::after {
    width: 100%;
}
/* Navbar dropdown animation */
.animate-menu {
    animation: menuFadeIn .7s cubic-bezier(.61,.03,.25,1);
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-dropdown {
    animation: dropdownPop .3s cubic-bezier(.61,.03,.25,1);
}

@keyframes dropdownPop {
    from {
        opacity: 0;
        transform: scaleY(0.9);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}
/* Header and Footer Margin Fix */
.footer {
    background: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 50px;
}

/*this below from banner*/

.partner-banner {
    background: #ffeb3b; /* bright yellow */
    padding: 18px 12px;
    border-radius: 12px 12px 12px 12px / 10px 10px 10px 10px; /* curved edges with a slight "scroll" curl effect */
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    max-width: 600px;
    margin: 30px auto;
    font-weight: 700;
    font-size: 1.3rem;
    color: #7b1fa2; /* deep magenta/dark purple */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    animation: bannerPulse 3s ease-in-out infinite;
    cursor: pointer;
}

.partner-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

    .partner-link:hover {
        color: #4a148c;
        text-shadow: 1px 1px 4px #b39ddb;
    }

/* Subtle pulsating animation to catch attention */
@keyframes bannerPulse {
    0%, 100% {
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 6px 16px rgba(255, 235, 59, 0.7);
        transform: scale(1.02);
    }
}



/*if requre */
/*this below form CM command Minister photo contents */
/*.profile-card {
    background: #f8f9fa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px;
    color: #333;
}

    .profile-card h6 {
        font-weight: 600;
        margin-bottom: 8px;
        color: #2c3e50;
    }

    .profile-card p {
        font-size: 0.9rem;
    }

.blinking-box {
    font-weight: 600;
    border: 1px solid #ccc;
}

.blink-1 {
    animation: bounceBlink 2s infinite;
    border-color: #28a745;
}

.blink-2 {
    animation: pulseBlink 2.5s infinite;
    border-color: #007bff;
}

@keyframes bounceBlink {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@keyframes pulseBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}*/



