/* Add Montserrat font import at the very top */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');/* Screen reader only class for accessibility */.sr-only {    position: absolute !important;    width: 1px !important;    height: 1px !important;    padding: 0 !important;    margin: -1px !important;    overflow: hidden !important;    clip: rect(0, 0, 0, 0) !important;    white-space: nowrap !important;    border: 0 !important;}/* Reset and Base Styles */* {    margin: 0;    padding: 0;    box-sizing: border-box;}body {    font-family: Arial, sans-serif;    line-height: 1.6;    overflow-x: hidden;}/* Fixed Header Styles */.fixed-header {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 60px;    background-color: #ffffff;    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);    z-index: 1000;}.header-content {    max-width: 1200px;    margin: 0 auto;    height: 100%;    display: flex;    justify-content: space-between;    align-items: center;    padding: 0 20px;}.left-section {    display: flex;    align-items: center;    gap: 20px;}.right-section {    display: flex;    gap: 10px;}/* Navigation Styles */.main-nav {    display: flex;    gap: 20px;}.nav-item {    text-decoration: none;    color: #333;    font-weight: 500;    padding: 8px 12px;    border-radius: 4px;    transition: background-color 0.3s;}.nav-item:hover {    background-color: #f0f0f0;}/* Button Styles */.btn {    padding: 10px 20px;    border: none;    border-radius: 4px;    cursor: pointer;    font-weight: 500;    transition: all 0.3s;}.btn.primary {    background-color: #007bff;    color: white;}.btn.primary:hover {    background-color: #0056b3;}/* Main Content Styles */main {    margin-top: 10px;}.content-section {    display: flex;    height: 400px;}.image-section, .animation-section {    flex: 1;    overflow: hidden;}.image-section img {    width: 100%;    height: 100%;    object-fit: cover;}/* Animation Section Styles */.slider-container {    position: relative;    width: 100%;    max-width: 720px; /* Match image width */    margin: 0 auto;    overflow: hidden;}.slider {    position: relative;    width: 100%;    padding-top: 92.08%; /* 663/720 = 0.9208 (92.08%) to maintain 720x663 aspect ratio */    overflow: hidden;}.slide {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    opacity: 0;    transition: all 0.5s ease;}.slide.active {    opacity: 1;}.slide img {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    object-fit: contain; /* Changed from cover to contain to show full image */    object-position: center;}/* Circular Zoom Animation */@keyframes zoomOut {    0% {        clip-path: circle(100% at 50% 50%);        opacity: 1;    }    100% {        clip-path: circle(0% at 50% 50%);        opacity: 0;    }}@keyframes zoomIn {    0% {        clip-path: circle(0% at 50% 50%);        opacity: 0;    }    100% {        clip-path: circle(100% at 50% 50%);        opacity: 1;    }}.slide.zooming-out {    animation: zoomOut 1.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;}.slide.zooming-in {    animation: zoomIn 1.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;}/* Corner Fold Effect */.page-front::before,.page-front::after {    content: '';    position: absolute;    top: 0;    width: 50%;    height: 100%;    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 100%);    pointer-events: none;    opacity: 0;    transition: opacity 0.3s;}.page-front::before {    left: 0;    transform-origin: right;    clip-path: polygon(0 0, 100% 0, 0% 100%, 0% 100%);}.page-front::after {    right: 0;    transform-origin: left;    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);}.page.turning {    animation: pageTurn 2s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;}.page.turning .page-front::before,.page.turning .page-front::after {    opacity: 1;}.page.active {    z-index: 2;}/* Modal Styles */.modal {    display: none;    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    background: rgba(0, 0, 0, 0.8);    z-index: 1001;    opacity: 0;    transition: opacity 0.3s ease;}.modal.active {    display: block;    opacity: 1;}.modal-content {    position: absolute;    top: 50%;    left: 50%;    transform: translate(-50%, -50%);    background: #fff;    padding: 30px;    border-radius: 12px;    color: #000;    width: 90%;    max-width: 450px;    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);    animation: modalSlideIn 0.3s ease-out;}@keyframes modalSlideIn {    from {        opacity: 0;        transform: translate(-50%, -60%);    }    to {        opacity: 1;        transform: translate(-50%, -50%);    }}.modal-content h2 {    margin-bottom: 20px;    text-align: center;    color: #333;}.close {    position: absolute;    right: 20px;    top: 15px;    font-size: 24px;    cursor: pointer;    color: #666;    transition: color 0.3s ease;}.close:hover {    color: #000;}form {    display: flex;    flex-direction: column;    gap: 15px;}input {    padding: 14px;    border: 2px solid #e9ecef;    border-radius: 8px;    font-size: 16px;    transition: all 0.3s ease;    background: #f8f9fa;}input:focus {    border-color: #000;    background: #fff;    outline: none;    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);}/* Enhanced Password Input Styles */.password-input-container {    position: relative;    display: block;}.password-input-container input {    padding-right: 50px;    width: 100%;    box-sizing: border-box;}.password-toggle {    position: absolute;    right: 14px;    top: 50%;    transform: translateY(-50%);    background: none;    border: none;    cursor: pointer;    color: #999;    font-size: 18px;    transition: all 0.3s ease;    z-index: 2;    width: 24px;    height: 24px;    display: flex;    align-items: center;    justify-content: center;    border-radius: 4px;    padding: 0;}.password-toggle:hover {    color: #666;    background: rgba(0, 0, 0, 0.05);}.password-toggle:focus {    outline: 2px solid #000;    outline-offset: 2px;    color: #333;    background: rgba(0, 0, 0, 0.1);}.password-toggle:active {    transform: translateY(-50%) scale(0.95);}.password-toggle i {    pointer-events: none;}/* Remember Me and Forgot Password */.remember-forgot {    display: flex;    justify-content: space-between;    align-items: center;    margin: 15px 0;    font-size: 14px;    flex-wrap: wrap;    gap: 10px;}.remember-me {    display: flex;    align-items: center;    cursor: pointer;    color: #666;    position: relative;    user-select: none;}.remember-me input[type="checkbox"] {    opacity: 0;    position: absolute;    width: 0;    height: 0;}.checkmark {    width: 18px;    height: 18px;    border: 2px solid #ddd;    border-radius: 3px;    margin-right: 8px;    display: flex;    align-items: center;    justify-content: center;    transition: all 0.3s ease;    background: #fff;    flex-shrink: 0;}.remember-me input[type="checkbox"]:checked + .checkmark {    background: #000;    border-color: #000;}.remember-me input[type="checkbox"]:checked + .checkmark::after {    content: '\2713';    color: white;    font-size: 12px;    font-weight: bold;}.forgot-password {    color: #666;    text-decoration: none;    font-size: 14px;    transition: color 0.3s ease;}.forgot-password:hover {    color: #000;    text-decoration: underline;}/* Password Strength Indicator */.password-strength {    margin: 10px 0;}.strength-meter {    width: 100%;    height: 4px;    background: #e0e0e0;    border-radius: 2px;    overflow: hidden;    margin-bottom: 8px;}.strength-meter-fill {    height: 100%;    width: 0%;    transition: all 0.3s ease;    border-radius: 2px;}.strength-text {    font-size: 12px;    color: #666;    margin: 0;}/* Strength levels */.strength-weak .strength-meter-fill {    width: 25%;    background: #ff4444;}.strength-fair .strength-meter-fill {    width: 50%;    background: #ffaa00;}.strength-good .strength-meter-fill {    width: 75%;    background: #00aa00;}.strength-strong .strength-meter-fill {    width: 100%;    background: #008800;}/* Company Info Styling */.company-info {    text-align: center;    margin-bottom: 20px;    padding: 15px;    background: #f8f9fa;    border-radius: 8px;    border: 1px solid #e9ecef;}.company-info img {    border-radius: 8px;    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);    margin-bottom: 10px;    max-width: 100px;    height: auto;}.company-info h3 {    margin: 0;    color: #333;    font-size: 18px;    font-weight: 600;}/* Input Validation States - positioned to avoid eye icon */input.valid {    border-color: #28a745 !important;    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.18-.03L4.1 4.98l1.88 1.88.18.03a.5.5 0 0 0 .7-.7l-.03-.18L4.98 4.1l1.88-1.88.03-.18a.5.5 0 0 0-.7-.7l-.18.03L4.1 3.02 2.22 1.14l-.18-.03a.5.5 0 0 0-.7.7l.03.18L3.02 4.1 1.14 5.98l-.03.18a.5.5 0 0 0 .7.7z'/%3e%3c/svg%3e");    background-repeat: no-repeat;    background-position: right 50px center;    background-size: 16px;}input.invalid {    border-color: #dc3545 !important;    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6.4.4.4-.4M7 8.2V7.1h-.5v-.4H7c.3 0 .5-.2.5-.5s-.2-.5-.5-.5-.5.2-.5.5v.4h-.4v-.4c0-.5.4-.9.9-.9s.9.4.9.9-.4.9-.9.9H7z'/%3e%3c/svg%3e");    background-repeat: no-repeat;    background-position: right 50px center;    background-size: 16px;}/* Adjust password input for validation icons */.password-input-container input.valid,.password-input-container input.invalid {    padding-right: 80px;}.password-input-container input:not(.valid):not(.invalid) {    padding-right: 50px;}button[type="submit"] {    background: linear-gradient(45deg, #000, #333);    color: #fff;    padding: 14px;    border: none;    border-radius: 8px;    cursor: pointer;    font-size: 16px;    font-weight: 600;    transition: all 0.3s ease;    position: relative;    overflow: hidden;}button[type="submit"]:hover {    background: linear-gradient(45deg, #333, #555);    transform: translateY(-2px);    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);}button[type="submit"]:active {    transform: translateY(0);}/* Loading state for buttons */button[type="submit"].loading {    pointer-events: none;    opacity: 0.7;}button[type="submit"].loading::after {    content: '';    position: absolute;    top: 50%;    left: 50%;    width: 20px;    height: 20px;    margin: -10px 0 0 -10px;    border: 2px solid transparent;    border-top: 2px solid #fff;    border-radius: 50%;    animation: spin 1s linear infinite;}@keyframes spin {    0% { transform: rotate(0deg); }    100% { transform: rotate(360deg); }}/* Gradient Stripe */.gradient-stripe {    height: 80px;    background: linear-gradient(90deg, #007bff, #00bfff);    display: flex;    justify-content: center;    align-items: center;    position: relative;    overflow: hidden;    text-align: center;}.arrow-button {    display: flex;    align-items: center;    gap: 15px;    background: #28a745; /* Green background */    border: none;    border-radius: 30px;    padding: 12px 30px;    color: white;    font-size: 18px;    font-weight: 600;    cursor: pointer;    transition: all 0.3s ease;    margin: 0 auto;}.arrow-button:hover {    background: #218838; /* Darker green on hover */    transform: translateX(5px);}.arrow-button:focus-visible {    outline: 2px solid rgba(255, 255, 255, 0.8);    outline-offset: 3px;}.arrow-text {    margin-right: 10px;}.arrow-button i {    font-size: 20px;    transition: transform 0.3s ease;}.arrow-button:hover i {    transform: translateX(5px);}/* Engineers Stripe */.engineers-stripe {    background: #1a1a1a; /* Dark background for better contrast */    padding: 40px 20px;    text-align: center;    display: flex;    justify-content: center;    align-items: center;    position: relative;    overflow: hidden;}.engineers-stripe::before {    content: '';    position: absolute;    top: 0;    left: -100%;    width: 100%;    height: 100%;    background: linear-gradient(        90deg,        transparent,        rgba(255, 255, 255, 0.8), /* Increased opacity for better visibility */        transparent    );    animation: sweep 3s infinite;    z-index: 0;}@keyframes sweep {    0% {        left: -100%;    }    50% {        left: 100%;    }    100% {        left: -100%;    }}.engineers-stripe h2 {    font-family: 'Montserrat', sans-serif;    font-size: 2.5rem;    font-weight: 700;    margin: 0;    text-transform: uppercase;    letter-spacing: 1px;    position: relative;    z-index: 1;    background: linear-gradient(45deg, #00ff9d, #00bfff); /* Brighter gradient colors */    background-clip: text;    -webkit-background-clip: text;    -moz-background-clip: text;    -ms-background-clip: text;    -o-background-clip: text;    color: transparent;    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);    text-align: center;    padding: 20px;    border-radius: 10px;    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);    transition: all 0.3s ease;    position: relative;    overflow: hidden;}.engineers-stripe h2::before {    content: '';    position: absolute;    top: 0;    left: -100%;    width: 100%;    height: 100%;    background: linear-gradient(        90deg,        transparent,        rgba(255, 255, 255, 0.6), /* Increased opacity */        transparent    );    animation: sweep 3s infinite;    z-index: -1;}.engineers-stripe h2:hover {    transform: scale(1.02);    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);}/* Focus visible for accessibility - only for modal elements */.modal-content input:focus-visible,.modal-content .password-toggle:focus-visible {    outline: 2px solid #000;    outline-offset: 2px;}.modal-content button:focus-visible,.modal-content button[type="submit"]:focus-visible {    outline: 2px solid #fff;    outline-offset: 2px;}/* Responsive adjustments for password inputs */@media (max-width: 480px) {    .password-input-container input {        padding-right: 55px;        font-size: 16px; /* Prevents zoom on iOS */    }        .password-toggle {        right: 12px;        width: 32px;        height: 32px;        font-size: 20px;    }        .remember-forgot {        flex-direction: column;        align-items: flex-start;        gap: 12px;    }        .modal-content {        width: 95%;        padding: 20px;        margin: 10px;    }}/* Touch device improvements */@media (hover: none) and (pointer: coarse) {    .password-toggle {        min-width: 44px;        min-height: 44px;        right: 8px;        font-size: 20px;    }        .password-input-container input {        min-height: 48px;        padding-right: 60px;    }}/* Responsive adjustments */@media (max-width: 1200px) {    .slider-container {        max-width: 100%;    }}@media (max-width: 768px) {    .slider-container {        max-width: 100%;    }        .slider {        padding-top: 92.08%; /* Maintain aspect ratio */    }}@media (max-width: 480px) {    .slider {        padding-top: 92.08%; /* Maintain aspect ratio */    }}/* Menu System Styles */.menu-container {    display: flex;    min-height: 100vh;    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;}/* Sidebar Styles */.sidebar {    width: 220px;    background-color: #2c3e50;    color: white;    padding: 10px 0; /* Reduced from 20px */    box-shadow: 2px 0 5px rgba(0,0,0,0.1);}/* Header Styles */.menu-header {    padding: 0 20px 10px; /* Reduced bottom padding from 20px */    border-bottom: 1px solid rgba(255,255,255,0.1);    margin-bottom: 10px; /* Reduced from 20px */}.menu-header h1 {    font-size: 1.3rem; /* Slightly reduced from 1.5rem */    margin: 0 0 5px 0; /* Reduced bottom margin */    color: #ecf0f1;}.user-info {    display: flex;    justify-content: space-between;    align-items: center;    font-size: 0.85rem; /* Slightly reduced from 0.9rem */}.logout-btn {    color: #e74c3c;    text-decoration: none;    padding: 5px 10px;    border-radius: 3px;    transition: background-color 0.3s;}.logout-btn:hover {    background-color: rgba(231, 76, 60, 0.1);}/* Accordion Menu Styles */.accordion-menu {    list-style: none;    padding: 0;    margin: 0;}.menu-item {    margin: 2px 0; /* Reduced from 5px */}.menu-link, .menu-group {    display: flex;    align-items: center;    padding: 8px 20px; /* Reduced from 12px */    color: #ecf0f1;    text-decoration: none;    transition: background-color 0.3s;    cursor: pointer;    font-size: 0.9rem; /* Added font size control */}.menu-link:hover, .menu-group:hover {    background-color: rgba(255,255,255,0.1);}.menu-link i, .menu-group i {    margin-right: 8px; /* Reduced from 10px */    width: 18px; /* Reduced from 20px */    text-align: center;    font-size: 0.9rem; /* Added font size control */}.menu-group {    position: relative;}.menu-group::after {    content: '\f107';    font-family: 'Font Awesome 5 Free';    font-weight: 900;    position: absolute;    right: 20px;    transition: transform 0.3s;}.menu-group.active::after {    transform: rotate(180deg);}/* Submenu Styles */.submenu {    max-height: 0;    overflow: hidden;    transition: max-height 0.3s ease-out;    background-color: rgba(0,0,0,0.1);}.submenu.active {    max-height: 500px;}.submenu-item {    display: block;    padding: 6px 20px 6px 45px; /* Reduced padding and left indent */    color: #bdc3c7;    text-decoration: none;    transition: background-color 0.3s;    font-size: 0.85rem; /* Added font size control */}.submenu-item:hover {    background-color: rgba(255,255,255,0.05);    color: #ecf0f1;}/* Content Area Styles */.content-area {    flex: 1;    padding: 15px; /* Reduced from 20px */    background-color: #f5f6fa;}.welcome-message {    text-align: center;    padding: 20px; /* Reduced from 40px */}.welcome-message h2 {    color: #2c3e50;    margin-bottom: 5px; /* Reduced from 10px */    font-size: 1.2rem; /* Added font size control */}.welcome-message p {    font-size: 0.9rem; /* Added font size control */}#mytable{    width:100%;}#mytable, thead, tbody, th, td{    padding: 5px;}/* Active State Styles */.menu-link.active, .submenu-item.active {    background-color: #3498db;    color: white;}/* Responsive Design */@media (max-width: 768px) {    .menu-container {        flex-direction: column;    }        .sidebar {        width: 100%;    }        .menu-header {        text-align: center;    }}

/* Collapse All Button */
.collapse-all-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: block;
    width: 100%;
    text-align: center;
}

.collapse-all-btn:hover {
    background-color: rgba(52, 152, 219, 0.2);
    color: #2980b9;
}

.collapse-all-btn:active {
    opacity: 0.8;
}