/* HRMS Clean CSS - No Conflicts */

/* ===== RESET AND BASE ===== */
.hrms-page {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hrms-page *,
.hrms-page *::before,
.hrms-page *::after {
    box-sizing: inherit;
}

/* ===== HRMS SPECIFIC CONTAINER ===== */
.hrms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hrms-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 0 140px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-top: 80px; /* Space for navbar */
}

.hrms-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hrms-hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hrms-hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.hrms-hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.hrms-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 500px;
}

.hrms-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hrms-btn-primary {
    background: linear-gradient(135deg, #374151, #111827);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hrms-btn-primary:hover {
    background: linear-gradient(135deg, #111827, #000);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hrms-btn-secondary {
    background-color: transparent;
    color: #374151;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.hrms-btn-secondary:hover {
    color: #111827;
    background-color: rgba(55, 65, 81, 0.05);
}

.hrms-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hrms-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.hrms-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.hrms-illustration.animate {
    opacity: 1;
    transform: scale(1);
}

.hrms-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    animation: hrms-float 6s ease-in-out infinite;
}

@keyframes hrms-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== PRODUCT HUNT BADGE ===== */
.hrms-product-hunt {
    position: absolute;
    bottom: 40px;
    right: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.hrms-product-hunt.animate {
    opacity: 1;
    transform: translateY(0);
}

.hrms-ph-badge {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hrms-ph-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== DASHBOARD DEMO SECTION ===== */
.hrms-dashboard-section {
    background: #f8fafc;
    
    position: relative;
}

.hrms-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hrms-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hrms-section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
}

.hrms-browser-frame {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    max-width: 1400px;
    margin: 0 auto;
}

.hrms-browser-frame:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hrms-browser-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f6f8fa 0%, #eef2f5 100%);
    border-bottom: 1px solid #e1e5e9;
    gap: 16px;
}

.hrms-browser-controls {
    display: flex;
    gap: 8px;
}

.hrms-control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hrms-control-dot:hover {
    transform: scale(1.1);
}

.hrms-control-dot.red { 
    background: linear-gradient(135deg, #ff5f56, #ff453a);
    box-shadow: 0 2px 4px rgba(255, 95, 86, 0.3);
}

.hrms-control-dot.yellow { 
    background: linear-gradient(135deg, #ffbd2e, #ff9500);
    box-shadow: 0 2px 4px rgba(255, 189, 46, 0.3);
}

.hrms-control-dot.green { 
    background: linear-gradient(135deg, #27ca3f, #30d158);
    box-shadow: 0 2px 4px rgba(39, 202, 63, 0.3);
}

.hrms-address-bar {
    flex: 1;
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #656d76;
    transition: all 0.2s ease;
}

.hrms-browser-actions {
    display: flex;
    gap: 8px;
}

.hrms-browser-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    color: #656d76;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.hrms-browser-btn:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.hrms-dashboard-content {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 650px;
    background: #f8fafc;
    position: relative;
}

.hrms-sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-right: 1px solid #e5e7eb;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hrms-sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.hrms-sidebar-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hrms-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.hrms-nav-item:hover {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #1e40af;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.hrms-nav-item.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.hrms-nav-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hrms-nav-item:hover .hrms-nav-icon {
    transform: scale(1.1);
}

.hrms-main {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow-y: auto;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.hrms-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.hrms-main-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.hrms-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hrms-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hrms-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.hrms-stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hrms-stat-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hrms-stat-card:hover .hrms-stat-icon {
    transform: scale(1.1);
}

.hrms-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
}

.hrms-content-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hrms-content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.hrms-table {
    width: 100%;
    border-collapse: collapse;
}

.hrms-table th {
    text-align: left;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #f3f4f6;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.hrms-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f9fafb;
    font-size: 14px;
    color: #374151;
}

.hrms-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hrms-badge.active {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
}

.hrms-badge.medium {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}











































/* ===== FEATURES SECTIONS ===== */
.hrms-features-section {
    padding: 20px 0;
}

.hrms-features-section:nth-child(even) {
    background: #f8fafc;
}

.hrms-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hrms-features-content {
    max-width: 500px;
}

.hrms-section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 20px;
    display: block;
}

.hrms-features-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    position: relative;
}

