:root{
--hrms-primary:#ff5e00;
--hrms-primary-dark:#ff5e00;
--hrms-secondary:#10B981;
--hrms-accent:#F59E0B;
--hrms-dark:#0F172A;
--hrms-text-dark:#1E293B;
--hrms-text-gray:#475569;
--hrms-bg-light:#F8FAFC;
--hrms-white:#FFFFFF;
--hrms-border:#E2E8F0;
    --hrms-success: #10B981;
}
.hrms-btn {
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
                display: flex;
    align-items: center;
        }

        .hrms-btn-primary {
            background: var(--hrms-primary);
            color: white;
        }

        .hrms-btn-primary:hover {
            background: var(--hrms-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
            color: #fff;
        }

        .hrms-btn-outline {
            border: 2px solid var(--hrms-primary);
            color: var(--hrms-primary);
            background: transparent;
        }

        .hrms-btn-outline:hover {
            background: var(--hrms-primary);
            color: white;
        }
 /* Hero Section */
        .hrms-hero {
            background: linear-gradient(135deg, #F59E0B, #F97316);
            padding: 5rem 5% 4rem;
            color: white;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ff5e00, #446bad);
            background: linear-gradient(120deg, #ff5e00 0%, #ff8c3a 40%, #446bad 100%);
            background: linear-gradient(145deg, #ff5e00, #1f3f73, #446bad);
            /* background: linear-gradient(90deg, #ff5e00 0%, #6f7fbf 100%); */
            /* background: radial-gradient(circle at top left, #ff5e00, #446bad); */
        }

        .hrms-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .hrms-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hrms-hero-content h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #FFFFFF 0%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        .hrms-hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .hrms-hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 2.5rem 0;
        }

        .hrms-stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hrms-stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--hrms-white);
            display: block;
        }

        .hrms-stat-label {
            font-size: 0.85rem;
            color: #fff;
            margin-top: 0.5rem;
        }

        .hrms-hero-cta {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .hrms-hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hrms-dashboard-preview {
            width: 100%; 
            background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
.hrms-dashboard-preview .enquiry-form.frm-bg {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}
        .hrms-preview-header {
            display: flex;
            gap: 0.5rem;
        }

        .hrms-preview-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
        }

        .hrms-preview-section {
            flex: 1;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 1.5rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .hrms-preview-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            height: 80px;
            animation: pulse 2s ease-in-out infinite;
        }

        .hrms-preview-card:nth-child(2) { animation-delay: 0.3s; }
        .hrms-preview-card:nth-child(3) { animation-delay: 0.6s; }
        .hrms-preview-card:nth-child(4) { animation-delay: 0.9s; }

        /* Problem Section */
        .hrms-problem-section {
            padding: 5rem 5%;
            background: var(--hrms-bg-white);
        }

        .hrms-section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hrms-section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 0rem;
        }

        .hrms-section-tag {
            display: inline-block;
            background: rgba(124, 58, 237, 0.1);
            color: var(--hrms-primary);
            padding: 0.5rem 1.3rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .hrms-section-title {
            font-size: 3rem;
            color: var(--hrms-dark);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .hrms-section-subtitle {
            font-size: 1.25rem;
            color: var(--hrms-text-gray);
            line-height: 1.7;
        }

        .hrms-problems-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .hrms-problem-card {
            background: var(--hrms-bg-light);
            padding: 2.5rem;
            border-radius: 16px;
            border: 2px solid var(--hrms-border);
            transition: all 0.3s;
        }

        .hrms-problem-card:hover {
            border-color: var(--hrms-accent);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .hrms-problem-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #F59E0B, #F97316);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .hrms-problem-card h3 {
            font-size: 1.5rem;
            color: var(--hrms-dark);
            margin-bottom: 1rem;
        }

        .hrms-problem-card p {
            color: var(--hrms-text-gray);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .hrms-cost-highlight {
            background: rgba(245, 158, 11, 0.1);
            padding: 1.5rem;
            border-radius: 12px;
            margin-top: 1.5rem;
            border-left: 4px solid var(--hrms-accent);
        }

        .hrms-cost-highlight strong {
            color: var(--hrms-accent);
            font-size: 1.2rem;
        }

        /* Solution Overview */
        .hrms-solution-section {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--hrms-bg-light) 0%, var(--hrms-bg-white) 100%);
        }

        .hrms-solution-intro {
            max-width: 950px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .hrms-solution-intro h2 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--hrms-dark);
            font-weight: bold;
        }

        .hrms-solution-intro .hrms-highlight {
            color: var(--hrms-primary);
            position: relative;
        }

        .hrms-solution-tagline {
            font-size: 1.6rem;
            color: var(--hrms-text-gray);
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .hrms-solution-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hrms-solution-card {
            text-align: center;
            padding: 2.5rem 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .hrms-solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--hrms-primary);
        }

        .hrms-solution-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .hrms-solution-card h3 {
            font-size: 1.15rem;
            color: var(--hrms-dark);
            margin-bottom: 0.7rem;
        }

        .hrms-solution-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Features Section */
        .hrms-features-section {
            padding: 5rem 5%;
            background: var(--hrms-bg-white);
            display: flex;
            flex-direction: column;
            gap: 7rem;
        }

        .hrms-feature-showcase {
            max-width: 1400px;
            margin: 0rem auto;
            display: grid;
            gap: 7rem;
        }

        .hrms-feature-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hrms-feature-block:nth-child(even) {
            direction: rtl;
        }

        .hrms-feature-block:nth-child(even) > * {
            direction: ltr;
        }

        .hrms-feature-content h3 {
            font-size: 2.3rem;
            color: var(--hrms-dark);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .hrms-feature-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--hrms-primary), var(--hrms-primary-dark));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .hrms-feature-description {
            font-size: 1.15rem;
            color: var(--hrms-text-gray);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .hrms-feature-list {
            list-style: none;
            display: grid;
            gap: 12px;
            padding: 0;
        }

        .hrms-feature-list li {
            padding: 0  0 0 3.2rem;
            background: var(--hrms-bg-light);
            border-radius: 12px;
            position: relative;
            color: var(--hrms-dark);
            font-weight: 500;
            font-size: 1rem;
        }

        .hrms-feature-list li::before {
            content: '✓';
            position: absolute;
            left: 1.2rem;
            color: var(--hrms-success);
            font-weight: 800;
            font-size: 1.3rem;
            top: 0;
        }

        .hrms-feature-visual {
            background: linear-gradient(135deg, var(--hrms-primary), var(--hrms-primary-dark));
            border-radius: 20px;
            padding: 0;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4.hrms-5rem;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
            position: relative;
            overflow: hidden;
        }

        .hrms-feature-visual::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        /* Module Grid */
        .hrms-modules-section {
            padding: 5rem 5%;
            background: var(--hrms-dark);
            color: white;
        }

        .hrms-modules-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .hrms-module-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 16px;
            transition: all 0.3s;
        }

        .hrms-module-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .hrms-module-icon {
            font-size: 3rem;
            margin-bottom: 1.2rem;
            display: block;
        }

        .hrms-module-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: white;
        }

        .hrms-module-list {
            list-style: none;
            padding: 0;
        }

        .hrms-module-list li {
            padding: 0.6rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
        }

        .hrms-module-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--hrms-secondary);
            font-weight: bold;
        }

        /* Benefits Section */
        .hrms-benefits-section {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--hrms-bg-light), var(--hrms-bg-white));
        }

        .hrms-benefits-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .hrms-benefit-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .hrms-benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--hrms-primary);
        }

        .hrms-benefit-icon {
            font-size: 3.2rem;
            margin-bottom: 1.2rem;
            display: block;
        }

        .hrms-benefit-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--hrms-dark);
        }

        .hrms-benefit-card p {
            color: var(--hrms-text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Compliance Section */
        .hrms-compliance-section {
            padding: 5rem 5%;
            background: var(--hrms-bg-white);
        }

        .hrms-compliance-grid {
            max-width: 1200px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .hrms-compliance-card {
            background: linear-gradient(135deg, var(--hrms-bg-light), white);
            padding: 2.5rem;
            border-radius: 16px;
            border: 2px solid var(--hrms-border);
            text-align: center;
            transition: all 0.3s;
        }

        .hrms-compliance-card:hover {
            border-color: var(--hrms-success);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hrms-compliance-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .hrms-compliance-card h4 {
            font-size: 1.4rem;
            color: var(--hrms-dark);
            margin-bottom: 0.8rem;
        }

        .hrms-compliance-card p {
            color: var(--hrms-text-gray);
            line-height: 1.7;
        }

        /* CTA Section */
        .hrms-cta-section {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--hrms-primary) 0%, var(--hrms-primary-dark) 100%);
            color: white;
            text-align: center;
                background: linear-gradient(145deg, #ff5e00, #1f3f73, #446bad);
        }

        .hrms-cta-content {
            max-width: 850px;
            margin: 0 auto;
        }

        .hrms-cta-content h2 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .hrms-cta-content p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
        }

        .hrms-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hrms-btn-white {
            background: white;
            color: var(--hrms-primary);
        }

        .hrms-btn-white:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .hrms-btn-outline-white {
            border: 2px solid white;
            color: white;
            background: transparent;
        }

        .hrms-btn-outline-white:hover {
            background: white;
            color: var(--hrms-primary);
        }


         /* Animations */
        @keyframes pulse {
            0%, 100% {
                opacity: 0.4;
            }
            50% {
                opacity: 0.8;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hrms-hero-container {
                grid-template-columns: 1fr;
            }

            .hrms-hero-content h1 {
                font-size: 2.8rem;
            }

            .hrms-feature-block {
                grid-template-columns: 1fr;
            }

            .hrms-solution-features,
            .hrms-modules-grid,
            .hrms-benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hrms-problems-grid,
            .hrms-compliance-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hrms-nav-links {
                display: none;
            }

            .hrms-hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .hrms-section-title {
                font-size: 2.2rem;
            }

            .hrms-solution-features,
            .hrms-modules-grid,
            .hrms-benefits-grid,
            .hrms-compliance-grid,
            .hrms-footer-content {
                grid-template-columns: 1fr;
            }
        }

          form.enquiry-form .form-group {
    margin-bottom: 15px;
}

form.enquiry-form .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    color: gray;
    font-weight: 500;
}

form.enquiry-form .form-group  .form-control{
    border: solid 1px #ddd;
}

form.enquiry-form input.btn.submit {
        background: var(--hrms-primary);
    color: white;
        border-radius: 8px !important;
    font-weight: 600;
    padding: 15px 30px;
}

.HeadingBox h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #000;
}


.DemoHeading {
    padding: 24px;
    text-align: center;
        border-bottom: solid 1px #eee;
}

.DemoHeading p {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #a7a7a7;
}

.DemoHeading h5 {
    font-size: 25px;
    font-weight: bold;
    color: #000;
}

.hrms-dashboard-preview1 {
    background: #fff;
    border-radius: 15px;
        overflow: hidden;
}