﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.toolkit-container {
    max-width: 1300px;
    margin: 0 auto;
    /*padding: 40px 30px;*/
}

/* Header Section */
.toolkit-header {
    background: linear-gradient(135deg, #96c93e 0%, #8a8a8a 50%, #f8f9fa 100%);
    padding: 50px 60px;
    border-radius: 30px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toolkit-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(150, 201, 62, 0.15);
    border-radius: 50%;
}

.toolkit-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(147, 147, 147, 0.08);
    border-radius: 50%;
}

.toolkit-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

    .toolkit-header h1 span {
        color: #96c93e;
    }

.toolkit-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Widgets Row */
.widgets-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.widget {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

    .widget:nth-child(1) {
        animation-delay: 0.1s;
    }

    .widget:nth-child(2) {
        animation-delay: 0.2s;
    }

    .widget:nth-child(3) {
        animation-delay: 0.3s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.widget:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #96c93e, #8a2387);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.widget:hover::before {
    transform: scaleX(1);
}

.widget-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(150, 201, 62, 0.1), rgba(147, 147, 147, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.widget:hover .widget-icon {
    background: linear-gradient(135deg, #96c93e, #8a2387);
    transform: scale(1.1);
}

    .widget:hover .widget-icon i {
        color: white;
    }

.widget-icon i {
    font-size: 2rem;
    color: #96c93e;
    transition: all 0.3s ease;
}

.widget h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.widget p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.widget-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #96c93e, #8a2387);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .widget-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(150, 201, 62, 0.3);
    }

/* Content Sections */
.content-section {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #96c93e;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.content-section:nth-child(1) {
    animation-delay: 0.1s;
}

.content-section:nth-child(2) {
    animation-delay: 0.2s;
}

.content-section:nth-child(3) {
    animation-delay: 0.3s;
}

.content-section:nth-child(4) {
    animation-delay: 0.4s;
}

.content-section:nth-child(5) {
    animation-delay: 0.5s;
}

.content-section:nth-child(6) {
    animation-delay: 0.6s;
}

.content-section:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(150, 201, 62, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

    .section-header i {
        font-size: 2rem;
        color: #96c93e;
    }

    .section-header h2 {
        font-size: 1.6rem;
        color: #2c3e50;
    }

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

    .value-card:hover {
        border-bottom-color: #96c93e;
        transform: translateY(-5px);
    }

    .value-card i {
        font-size: 2rem;
        color: #96c93e;
        margin-bottom: 15px;
    }

    .value-card h4 {
        color: #2c3e50;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .value-card p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
    }

.message-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #96c93e;
    transition: all 0.3s;
}

    .message-box:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(150, 201, 62, 0.1);
    }

    .message-box i {
        color: #96c93e;
        margin-right: 10px;
    }

    .message-box p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }

.dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dos-box, .donts-box {
    padding: 25px;
    border-radius: 15px;
}

.dos-box {
    background: rgba(150, 201, 62, 0.1);
    border-left: 4px solid #96c93e;
}

.donts-box {
    background: rgba(255, 68, 68, 0.05);
    border-left: 4px solid #ff4444;
}

    .dos-box h4, .donts-box h4 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

        .dos-box h4 i {
            color: #96c93e;
            margin-right: 8px;
        }

        .donts-box h4 i {
            color: #ff4444;
            margin-right: 8px;
        }

    .dos-box ul, .donts-box ul {
        list-style: none;
        padding-left: 0;
    }

    .dos-box li, .donts-box li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .dos-box li i {
            color: #96c93e;
        }

        .donts-box li i {
            color: #ff4444;
        }

.post-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

    .post-card:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .post-card h4 {
        color: #96c93e;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .post-card p {
        color: #555;
        font-size: 0.9rem;
        line-height: 1.5;
    }

.hashtags {
    margin-top: 10px;
    color: #96c93e;
    font-size: 0.8rem;
}