.hrms-features-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 32px;
}

.hrms-cta-btn {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hrms-cta-btn:hover {
    background: linear-gradient(135deg, #111827, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.3);
}

/* ===== POWERFUL FEATURES GRID ===== */
.hrms-powerful-section {
    background: #fef7ed;
    padding: 10px 0;
}

.hrms-powerful-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.hrms-feature-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
}

.hrms-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hrms-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    transition: all 0.4s ease;
}

.hrms-feature-item:hover .hrms-feature-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.hrms-feature-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hrms-feature-item-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.hrms-testimonials-section {
    background: #4a5568;
    color: white;
    padding: 10px 0;
    position: relative;
    margin-top: 2rem;
}

.hrms-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hrms-testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    min-height: 280px;
}

.hrms-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hrms-testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.hrms-testimonial-author {
    font-weight: 600;
}

.hrms-testimonial-company {
    font-size: 0.95rem;
    opacity: 0.7;
    font-weight: 400;
}

/* ===== NEWS SECTION ===== */
.hrms-news-section {
    background: #4a5568;
    color: white;
    padding: 25px 0;
    
}

.hrms-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hrms-news-card {
    background: white;
    color: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hrms-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hrms-news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hrms-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hrms-news-card:hover .hrms-news-image img {
    transform: scale(1.05);
}

.hrms-news-content {
    padding: 24px 28px;
}

.hrms-news-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hrms-news-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hrms-news-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hrms-news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8b5cf6;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.hrms-news-link:hover {
    color: #7c3aed;
    gap: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hrms-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hrms-hero-title {
        font-size: 3.25rem;
    }
    
    .hrms-dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .hrms-sidebar {
        display: none;
    }
    
    .hrms-content-grid {
        grid-template-columns: 1fr;
    }
    
    .hrms-features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hrms-features-title {
        font-size: 2.5rem;
    }
    
    .hrms-powerful-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hrms-testimonials-grid,
    .hrms-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hrms-hero-section {
        padding: 80px 0 100px;
        margin-top: 70px;
    }
    .hrms-hero-title {
        font-size: 2.75rem;
    }
    
    .hrms-hero-description {
        font-size: 1.125rem;
    }
    
    .hrms-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hrms-btn-primary,
    .hrms-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hrms-section-title {
        font-size: 2.25rem;
    }
    
    .hrms-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hrms-powerful-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hrms-testimonials-grid,
    .hrms-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hrms-product-hunt {
        position: relative;
        bottom: auto;
        right: auto;
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
}




/* HRMS Responsive CSS - Mobile First Approach */

.hrms-page {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hrms-page *,
.hrms-page *::before,
.hrms-page *::after {
    box-sizing: inherit;
}

.hrms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HERO SECTION */
.hrms-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0 100px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px; /* for navbar */
    text-align: center;
}

.hrms-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 900px;
}

.hrms-hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    max-width: 100%;
}

.hrms-hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.hrms-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hrms-hero-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 100%;
    font-weight: 400;
}

.hrms-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 40px;
}

.hrms-btn-primary,
.hrms-btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.hrms-btn-primary {
    background: linear-gradient(135deg, #374151, #111827);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.hrms-btn-primary:hover {
    background: linear-gradient(135deg, #111827, #000);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hrms-btn-secondary {
    background-color: transparent;
    color: #374151;
    border: none;
    font-weight: 500;
    gap: 8px;
}

.hrms-btn-secondary:hover {
    color: #111827;
    background-color: rgba(55, 65, 81, 0.05);
}

/* Hero illustration */
.hrms-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
    max-width: 100%;
}

.hrms-illustration.animate {
    opacity: 1;
    transform: scale(1);
}

.hrms-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    animation: hrms-float 6s ease-in-out infinite;
}

@keyframes hrms-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* PRODUCT HUNT BADGE */
.hrms-product-hunt {
    position: relative;
    bottom: auto;
    right: auto;
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
    opacity: 0;
    transition: all 0.8s ease-out;
}

.hrms-product-hunt.animate {
    opacity: 1;
}

