html {
  font-size: 12px;
}

@media (min-width: 768px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 14px;
  }
}

    /* Welcome Section */
    .welcome-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(135deg, #3b82f6, #10b981);
        color: white;
        padding: 40px 20px;
        border-radius: 10px;
        margin: 20px;
        flex-wrap: wrap;
    }

    .welcome-text {
        max-width: 50%;
        margin: 2%;
    }

    .welcome-text h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .welcome-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .stats {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .stat-card {
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 15px 20px;
        border-radius: 8px;
        min-width: 100px;
        text-align: center;
    }

    .stat-card h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .stat-card span {
        font-size: 12px;
        color: #e0e0e0;
    }

    .welcome-image {
        max-width: 45%;
    }

    .welcome-image img {
        width: 100%;
        border-radius: 12px;
    }

    @media (max-width: 768px) {
        .welcome-section {
            flex-direction: column;
            align-items: flex-start;
        }

        .welcome-text, .welcome-image {
            max-width: 100%;
        }
    }


 /* Quick Actions */
.quick-actions{margin: 20px}
    

 .quick-actions h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .quick-actions p.subtitle {
        color: #555;
        margin-bottom: 20px;
    }

    .quick-actions .card-container {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin: 20px;
    }

    .quick-actions .card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        flex: 1 1 calc(33.33% - 20px);
        padding: 20px;
        min-width: 280px;
        position: relative;
    }

    .quick-actions .card-icon {
        font-size: 24px;
        background-color: #f0f0f0;
        border-radius: 6px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .quick-actions .status {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 12px;
        font-weight: bold;
    }

    .quick-actions .status.green {
        color: green;
    }

    .quick-actions .status.red {
        color: red;
    }

    .quick-actions .status.orange {
        color: orange;
    }

    .quick-actions .card h3 {
        margin-bottom: 10px;
    }

    .quick-actions .card p.description {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
    }

    .quick-actions .features {
        list-style: none;
        padding: 0;
        margin-bottom: 15px;
    }

    .quick-actions .features li {
        margin-bottom: 8px;
        font-size: 14px;
        color: #333;
    }

    .quick-actions .action-btn {
        display: block;
        padding: 10px;
        color: white;
        text-align: center;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        text-decoration: none;
    }

    .quick-actions .fees-btn {
        background: linear-gradient(90deg, #3b82f6, #60a5fa);
    }

    .quick-actions .message-btn {
        background: linear-gradient(90deg, #34d399, #6ee7b7);
    }

    .quick-actions .admission-btn {
        background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    }

    .quick-actions .institute-btn {
        background: linear-gradient(90deg, #fb923c, #fdba74);
    }

    .quick-actions .trainee-btn {
       background: linear-gradient(90deg, #34d399, #6ee7b7);
    }

    .quick-actions .analytics-btn {
        background: linear-gradient(90deg, #f87171, #fca5a5);
    }

.third{margin: 40px}
.fourth {
    
    border: none;
    margin-top: 2%;
    overflow: hidden;
}

