:root {
    --primary-blue: #0066b2;
    --primary-pink: #e91e8c;
    --primary-green: #00a651;
    --primary-red: #ed1c24;
    --primary-purple: #2d1b5e;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    background: linear-gradient( 135deg, var(--primary-purple) 0%, var(--primary-blue) 100% );
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        height: 60px;
        margin-right: 15px;
        background: white;
        padding: 5px;
        border-radius: 10px;
    }

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

    .nav-link:hover {
        color: white !important;
        transform: translateY(-2px);
    }

.hero-section {
    background: linear-gradient( 135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--primary-pink) 100% );
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
        opacity: 0.3;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-custom {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
}

.btn-primary-custom {
    background: white;
    color: var(--primary-blue);
    /*    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;*/
}

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        /*  transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);*/
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient( 90deg, var(--primary-blue), var(--primary-pink) );
        border-radius: 2px;
    }

.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-blue);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient( 135deg, var(--primary-blue), var(--primary-pink) );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.service-number {
    color: var(--primary-pink);
    font-weight: 700;
    margin-right: 8px;
}

.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    background: linear-gradient( 135deg, rgba(0, 102, 178, 0.05), rgba(233, 30, 140, 0.05) );
    border-radius: 15px;
    padding: 40px;
    border-left: 5px solid var(--primary-blue);
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient( 135deg, var(--primary-purple) 0%, var(--primary-blue) 100% );
    color: white;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    max-height: 250px;
    min-height: 250px;
}

    .contact-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

.contact-icon {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 0 20px;
}

    .footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer a:hover {
            color: white;
        }

.request-section {
    padding: 80px 0;
    background: white;
}

.request-form {
    background: linear-gradient( 135deg, rgba(0, 102, 178, 0.05), rgba(233, 30, 140, 0.05) );
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 0.2rem rgba(0, 102, 178, 0.15);
    }

.form-label {
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    font-size: 100px;
    opacity: 0;
    right: 0;
    top: 0;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 12px 20px;
    background: white;
    border: 2px dashed var(--primary-blue);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .file-upload-label:hover {
        background: rgba(0, 102, 178, 0.05);
        border-color: var(--primary-pink);
    }

    .file-upload-label i {
        font-size: 2rem;
        color: var(--primary-blue);
        margin-bottom: 10px;
    }

.uploaded-files {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.file-item-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.file-item-remove {
    background: #ff4757;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

    .file-item-remove:hover {
        background: #ff3838;
    }

.btn-submit {
    background: linear-gradient( 135deg, var(--primary-blue), var(--primary-pink) );
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

.success-message {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

    .success-message i {
        font-size: 3rem;
        margin-bottom: 15px;
    }

.signup-highlight {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

    .signup-highlight a {
        background-color: #ffffff;
        color: #00b894;
        padding: 6px 12px;
        border-radius: 20px;
        font-weight: bold;
        text-decoration: none;
    }

        .signup-highlight a:hover {
            background-color: #00cec9;
            color: white;
        }


.error-message {
    background: linear-gradient(135deg, #d63031, #fd6c00);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

    .error-message i {
        font-size: 3rem;
        margin-bottom: 15px;
    }



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-section {
    background: white;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient( 135deg, rgba(0, 102, 178, 0.05), rgba(233, 30, 140, 0.05) );
    border-radius: 15px;
    transition: all 0.3s;
}

    .stat-card:hover {
        transform: scale(1.05);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}


/*********For login/signup*/
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
}

    .auth-container .btn-primary-custom {
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s;
    }

        .auth-container .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

    .auth-header h2 {
        color: var(--primary-purple);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .auth-header p {
        color: #666;
    }

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

    .auth-link a {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
    }

        .auth-link a:hover {
            text-decoration: underline;
        }

.dashboard-container {
    padding: 110px 20px 40px;
    min-height: 100vh;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

    .dashboard-header h1 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .stat-card .icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .stat-card h3 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-purple);
        margin-bottom: 5px;
    }

    .stat-card p {
        color: #666;
        margin: 0;
    }

.requests-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.requests-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

    .requests-header h3 {
        color: var(--primary-purple);
        font-weight: 700;
        margin: 0;
    }

.filter-buttons .btn {
    margin-right: 10px;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .filter-buttons .btn.active {
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
        color: white;
        border: none;
    }

.request-item {
    background: linear-gradient(135deg, rgba(0, 102, 178, 0.05), rgba(233, 30, 140, 0.05));
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s;
}

    .request-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.request-title {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.request-id {
    font-size: 0.85rem;
    color: #666;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cfe2ff;
    color: #084298;
}

.status-completed {
    background: #d1e7dd;
    color: #0f5132;
}

.status-rejected {
    background: #f8d7da;
    color: #842029;
}

.request-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

    .detail-item i {
        margin-right: 8px;
        color: var(--primary-blue);
    }

.request-message {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.request-actions {
    display: flex;
    gap: 10px;
}

.btn-action {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-view {
    background: var(--primary-blue);
    color: white;
    border: none;
}

    .btn-view:hover {
        background: var(--primary-purple);
        color: white;
    }

.btn-delete {
    background: #dc3545;
    color: white;
    border: none;
}

    .btn-delete:hover {
        background: #bb2d3b;
    }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

    .empty-state i {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 20px;
    }

    .empty-state h4 {
        color: var(--primary-purple);
        margin-bottom: 10px;
    }

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 1.5rem;
    }

    .request-header {
        flex-direction: column;
        gap: 10px;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

        .filter-buttons .btn {
            margin: 0;
        }
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

        .navbar-brand img {
            height: 45px;
        }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

        .navbar-brand img {
            height: 40px;
            margin-right: 8px;
        }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}