.hrms-ph-badge {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.hrms-ph-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* DASHBOARD DEMO SECTION */
.hrms-dashboard-section {
    background: #f8fafc;
    position: relative;
    padding: 40px 20px;
}

.hrms-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.hrms-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hrms-section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

/* Browser Frame */
.hrms-browser-frame {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    max-width: 100%;
    transition: all 0.3s ease;
}

.hrms-browser-frame:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Dashboard Content */
.hrms-dashboard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 650px;
    background: #f8fafc;
    position: relative;
}

/* Sidebar */
.hrms-sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-right: 1px solid #e5e7eb;
    padding: 24px;
    display: none; /* hidden on mobile by default */
}

/* Main Content */
.hrms-main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Stats Grid */
.hrms-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Content Grid */
.hrms-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Features Section */
.hrms-features-section {
    padding: 20px 0;
}

.hrms-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.hrms-features-title {
    font-size: 2rem;
    font-weight: 800;
}

/* Powerful Features Grid */
.hrms-powerful-section {
    background: #fef7ed;
    padding: 20px 0;
}

.hrms-powerful-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    padding: 0 10px;
}

/* Testimonials Section */
.hrms-testimonials-section {
    background: #4a5568;
    color: white;
    padding: 20px 10px;
    margin-top: 2rem;
}

.hrms-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
}

/* News Section */
.hrms-news-section {
    background: #4a5568;
    color: white;
    padding: 20px 10px;
}

.hrms-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
}

/* TABLES */
.hrms-table {
    width: 100%;
    border-collapse: collapse;
}

.hrms-table th {
    text-align: left;
    padding: 12px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #f3f4f6;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.hrms-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #f9fafb;
    font-size: 13px;
    color: #374151;
}

/* BADGES */
.hrms-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hrms-badge.active {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
}

.hrms-badge.medium {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

/* BUTTONS */
.hrms-cta-btn {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hrms-cta-btn:hover {
    background: linear-gradient(135deg, #111827, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.3);
}

/* MEDIA QUERIES */
/* Larger tablets and small desktops */
@media (min-width: 768px) {
    .hrms-hero-section {
        padding: 80px 0 120px;
        margin-top: 70px;
        text-align: left;
    }
    .hrms-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        max-width: 100%;
    }
    .hrms-hero-title {
        font-size: 3rem;
    }
    .hrms-hero-description {
        font-size: 1.125rem;
    }
    .hrms-hero-buttons {
        flex-direction: row;
        max-width: none;
        width: auto;
    }
    .hrms-btn-primary,
    .hrms-btn-secondary {
        width: auto;
    }
    .hrms-dashboard-content {
        grid-template-columns: 260px 1fr;
        gap: 28px;
    }
    .hrms-sidebar {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }
    .hrms-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hrms-content-grid {
        grid-template-columns: 1fr 320px;
    }
    .hrms-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        text-align: left;
    }
    .hrms-features-title {
        font-size: 3rem;
    }
    .hrms-powerful-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hrms-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0;
    }
    .hrms-news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .hrms-container {
        padding: 0 60px;
    }
    .hrms-hero-title {
        font-size: 3.75rem;
    }
    .hrms-hero-section {
        min-height: 90vh;
        padding-bottom: 140px;
    }
}


.nav .container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 14px 24px;
    max-width: 1400px;
    margin: 0 auto;
}


.brand-section{
    padding-left: 6rem !important;
}


@media (max-width: 480px) {
    .hrms-container {
        padding:  16px;
    }
    
    .hrms-hero-title {
        font-size: 2.25rem;
    }
    
    .hrms-hero-description {
        font-size: 1rem;
    }
    
    .hrms-section-title {
        font-size: 1.875rem;
    }
    
    .hrms-features-title {
        font-size: 1.875rem;
    }
    
    .hrms-browser-controls {
        display: none;
    }
    
    .hrms-main {
        padding: 16px;
    }
    
    .hrms-stat-card,
    .hrms-content-card {
        padding: 16px;
    }
    
    .hrms-feature-item {
        padding: 24px 16px;
    }


    .brand-section{
    padding-left: 0 !important;
}
    
}




/* ===== SMALL SCREEN RESPONSIVE STYLES ===== */

