:root {
    --primary-color: #4a6bff;
    --primary-dark: #3a56d4;
    --accent-color: #ff6b6b;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #fff;
    --grey-text: #6c757d;
    --gren-color : #28a745;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 1.2rem;
}


body {
    background-color: skyblue;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}
/* icon green */
.icon-green {
    color: var(--gren-color);
    font-size: 2rem;
}


.hero-section {
    text-align: center;
    padding: 5rem 0rem;
    background: linear-gradient(135deg, #4a6bff, #6e47d9);
    color: white;
    margin-bottom: 3rem;
    border-radius: 0 0 50% 50% / 15%;
    position: relative;
}

.subtitle {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.btn-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 107, 107, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.search-bar input{
    width:32rem;
}

#statusNew{
    background-color: #F0E68C;
}
#statusProgress{
    background-color: #87CEFA;
}
#statusReview{
    background-color: #AC92EB;
}
#statusFinished{
    background-color: #80dd97;
}
#statusCanceled{
    background-color: #FFA07A;
}







.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.workflow-section {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.workflow-section h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--dark-text);
}

.workflow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-feature {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.workflow-icon {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    font-size: 2.5rem;
}

.workflow-content {
    padding: 2rem;
    text-align: left;
}

.workflow-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.workflow-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.workflow-content li {
    padding: 0.7rem 0;
    position: relative;
    padding-left: 1.8rem;
}

.workflow-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.reminder-section {
    padding: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.reminder-content, .reminder-image {
    flex: 1;
    min-width: 300px;
}

.reminder-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.reminder-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--grey-text);
}

.reminder-features {
    list-style-type: none;
    padding: 0;
}

.reminder-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.reminder-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.reminder-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.status-section {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.status-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.status-section > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--grey-text);
}