.tagline {
    background: linear-gradient(135deg, #96c93e, #8a2387);
    color: white;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .toolkit-container {
        padding: 20px 15px;
    }

    .toolkit-header {
        padding: 30px 20px;
    }

        .toolkit-header h1 {
            font-size: 1.8rem;
        }

    .widgets-row {
        flex-direction: column;
        align-items: center;
    }

    .widget {
        max-width: 100%;
        width: 100%;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .dos-donts {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 25px 20px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }
}

/* Pulsing animation for widgets */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.widget:first-child {
    animation: pulse 2s ease-in-out infinite;
}






/*#################################################################
*//* User Avatar Styles */


.user-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #96c93e;
    box-shadow: 0 5px 15px rgba(150, 201, 62, 0.3);
    transition: all 0.3s ease;
}

.widget:hover .user-avatar {
    transform: scale(1.05);
    border-color: #8a2387;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #96c93e;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.avatar-badge i {
    font-size: 0.9rem;
    color: white;
}

/* User Name */
.user-name {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

/* Thank You Message */
.thank-you-message {
    background: linear-gradient(135deg, rgba(150, 201, 62, 0.1), rgba(147, 147, 147, 0.05));
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

    .thank-you-message i {
        font-size: 1.5rem;
        color: #96c93e;
        margin-bottom: 8px;
        display: inline-block;
        animation: heartbeat 1.5s ease infinite;
    }

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.thank-you-message p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 5px 0;
}

.thank-you-message .small-text {
    font-size: 0.85rem;
    color: #96c93e;
    font-weight: 500;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 15px auto;
    width: fit-content;
}

    .status-badge.registered {
        background: rgba(150, 201, 62, 0.15);
        color: #96c93e;
        border: 1px solid rgba(150, 201, 62, 0.3);
    }

    .status-badge i {
        font-size: 0.9rem;
    }

/* Unregister Button */
.unregister-btn {
    background: linear-gradient(135deg, #ff4444, #cc0000) !important;
    margin-top: 5px;
}

    .unregister-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
    }

/* Unregister Note */
.unregister-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .unregister-note i {
        color: #ff4444;
        font-size: 0.7rem;
    }




/*########################################


*/


/* Full Width Banner */
.widget-banner-full {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(150, 201, 62, 0.2);
    transition: all 0.3s ease;
}

    .widget-banner-full:hover {
        box-shadow: 0 5px 20px rgba(150, 201, 62, 0.1);
    }

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 25px;
}

@media (max-width: 800px) {
    .banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .banner-left {
        flex-direction: column;
    }

    .user-info {
        align-items: center;
    }
}


/*######################################################
*/
/* Wide Banner Widget */
.widget-banner {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #96c93e;
    border-right: 5px solid #939393;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.widget-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(150, 201, 62, 0.15);
}

/* Left Section - User Info */
.banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.user-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #96c93e;
    box-shadow: 0 5px 15px rgba(150, 201, 62, 0.2);
    transition: all 0.3s ease;
}

.widget-banner:hover .user-avatar {
    transform: scale(1.05);
    border-color: #8a2387;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #96c93e;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

    .avatar-badge i {
        font-size: 0.7rem;
        color: white;
    }

.user-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-name {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

    .status-badge.registered {
        background: rgba(150, 201, 62, 0.15);
        color: #96c93e;
        border: 1px solid rgba(150, 201, 62, 0.3);
    }

    .status-badge i {
        font-size: 0.8rem;
    }

/* Center Section - Thank You Message */
.banner-center {
    flex: 1;
    min-width: 250px;
}

.thank-you-message {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(150, 201, 62, 0.08), rgba(147, 147, 147, 0.05));
    padding: 12px 20px;
    border-radius: 12px;
}

    .thank-you-message i {
        font-size: 2rem;
        color: #96c93e;
        animation: heartbeat 1.5s ease infinite;
        flex-shrink: 0;
    }

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.message-text p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.message-text .small-text {
    font-size: 0.8rem;
    color: #96c93e;
    font-weight: 500;
    margin-top: 4px;
}

/* Right Section - Action */
.banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.widget-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #96c93e, #8a2387);
    color: white;
    text-decoration: none;
}

.unregister-btn {
    background: linear-gradient(135deg, #ff4444, #cc0000) !important;
}

.widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(150, 201, 62, 0.3);
}

.unregister-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.unregister-note {
    font-size: 0.7rem;
    color: #999;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .unregister-note i {
        color: #ff4444;
        font-size: 0.65rem;
    }

/* Responsive */
@media (max-width: 900px) {
    .widget-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .banner-left {
        flex-direction: column;
        text-align: center;
    }

    .user-info {
        align-items: center;
    }

    .thank-you-message {
        flex-direction: column;
        text-align: center;
    }

    .banner-right {
        width: 100%;
    }

    .widget-btn {
        width: 100%;
        justify-content: center;
    }
}