/* Mobile First - Base Styles (up to 767px) */
@media (max-width: 767px) {
    /* Section Padding */
    .hrms-dashboard-section {
        padding: 20px 10px;
    }
    
    .hrms-container {
        padding: 0 16px;
    }
    
    /* Section Header */
    .hrms-section-header {
        margin-bottom: 30px;
    }
    
    .hrms-section-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .hrms-section-subtitle {
        font-size: 0.875rem;
    }
    
    /* Browser Frame */
    .hrms-browser-frame {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    /* Browser Header */
    .hrms-browser-header {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .hrms-browser-controls {
        gap: 6px;
    }
    
    .hrms-control-dot {
        width: 10px;
        height: 10px;
    }
    
    .hrms-address-bar {
        padding: 6px 10px;
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .hrms-browser-actions {
        gap: 4px;
    }
    
    .hrms-browser-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    /* Dashboard Content - Stack Layout */
    .hrms-dashboard-content {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
    }
    
    /* Sidebar - Hidden or Collapsible */
    .hrms-sidebar {
        display: none; /* Hide sidebar on mobile */
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    /* Show sidebar as overlay if needed (optional) */
    .hrms-sidebar.mobile-open {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Main Content */
    .hrms-main {
        padding: 16px;
        gap: 20px;
    }
    
    /* Main Header */
    .hrms-main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 16px;
    }
    
    .hrms-main-header h1 {
        font-size: 1.5rem;
    }
    
    .hrms-main-header > div {
        width: 100%;
        justify-content: space-between;
    }
    
    .hrms-main-header button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Stats Grid - Stack Vertically */
    .hrms-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Stat Cards */
    .hrms-stat-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .hrms-stat-header h3 {
        font-size: 14px;
    }
    
    .hrms-stat-card > div > div > div {
        font-size: 16px !important;
    }
    
    /* Content Grid - Stack Vertically */
    .hrms-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Content Cards */
    .hrms-content-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .hrms-content-card h3 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    /* Tables - Horizontal Scroll */
    .hrms-content-card > div[style*="overflow-x"] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
        border-radius: 8px;
    }
    
    .hrms-table {
        min-width: 650px; /* Ensure table doesn't squish */
        font-size: 11px;
    }
    
    .hrms-table th {
        padding: 10px 8px;
        font-size: 9px;
        white-space: nowrap;
    }
    
    .hrms-table td {
        padding: 10px 8px;
        font-size: 11px;
        white-space: nowrap;
    }
    
    /* Make table rows more compact */
    .hrms-table td span {
        display: inline-block;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Table pagination footer */
    .hrms-content-card > div + div[style*="display: flex"] {
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 12px;
        margin-top: 16px;
    }
    
    .hrms-content-card > div + div[style*="display: flex"] span {
        font-size: 11px;
    }
    
    .hrms-content-card > div + div[style*="display: flex"] button {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Badges */
    .hrms-badge {
        padding: 3px 10px;
        font-size: 10px;
    }
    
    /* Pagination Controls */
    .hrms-content-card > div + div {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        font-size: 12px;
    }
    
    .hrms-content-card > div + div > div {
        width: 100%;
        justify-content: center;
    }
    
    /* Right Sidebar Widgets - Upgrade & Help Cards */
    .hrms-content-grid > div:last-child {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Target the wrapper div with inline styles */
    .hrms-content-grid > div[style*="flex-direction: column"] {
        gap: 16px !important;
    }
    
    /* Individual widget cards - target by inline style attributes */
    .hrms-content-grid > div[style*="flex-direction: column"] > div {
        padding: 20px 16px !important;
        border-radius: 12px !important;
    }
    
    /* Icons in widgets */
    .hrms-content-grid > div[style*="flex-direction: column"] span[style*="font-size: 28px"] {
        font-size: 32px !important;
        margin-bottom: 12px !important;
    }
    
    /* Headings in widgets - target both h3 and h4 */
    .hrms-content-grid > div[style*="flex-direction: column"] h3[style*="font-size: 18px"],
    .hrms-content-grid > div[style*="flex-direction: column"] h4[style*="font-size: 18px"] {
        font-size: 1.125rem !important;
        margin-bottom: 8px !important;
    }
    
    /* Paragraphs in widgets */
    .hrms-content-grid > div[style*="flex-direction: column"] p[style*="font-size: 14px"] {
        font-size: 13px !important;
        margin-bottom: 16px !important;
        line-height: 1.5 !important;
    }
    
    /* Buttons in widgets */
    .hrms-content-grid > div[style*="flex-direction: column"] button {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
      
    }
}

/* Extra Small Screens (up to 480px) */
@media (max-width: 480px) {
    .hrms-dashboard-section {
        padding: 16px 8px;
    }
    
    .hrms-container {
        padding: 0 12px;
    }
    
    .hrms-section-title {
        font-size: 1.5rem;
    }
    
    .hrms-section-subtitle {
        font-size: 0.8125rem;
    }
    
    /* Hide browser controls completely */
    .hrms-browser-controls {
        display: none;
    }
    
    .hrms-browser-header {
        padding: 6px 10px;
    }
    
    .hrms-address-bar {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .hrms-browser-btn {
        display: none; /* Hide browser action buttons */
    }
    
    .hrms-main {
        padding: 12px;
        gap: 16px;
    }
    
    .hrms-main-header h1 {
        font-size: 1.25rem;
    }
    
    .hrms-stats-grid {
        gap: 12px;
    }
    
    .hrms-stat-card {
        padding: 16px;
    }
    
    .hrms-content-card {
        padding: 16px;
    }
    
    .hrms-content-card h3 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    /* Make table scroll more obvious with shadow */
    .hrms-content-card > div[style*="overflow-x"] {
        margin: 0 -16px;
        padding: 0 16px;
        position: relative;
    }
    
    .hrms-content-card > div[style*="overflow-x"]::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
        pointer-events: none;
    }
    
    .hrms-table {
        min-width: 700px;
        font-size: 10px;
    }
    
    .hrms-table th {
        padding: 8px 6px;
        font-size: 8px;
    }
    
    .hrms-table td {
        padding: 8px 6px;
        font-size: 10px;
    }
    
    /* Force override inline styles for widgets - Extra Small Screens */
    .hrms-content-grid > div[style*="flex-direction: column"] {
        gap: 12px !important;
    }
    
    .hrms-content-grid > div[style*="flex-direction: column"] > div {
        padding: 14px !important;
        border-radius: 10px !important;
    }
    
    .hrms-content-grid > div[style*="flex-direction: column"] span[style*="font-size: 28px"] {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }
    
    .hrms-content-grid > div[style*="flex-direction: column"] h3[style*="font-size: 18px"],
    .hrms-content-grid > div[style*="flex-direction: column"] h4[style*="font-size: 18px"] {
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
    }
    
    .hrms-content-grid > div[style*="flex-direction: column"] p[style*="font-size: 14px"] {
        font-size: 11px !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
    }
    
    .hrms-content-grid > div[style*="flex-direction: column"] button {
        padding: 8px 14px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
        width: 7rem;
        min-height: 36px !important;
        max-height: 38px !important;
    }
    
    /* Target specific pagination controls */
    .hrms-content-card > div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        gap: 10px !important;
        font-size: 11px !important;
    }
    
    .hrms-content-card > div[style*="display: flex"][style*="justify-content: space-between"] > span {
        font-size: 11px !important;
    }
    
    .hrms-content-card > div[style*="display: flex"][style*="justify-content: space-between"] > div {
        justify-content: center !important;
    }
    
    .hrms-content-card > div[style*="display: flex"][style*="justify-content: space-between"] button {
        padding: 6px 10px !important;
        font-size: 11px !important;
    }
}

/* Landscape orientation optimization for mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hrms-dashboard-content {
        min-height: 500px;
    }
    
    .hrms-main {
        max-height: calc(100vh - 200px);
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hrms-dashboard-content {
        grid-template-columns: 220px 1fr;
    }
    
    .hrms-sidebar {
        padding: 20px;
        display: flex;
    }
    
    .hrms-sidebar-logo h3 {
        font-size: 18px;
    }
    
    .hrms-nav-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .hrms-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hrms-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hrms-main {
        padding: 24px;
    }
}

/* Utility Classes for Mobile */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
    
    /* Mobile Menu Toggle Button (if you want to add sidebar toggle) */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        cursor: pointer;
        font-size: 20px;
        color: #6b7280;
    }
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}