body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    margin: 0; 
    background: #f6f7fb; 
    color: #222; 
    padding: 0;
    padding-top: 80px;
    width: 100%;
}

footer { 
    background: #222; 
    color: #fff; 
    padding: 32px 0; 
    text-align: center; 
    width: 100%;
    box-sizing: border-box;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.footer-links { 
    list-style: none; 
    display: flex; 
    gap: 24px; 
    justify-content: center; 
    padding: 0; 
    margin: 0; 
}

.footer-links a { 
    color: #fff; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0078d4;
}

/* Header styling - sticky header */
header { 
    background: #fff; 
    border-bottom: 1px solid #e5e5e5; 
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 24px; 
    margin: 0; 
    padding: 0; 
}

nav a { 
    text-decoration: none; 
    color: #222; 
    font-weight: 500; 
    transition: color 0.3s ease;
}

nav a:hover {
    color: #0078d4;
}

.animation-container {
    text-align: center;
    margin-top: 20px;
}

#stickmanCanvas {
    border: 1px solid #000;
    background: #fff;
}

@keyframes walk {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.walking {
    animation: walk 2s infinite linear;
}

.snippet-block {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.snippet-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px; 
    width: 100%;
    box-sizing: border-box;
}

.container2 {
    max-width: 10px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.snippet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.snippet-block1 {
    background: #fff;
    padding: 2.5rem;
    margin: 20px 0;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.snippet-block1:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.chart-container {
    max-width: 250px;
    flex: 1;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.chart-container:hover, .snippet-block1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .snippet-grid {
        grid-template-columns: 1fr;
    }
}

.contactus {
    font-family: Arial, sans-serif;
}

.contactus .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contactus .form-group {
    margin-bottom: 15px;
}

.contactus label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contactus input, .contactus textarea {
    width: 80%;
    padding: 10 px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: left;
}

.contactus button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
	position: center;
	
}

.contactus button:hover {
    background-color: #0056b3;
}

.contactus p {
    text-align: center;
    color: #333;
}

.contactus a {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #007BFF;
    text-decoration: none;
}

.contactus a:hover {
    text-decoration: underline;
}



        /* Modal Styles */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: #fefefe;
            margin: auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 400px; /* Max width of the modal */
            text-align: center;
        }

        .modal button {
            margin: 10px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        button, input[type="submit"] {
            background: #0078d4; 
            color: #fff; 
            padding: 16px 32px; 
            border: none; 
            border-radius: 8px; 
            font-size: 1.1rem; 
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
            cursor: pointer;
            margin: 10px;
        }

        button:hover, input[type="submit"]:hover {
            background: #005fa3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 120, 212, 0.3);
        }

        input[type="text"], input[type="email"], input[type="number"], textarea, select {
            width: 90%;
            padding: 12px 16px;
            margin: 8px 0;
            box-sizing: border-box;
            border: 2px solid #e5e5e5; 
            border-radius: 8px; 
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #0078d4;
            box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
        }

/* Additional modern styles */
.btn-primary { 
    background: #0078d4; 
    color: #fff; 
    padding: 16px 32px; 
    border: none; 
    border-radius: 8px; 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0078d4;
    padding: 16px 32px;
    border: 2px solid #0078d4;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: #0078d4;
    color: #fff;
    transform: translateY(-2px);
}

/* Card styles for survey links - Enhanced */
.survey-link {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;  
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.survey-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0078d4, #00bcf2);
}

.survey-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 120, 212, 0.15);
    color: inherit;
    text-decoration: none;
}

.survey-link h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.survey-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.survey-meta span {
    background: #f0f4f8;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid #e1e8ed;
    white-space: nowrap;
}

.survey-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.survey-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.survey-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 20px 0;
}

/* Page titles */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Success/error messages */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin: 20px 0;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin: 20px 0;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

table th, table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

table th {
    background: #0078d4;
    color: #fff;
    font-weight: 600;
}

table tr:hover {
    background: #f8f9fa;
}

/* Contact form styling */
.contactus {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Radio button styling */
input[type="radio"] {
    margin-right: 8px;
    margin-left: 0;
    transform: scale(1.2);
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .survey-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .survey-link {
        padding: 1.5rem;
    }
    
    .survey-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .survey-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Data presentation utilities */
.data-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 1rem 0;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-highlight {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.text-muted {
    color: #666 !important;
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }   cursor: pointer;
        }

        input[type="text"], input[type="email"] {
            width: 90%;
            padding: 8px;
            margin: 8px 0;
            box-sizing: border-box;
        }