.status-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-item {
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-item i {
    margin-right: 0.8rem;
}

.status-arrow {
    color: var(--grey-text);
    font-size: 1.5rem;
}

.status-customize {
    font-style: italic;
    color: var(--grey-text);
}

.cta-section {
    background: linear-gradient(135deg, #4a6bff, #6e47d9);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 1200px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}



.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}







.form-container {
    max-width: 800px;
    margin: 2rem auto;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.form-body {
    display: flex;
    flex-wrap: wrap;
}

.form-section {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
}

.form-section-title {
    color: #6a11cb;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #6a11cb;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #6a11cb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
}

.btn-submit {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
    margin: 1.5rem auto;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.btn-container {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
}


  .page-container {
        max-width: 1200px;
        margin: 2rem auto;
    }
    
  
    
    .add-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        color: white;
        text-decoration: none;
    }
    
    

    
    .alert-danger {
        background-color: #f8d7da;
        border-left-color: #dc3545;
        color: #721c24;
    }
    
    .alert-warning {
        background-color: #fff3cd;
        border-left-color: #ffc107;
        color: #856404;
    }
    
    .alert-info {
        background-color: #d1ecf1;
        border-left-color: #17a2b8;
        color: #0c5460;
    }
    
    .alert p {
        margin: 0.5rem 0;
    }
    
    .card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .card-header {
        background: linear-gradient(to right, #6a11cb, #2575fc);
        color: white;
        padding: 1.25rem 1.5rem;
        font-size: 1.25rem;
        font-weight: bold;
        border-bottom: none;
    }
    
    .card-body {
        padding: 1.5rem;
        background: #f8f9fa;
    }
    
    .table {
        border-collapse: separate;
        border-spacing: 0;
        width: 100%;
        background: white;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .table thead th {
        background: #e9ecef;
        color: #495057;
        font-weight: 600;
        padding: 1rem;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        border: none;
    }
    
    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-top: 1px solid #f1f1f1;
    }
    
    .table-striped tbody tr:nth-of-type(odd) {
        background-color: rgba(0,0,0,0.02);
    }
    
    .action-buttons {
        display: flex;
        gap: 0.5rem;
    }
    

    .btn {
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.2s;
        text-decoration: none;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 90px;
    }
   
    
    .btn-warning {
        background: linear-gradient(to right, #ffc107, #ff9800);
        color: white;
    }
    
    .btn-danger {
        background: linear-gradient(to right, #dc3545, #c82333);
        color: white;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        color: white;
        text-decoration: none;
    }
    
    .empty-message {
        text-align: center;
        padding: 2rem;
        color: #6c757d;
        font-style: italic;
    }
    
    .status-badge {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        text-align: center;
    }








        /* Base Container */
        .page-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        .withAddIcon{
            background: linear-gradient(to right, #28a745, #20c997);
        }
    /* Add Button */
    .add-button {
        background: linear-gradient(to right, #28a745, #20c997);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        transition: transform 0.2s, box-shadow 0.2s;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
        
        
        /* Alerts */
        .alert {
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
            border-left: 5px solid;
        }
        
        .alert-success {
            background-color: #d4edda;
            border-left-color: #28a745;
            color: #155724;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            border-left-color: #dc3545;
            color: #721c24;
        }
        
        .alert-warning {
            background-color: #fff3cd;
            border-left-color: #ffc107;
            color: #856404;
        }
        
        .alert-info {
            background-color: #d1ecf1;
            border-left-color: #17a2b8;
            color: #0c5460;
        }
        
        .alert p {
            margin: 0.5rem 0;
        }
        
        /* Card */
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 2rem;
        }
        
        .card-header {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            padding: 1.25rem 1.5rem;
            font-size: 1.25rem;
            font-weight: bold;
            border-bottom: none;
        }
        
        .card-body {
            padding: 1.5rem;
            background: #f8f9fa;
        }
        
        /* Task Table */
        .table-container {
            overflow-x: auto;
            border-radius: 10px;
            background: white;
        }
        
        .table {
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
            min-width: 700px; /* Ensures table doesn't get too squished */
        }
        
        .table thead th {
            background: #e9ecef;
            color: #495057;
            font-weight: 600;
            padding: 1rem;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            border: none;
            white-space: nowrap;
        }
        
        .table tbody td {
            padding: 1rem;
            vertical-align: middle;
            border-top: 1px solid #f1f1f1;
        }
        
        .table-striped tbody tr:nth-of-type(odd) {
            background-color: rgba(0,0,0,0.02);
        }
        
        /* Card Layout for Mobile */
        .task-cards {
            display: none;
        }
        
        .task-card {
            background: white;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .task-card-header {
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #495057;
        }
        
        .task-card-body {
            margin-bottom: 1rem;
        }
        
        .task-card-item {
            display: flex;
            margin-bottom: 0.5rem;
        }
        
        .task-card-label {
            font-weight: 500;
            width: 40%;
            color: #6c757d;
        }
        
        .task-card-value {
            width: 60%;
        }
        
        .task-card-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        /* Action Buttons */
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
     
        
        .btn i {
            margin-right: 0.35rem;
        }
        
      
        
        .btn-warning {
            background: linear-gradient(to right, #ffc107, #ff9800);
            color: white;
        }
        
        .btn-danger {
            background: linear-gradient(to right, #dc3545, #c82333);
            color: white;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            color: white;
            text-decoration: none;
        }
        
        /* Empty state */
        .empty-message {
            text-align: center;
            padding: 2rem;
            color: #6c757d;
            font-style: italic;
        }
        
        /* Status Badge */
        .status-badge {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            text-align: center;
            white-space: nowrap;
        }
        
        /* Page Header */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .page-title {
            margin: 0;
            font-size: 1.75rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .table-container {
                display: none;
            }
            
            .task-cards {
                display: block;
            }
            
            .page-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .add-button {
                width: 100%;
            }
            
            .card-header {
                font-size: 1.1rem;
                padding: 1rem 1.25rem;
            }
            
            .card-body {
                padding: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-container {
                margin: 1rem auto;
            }
            
            .page-title {
                font-size: 1.5rem;
            }
            
            .action-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
            }
            
            .task-card-item {
                flex-direction: column;
            }
            
            .task-card-label, .task-card-value {
                width: 100%;
            }
        }














            /* Base styles */
    .page-container {
        max-width: 1000px;
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .page-title {
        margin-bottom: 1.5rem;
        color: #495057;
        font-size: 1.75rem;
        font-weight: 600;
    }
    
    /* Card styles */
    .card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow: hidden;
        margin-bottom: 1.5rem;
        background: #f8f9fa;
    }
    
    .card-header {
        background: linear-gradient(to right, #6a11cb, #2575fc);
        color: white;
        padding: 1.25rem 1.5rem;
        font-size: 1.25rem;
        font-weight: bold;
        border-bottom: none;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-title {
        color: #6a11cb;
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        border-bottom: 2px solid #6a11cb;
        padding-bottom: 0.5rem;
    }
    
    /* Status badge */
    .status-badge {
        display: inline-block;
        padding: 0.6rem 1rem;
        border-radius: 10px;
        font-weight: 600;
        text-align: center;
        width: 100%;
    }
    
    .status-success {
        background: linear-gradient(to right, #28a745, #20c997);
        color: white;
    }
    
    .status-info {
        background: linear-gradient(to right, #17a2b8, #0dcaf0);
        color: white;
    }
    
    .status-warning {
        background: linear-gradient(to right, #6c757d, #5a6268);
        color: #ffc107;
    }
    
    /* Task info */
    .info-section {
        background: white;
        border-radius: 10px;
        padding: 1.5rem;
        height: 100%;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .info-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }
    
    .info-label {
        font-weight: 600;
        color: #6a11cb;
        margin-right: 0.5rem;
        min-width: 160px;
    }
    
    .info-value {
        color: #495057;
    }
    
    /* Buttons */
    .btn-container {
        background: #f1f1f1;
        border-radius: 0 0 15px 15px;
        padding: 1rem 1.5rem;
        text-align: right;
    }
    
    .btn {
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.2s;
        text-decoration: none;
        margin-left: 0.5rem;
    }
    
    .btn-warning {
        background: linear-gradient(to right, #ffc107, #ff9800);
        color: white;
    }
    
    .btn-danger {
        background: linear-gradient(to right, #dc3545, #c82333);
        color: white;
    }
    
    .btn-primary {
        background: linear-gradient(to right, #007bff, #0056b3);
        color: white;
    }
    
    .btn-dark {
        background: linear-gradient(to right, #000000, #2f2f2f);
        color: white;
    }
    
    .btn-secondary {
        background: linear-gradient(to right, #6c757d, #5a6268);
        color: white;
    }
    
    .btn:hover:not([disabled]) {
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }
    
    .btn:disabled {
        opacity: 0.6;
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
        .row-cols-md-2 > * {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .info-section + .info-section {
            margin-top: 1rem;
        }
        
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: flex-end;
        }
        
        .btn {
            margin: 0;
        }
    }
    
    @media (max-width: 576px) {
        .page-title {
            font-size: 1.5rem;
        }
        
        .card-title {
            font-size: 1.25rem;
            text-align: center;
        }
        
        .info-item {
            flex-direction: column;
        }
        
        .info-label {
            margin-bottom: 0.25rem;
            min-width: auto;
        }
        
        .btn-container {
            justify-content: center;
        }
        
        .btn {
            padding: 0.5rem 1rem;
            flex: 1 1 calc(50% - 0.5rem);
            text-align: center;
            margin-bottom: 0.5rem;
        }
    }









    

/* // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    /* font size 1.2rem */
    html {
        font-size: 1.2rem;
    }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { /* font size 1.2rem */
    html {
        font-size: 1.0rem;
    } }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    /* font size 1.0rem */
    html {
        font-size: 1.0rem;
    }
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    /* font size 1.0rem */
    html {
        font-size: 1.0rem;
    }
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
    /* font size 1.0rem */
    html {
        font-size: 1.0rem;
    }
}
@media (max-width: 768px) {
    .reminder-section {
        flex-direction: column;
    }
    
    .workflow-container {
        flex-direction: column;
    }

    .status-flow {
        flex-direction: column;
    }

    .status-arrow {
        transform: rotate(90deg);
    }
}
