﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --primary: #e63946;
    --primary-dark: #d00000;
    --primary-light: #ff6b7a;
    --accent: #f77f00;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-dark: #2d3748;
    --gray: #718096;
    --gray-light: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Top Section */
.header-top {
    background: linear-gradient(100deg, var(--primary-dark) 0%, #e2ca01 133%);
    padding: 12px 0;
    color: var(--white);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

    .header-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--primary-dark), transparent);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.header-top .container {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.info-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

    .info-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }

        .info-list li:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -15px;
            height: 16px;
            width: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

    .info-list a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
    }

        .info-list a:hover {
            color: var(--primary-light);
            transform: translateX(2px);
        }

    .info-list i {
        width: 16px;
        opacity: 0.9;
    }

.social-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

    .social-links a {
        color: var(--white);
        font-size: 14px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

            .social-links a:hover::before {
                left: 100%;
            }

/* Main Header */
.header {
    background: linear-gradient(36deg, var(--primary-dark) 30%, #ffffff 30%);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

    .header.scrolled {
        background: linear-gradient(36deg, var(--primary-dark) 30%, #ffffff 30%);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-hover);
    }

.header-container {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    z-index: 1001;
}

    .logo:hover {
        transform: scale(1.05);
    }

.hajri-logo {
    height: 65px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.2);
    transition: var(--transition);
}

.logo:hover .hajri-logo {
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
    transform: rotate(-5deg);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10rem;
}

.nav {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--gradient);
        border-radius: 2px;
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .nav-link:hover {
        color: var(--primary);
        transform: translateY(-2px);
    }

        .nav-link:hover::before {
            width: 100%;
        }

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--gray);
    transition: var(--transition);
}

.nav-link:hover .dropdown-arrow {
    border-top-color: var(--primary);
    transform: rotate(180deg);
}

.cta-button {
    background: linear-gradient(100deg, var(--primary-dark) 0%, #e2ca01 133%);
    color: var(--white);
    padding: 14px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition);
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

        .cta-button:hover::before {
            left: 100%;
        }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-dark);
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1001;
}

    .mobile-menu-toggle:hover {
        background: var(--gray-light);
        color: var(--primary);
    }

/* Professional MNC Company Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .mobile-menu.active {
        transform: translateY(0);
    }

/* Mobile Menu Header */
.mobile-menu-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 25px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .mobile-menu-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e5e5;
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Logo Image */
.menu-logo {
    height: 65px;
    width: auto;
}

/* Close Button */
.menu-close {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #ff0000;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

    .menu-close:hover {
        color: #e63946;
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 6px 12px rgba(230, 57, 70, 0.3);
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mobile-menu-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.mobile-menu-subtitle {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Navigation Section */
.mobile-nav {
    list-style: none;
    padding-bottom: 17px;
    margin: 0;
    background: white;
}

    .mobile-nav li {
        border-bottom: 1px solid #f1f5f9;
    }

        .mobile-nav li:last-child {
            border-bottom: none;
        }

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

    .mobile-nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
        transition: width 0.3s ease;
        opacity: 0.1;
    }

    .mobile-nav-link::after {
        content: '→';
        font-size: 16px;
        color: var(--gray);
        transition: all 0.3s ease;
        transform: translateX(-5px);
        opacity: 0;
    }

    .mobile-nav-link:active,
    .mobile-nav-link:hover {
        color: var(--primary);
        background: #fef2f2;
        padding-left: 35px;
    }

        .mobile-nav-link:active::before,
        .mobile-nav-link:hover::before {
            width: 4px;
            opacity: 1;
        }

        .mobile-nav-link:active::after,
        .mobile-nav-link:hover::after {
            opacity: 1;
            transform: translateX(0);
            color: var(--primary);
        }

    /* Add menu icons */
    .mobile-nav-link[href*="home"]::before {
        content: '🏠';
    }

    .mobile-nav-link[href*="solutions"]::before {
        content: '💡';
    }

    .mobile-nav-link[href*="about"]::before {
        content: '👥';
    }

    .mobile-nav-link[href*="teams"]::before {
        content: '🚀';
    }

    .mobile-nav-link[href*="contact"]::before {
        content: '📞';
    }

/* Mobile CTA Section */
.mobile-cta {
    padding: 30px 25px;
    display: flex;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    justify-content: center;
    align-items: center;
}

    .mobile-cta .cta-button {
        width: 100%;
        padding: 18px 25px;
        background: linear-gradient(100deg, var(--primary-dark) 0%, #e2ca01 133%);
        color: white;
        text-decoration: none;
        border-radius: 35px;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        display: block;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .mobile-cta .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .mobile-cta .cta-button:active,
        .mobile-cta .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
        }

            .mobile-cta .cta-button:active::before,
            .mobile-cta .cta-button:hover::before {
                left: 100%;
            }

/* Mobile Social Section */
.mobile-social {
    padding: 25px;
    background: white;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.mobile-social-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .mobile-social .social-links a {
        width: 48px;
        height: 48px;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray);
        font-size: 18px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .mobile-social .social-links a:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: #fef2f2;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
        }

/* Contact Info in Mobile Menu */
.mobile-contact {
    padding: 25px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.mobile-contact-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 14px;
    text-decoration: none;
}

    .mobile-contact-item i {
        width: 20px;
        color: var(--primary);
        text-align: center;
    }

    .mobile-contact-item:hover {
        color: var(--primary);
    }

/* Menu Animation Delays */
.mobile-menu.active .mobile-nav li:nth-child(1) {
    animation: slideInUp 0.4s ease 0.1s both;
}

.mobile-menu.active .mobile-nav li:nth-child(2) {
    animation: slideInUp 0.4s ease 0.15s both;
}

.mobile-menu.active .mobile-nav li:nth-child(3) {
    animation: slideInUp 0.4s ease 0.2s both;
}

.mobile-menu.active .mobile-nav li:nth-child(4) {
    animation: slideInUp 0.4s ease 0.25s both;
}

.mobile-menu.active .mobile-nav li:nth-child(5) {
    animation: slideInUp 0.4s ease 0.3s both;
}

.mobile-menu.active .mobile-cta {
    animation: slideInUp 0.4s ease 0.35s both;
}

.mobile-menu.active .mobile-social {
    animation: slideInUp 0.4s ease 0.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button Style */
.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

/* Responsive Adjustments */
@media (max-width: 480px) {
    .mobile-menu-header {
        padding: 50px 20px 25px;
    }

    .mobile-menu-title {
        font-size: 24px;
    }

    .mobile-nav-link {
        padding: 18px 20px;
        font-size: 17px;
    }

    .mobile-cta {
        padding: 25px 20px;
    }

    .mobile-social {
        padding: 20px;
    }

    .mobile-contact {
        padding: 20px;
    }

    .header {
        background: linear-gradient(36deg, var(--primary-dark) 23%, #ffffff 23%);
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        max-width: 98%;
    }

    .header {
        background: linear-gradient(36deg, var(--primary-dark) 30%, #ffffff 30%) !important;
    }

    .nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 17px;
    }

    .cta-button {
        padding: 11px 24px;
        font-weight: 700;
        font-size: 12px;
    }

    .desktop-nav {
        gap: 30px;
    }

    .header-top .container {
        max-width: 85%;
        display: flex;
        justify-content: center;
    }

    .hero-container {
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    section.hero-section {
        padding: 0px !important;
    }

    .image-section {
        border-radius: 0px !important;
    }

    .image-section {
        height: 670px !important;
    }

    .hero-image {
        object-fit: cover !important;
    }

    .hero-container {
        gap: 0 !important;
    }

    .main-content {
        border-radius: 0px !important;
        margin-bottom: 0px !important;
        padding: 3rem 9rem !important;
    }

        .main-content h1 {
            font-size: 3.6rem !important;
        }

    .clients-section {
        border-radius: 0px !important;
    }

    .client-logos-container {
        max-width: 900px !important;
    }

    .clients-header {
        justify-content: center !important;
        gap: 10px !important;
    }

    .clients-section p {
        display: none !important;
    }

    .about-content-bar {
        gap: 2rem !important;
    }

    .about-title {
        font-size: 1.5rem !important;
    }

    .about-subtitle {
        font-size: 1.5rem !important;
    }

    .about-section {
        padding: 2rem 1rem !important;
        min-height: 40vh !important;
    }

    .about-container {
        max-width: 100% !important;
    }

    .about-line-jakl {
        text-align: left !important;
    }

    .about-badge {
        padding: 0.5rem 1rem !important;
    }

    .box-container {
        max-width: 99% !important;
        flex-direction: column;
    }

    .primary-white-content-box {
        padding: 15px 12px !important;
        justify-content: space-around !important;
    }

    .small-box.primary-red-content-box {
        padding: 15px 12px !important;
        justify-content: space-around !important;
    }

    .big-box {
        width: 100% !important;
        height: 80vh !important;
    }

    .hr-services-grid {
        gap: 20px !important;
    }

    .hr-platform-container {
        max-width: 100% !important;
    }

    .payroll-icon-wrapper i.fa-solid.fa-robot,
    .recruitment-icon-wrapper i.fa-solid.fa-lightbulb,
    .performance-icon-wrapper i.fa-solid.fa-puzzle-piece {
        font-size: 1rem !important;
    }

    .payroll-management-card .payroll-service-title,
    .recruitment-tracking-card .recruitment-service-title,
    .employee-performance-card .performance-service-title {
        font-size: 12px !important;
    }

    .payroll-management-card,
    .recruitment-tracking-card,
    .employee-performance-card {
        padding: 1rem !important;
    }

        .payroll-management-card .payroll-service-description,
        .recruitment-tracking-card .recruitment-service-description,
        .employee-performance-card .performance-service-description {
            font-size: 12px !important;
        }

        .payroll-management-card .payroll-features-list .payroll-feature-item,
        .recruitment-tracking-card .recruitment-features-list .recruitment-feature-item,
        .employee-performance-card .performance-features-list .performance-feature-item {
            font-size: 12px !important;
        }

    .hr-platform-container {
        padding: 40px 5px !important;
    }

    .testimonial-main-container {
        padding: 15px !important;
    }

    .testimonial-card-header {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 25px;
    }

    .testimonial-rating-stars {
        margin-left: 0 !important;
    }

    .testimonial-review-text {
        font-size: 15px !important;
        text-align: center !important;
    }

    .features-image {
        min-height: 500px !important;
    }

    .section-wrapper {
        display: flex !important;
        flex-direction: column !important;
    }

    .section-left {
        text-align: center !important;
    }

        .section-left h1 {
            font-size: 32px !important;
        }

        .section-left p {
            font-size: 14px !important;
        }

        .section-left h5 {
            padding: 10px 24px !important;
            font-size: 11px !important;
        }

    .section-right {
        gap: 10px !important;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        padding: 12px 10px;
        background: linear-gradient(36deg, var(--primary-dark) 60%, #ffffff 60%) !important;
    }

    .hajri-logo {
        height: 55px;
    }

    .info-list {
        gap: 20px;
        justify-content: center;
    }

    .header-top {
        display: none;
    }

    .header {
        background: linear-gradient(36deg, var(--primary-dark) 25%, #ffffff 25%);
    }

    .info-list li:not(:last-child)::after {
        right: -10px;
    }

    .header-top .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-content h1 {
        font-size: 2rem !important;
    }

    .main-content {
        padding: 3rem 15rem !important;
    }

        .main-content p {
            font-size: 0.8rem !important;
        }

    .btn {
        padding: 1rem 3rem !important;
    }

    .about-content-bar {
        gap: 2rem !important;
    }

    .about-title {
        font-size: 1.6rem !important;
        text-align: center !important;
    }

    .about-subtitle {
        font-size: 1.6rem !important;
        text-align: center !important;
    }

    .about-content-bar {
        flex-direction: column-reverse !important;
        gap: 10px !important;
    }

    section.about-section {
        padding: 1rem 2rem !important;
        min-height: 40vh !important;
    }

    .about-container {
        max-width: 100% !important;
    }

    .about-badge {
        padding: 0.5rem 1rem !important;
    }

    .about-line-jakl {
        width: 100% !important;
        text-align: center !important;
    }

    .box-container {
        max-width: 99% !important;
        flex-direction: column;
    }

    .primary-white-content-box {
        padding: 15px 12px !important;
        justify-content: space-around !important;
    }

    .small-box.primary-red-content-box {
        padding: 15px 12px !important;
        justify-content: space-around !important;
    }

    .big-box {
        width: 100% !important;
        height: 65vh !important;
    }

    .box-tittle-content h2 {
        font-size: 3.5rem !important;
    }

    .box-subtittle-content h3 {
        font-size: 1.3rem !important;
    }

    .primary-white-content-box p {
        font-size: 14px;
    }

    .hr-platform-header {
        align-items: anchor-center !important;
    }

        .hr-platform-header .header-left-section .main-title {
            font-size: 30px !important;
        }

    .hr-services-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .payroll-icon-wrapper i.fa-solid.fa-robot,
    .recruitment-icon-wrapper i.fa-solid.fa-lightbulb,
    .performance-icon-wrapper i.fa-solid.fa-puzzle-piece {
        font-size: 20px !important;
    }

    .payroll-management-card .payroll-service-title,
    .recruitment-tracking-card .recruitment-service-title,
    .employee-performance-card .performance-service-title {
        font-size: 15px !important;
    }

    .payroll-management-card,
    .recruitment-tracking-card,
    .employee-performance-card {
        padding: 1rem !important;
    }

        .payroll-management-card .payroll-service-description,
        .recruitment-tracking-card .recruitment-service-description,
        .employee-performance-card .performance-service-description {
            font-size: 14px !important;
        }

        .payroll-management-card .payroll-features-list .payroll-feature-item,
        .recruitment-tracking-card .recruitment-features-list .recruitment-feature-item,
        .employee-performance-card .performance-features-list .performance-feature-item {
            font-size: 14px !important;
        }

    .hr-platform-header .view-more-button {
        padding: 12px 27px !important;
        font-size: 10px !important;
    }

    .testimonial-slider-container {
        padding: 4px 0 !important;
    }

    .features-image {
        min-height: 500px !important;
    }

    .section-right {
        display: flex !important;
        flex-direction: column !important;
    }

    .section-wrapper {
        padding: 10px 0px !important;
    }
}


@media (max-width: 480px) {
    .header {
        padding: 0 15px;
        background: linear-gradient(36deg, var(--primary-dark) 35%, #ffffff 35%) !important;
    }

    .hajri-logo {
        height: 50px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 15px 20px;
    }

    .mobile-nav {
        padding: 0 20px;
    }

    .mobile-cta {
        padding: 20px;
    }

    .info-list {
        flex-direction: column;
        gap: 10px;
    }

        .info-list li:not(:last-child)::after {
            display: none;
        }

        .info-list li {
            justify-content: center;
        }

    .main-content {
        padding: 3rem 21rem !important;
    }

        .main-content p {
            font-size: 0.7rem !important;
        }

        .main-content h1 {
            font-size: 2rem !important;
            padding: 0 !important;
        }

    .btn {
        font-size: 0.8rem;
        padding: 0.9rem 1rem !important;
    }

    .clients-header h2 {
        font-size: 1.5rem !important;
    }

    .avatar {
        width: 30px !important;
        height: 30px !important;
    }

    .logo-text {
        font-size: 1rem !important;
    }

    h2.about-subtitle {
        font-size: 1rem !important;
    }

    h1.about-title {
        font-size: 1rem !important;
    }

    .about-content-bar {
        gap: 2px !important;
    }

    section.about-section {
        padding: 1rem 0.5rem !important;
    }

    button.about-badge {
        padding: 0.5rem 2.8rem !important;
    }

    .big-box {
        display: flex !important;
        flex-direction: column !important;
        height: 810px !important;
        margin-bottom: 20px !important;
    }

    .box-container {
        max-width: 95% !important;
    }

    .hr-services-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    button.view-more-button {
        display: none;
    }

    .hr-services-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    .hr-platform-container {
        max-width: 95% !important;
    }

    .testimonial-review-text {
        font-size: 13px !important;
        text-align: center !important;
    }

    .section-left h1 {
        font-size: 20px !important;
    }

    .section-left h5 {
        padding: 10px 15px !important;
        font-size: 11px !important;
    }
}

@media (min-width: 1025px) and (max-width: 1500px) {
    .header {
        background: linear-gradient(36deg, var(--primary-dark) 30%, #ffffff 30%);
    }

    .nav-link {
        font-size: 17px;
    }

    .desktop-nav {
        gap: 5rem;
    }

    .header-top .container {
        max-width: 80%;
    }

    .cta-button {
        padding: 11px 42px;
        font-weight: 700;
    }

    .hero-container {
        max-width: 99% !important;
        gap: 0.5rem !important;
    }

    .about-content-bar {
        gap: 10rem !important;
    }

    .about-title {
        font-size: 2rem !important;
    }

    .about-subtitle {
        font-size: 2rem !important;
    }

    .about-section {
        padding: 2rem 2rem !important;
    }

    .about-container {
        max-width: 100% !important;
    }


    .box-container {
        max-width: 99% !important;
    }

    .primary-white-content-box {
        padding: 40px 12px !important;
    }

    .small-box.primary-red-content-box {
        padding: 40px 12px !important;
    }

    .hr-platform-container {
        max-width: 97% !important;
        padding: 30px 0 !important;
    }

    .hr-services-grid {
        gap: 20px !important;
    }

    .payroll-icon-wrapper i.fa-solid.fa-robot,
    .recruitment-icon-wrapper i.fa-solid.fa-lightbulb,
    .performance-icon-wrapper i.fa-solid.fa-puzzle-piece {
        font-size: 1.5rem !important;
    }

    .payroll-management-card .payroll-service-title,
    .recruitment-tracking-card .recruitment-service-title,
    .employee-performance-card .performance-service-title {
        font-size: 16px !important;
    }

    .payroll-management-card,
    .recruitment-tracking-card,
    .employee-performance-card {
        padding: 1rem !important;
    }

        .payroll-management-card .payroll-service-description,
        .recruitment-tracking-card .recruitment-service-description,
        .employee-performance-card .performance-service-description {
            font-size: 14px !important;
        }

        .payroll-management-card .payroll-features-list .payroll-feature-item,
        .recruitment-tracking-card .recruitment-features-list .recruitment-feature-item,
        .employee-performance-card .performance-features-list .performance-feature-item {
            font-size: 14px !important;
        }

    .testimonial-main-container {
        padding: 30px !important;
    }

    .section-wrapper {
        display: flex !important;
        flex-direction: column !important;
    }

    .section-left {
        text-align: center !important;
    }
}




/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-container {
    animation: fadeInUp 0.8s ease-out;
}

.nav-item {
    animation: fadeInUp 0.8s ease-out;
}

    .nav-item:nth-child(2) {
        animation-delay: 0.1s;
    }

    .nav-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-item:nth-child(4) {
        animation-delay: 0.3s;
    }

    .nav-item:nth-child(5) {
        animation-delay: 0.4s;
    }

.cta-button {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Demo content for scroll testing */
.demo-content {
    height: 200vh;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 20px;
    text-align: center;
}

    .demo-content h1 {
        font-size: 3em;
        color: var(--gray-dark);
        margin-bottom: 20px;
    }

    .demo-content p {
        font-size: 1.2em;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }












/* Hero section css */


.hero-container {
    max-width: 95%;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
}

section.hero-section {
    padding: 25px 0;
}

.content-section {
    z-index: 2;
    position: relative;
}

.main-content {
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .main-content h1 {
        font-size: 4.6rem;
        font-weight: 700;
        color: white;
        padding: 0 5rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .main-content p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        text-align: center;
        font-weight: 400;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: #000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary {
    background: white;
    color: #ff4757;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

.clients-section {
    background: #000000;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.clients-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

    .clients-header h2 {
        font-size: 2rem;
        font-weight: 600;
    }

.client-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.client-coumt-span {
    font-weight: 700;
}

.avatar {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #000000;
    margin-left: -15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background: var(--primary-dark);
}

    .avatar:first-child {
        margin-left: 0;
    }

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.count-badge {
    background: #ff4757;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.clients-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.client-logos-container {
    width: 100%;
    max-width: 800px;
    /* or any desired width */
    overflow: hidden;
    position: relative;
    background: #000;
    /* optional background for contrast */
}

.client-logos-track {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgb(0 0 0 / 10%);
    border-radius: 50px;
    white-space: nowrap;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-weight: 600;
    color: white;
    font-size: 1.5rem;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.image-section {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Responsive Design */


/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content,
.clients-section,
.image-section {
    animation: fadeInUp 0.8s ease forwards;
}

.clients-section {
    animation-delay: 0.2s;
}

.image-section {
    animation-delay: 0.4s;
}











.about-section {
    padding: 5rem 2rem;
    background: #ffffff;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
}

.about-content-bar {
    display: flex;
    gap: 40rem;
}

.about-line-jakl {
    width: 26rem;
}

.about-badge {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    text-align: end;
    padding: 0 0px;
    margin-left: auto;
    margin-right: auto;
}

.about-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00000042;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: end;
    padding: 0 0px;
    margin-left: auto;
    margin-right: auto;
}



/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-badge {
    animation: fadeInUp 0.6s ease forwards;
}

.about-title {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.about-subtitle {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}





/* BOX container */


.box-container {
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
    display: flex;
    gap: 20px;
}

.big-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    background-color: #fff;
    height: 80vh;
    border-radius: 8px;
    width: 50%;
}

.small-box {
    background-color: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    /* Fill the grid cell */
}

    .small-box img {
        width: 100%;
        border-radius: 13px;
        object-fit: cover;
        flex-grow: 1;
    }


.content-box h2 {
    margin: 10px 0 5px;
    font-size: 22px;
    color: #333;
}

.content-box h3 {
    margin: 5px 0 10px;
    font-size: 16px;
    color: #555;
}

.content-box p {
    font-size: 14px;
    color: #666;
}

.red-box {
    background-color: #ffe6e6;
}

.box1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.box2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.box3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.small-box.primary-red-content-box {
    background: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
}

.box-tittle-content {
    width: 100%;
    text-align: left;
}

    .box-tittle-content h2 {
        font-size: 4rem;
        font-weight: 600;
        color: white;
    }

.box-subtittle-content {
    width: 100%;
    text-align: left;
}

    .box-subtittle-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
    }

    .box-subtittle-content p {
        color: white;
    }

.primary-white-content-box {
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
}

    .primary-white-content-box h2 {
        color: #000;
    }

    .primary-white-content-box h3 {
        color: #000;
    }

    .primary-white-content-box p {
        color: #000;
    }















/* Main Container */
.hr-platform-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Header Section */
.hr-platform-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

    .hr-platform-header .header-left-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .hr-platform-header .header-left-section .about-us-button {
            position: relative;
            /* added for ::before positioning */
            overflow: hidden;
            /* ensures the sheen stays within the button */
            background: linear-gradient(100deg, var(--primary-dark) 0%, #e2ca01 133%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            border: none;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }

            .hr-platform-header .header-left-section .about-us-button::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transition: left 0.5s ease;
                z-index: 1;
                /* ensure it's above background but below text */
            }

            .hr-platform-header .header-left-section .about-us-button:hover {
                transform: translateY(-2px);
                box-shadow: var(--shadow-hover);
                /* optional, can define this or remove */
            }

                .hr-platform-header .header-left-section .about-us-button:hover::before {
                    left: 100%;
                    /* animate sheen sliding across */
                }


        .hr-platform-header .header-left-section .main-title {
            font-size: 50px;
            font-weight: 700;
            line-height: 1.1;
            color: #000;
            margin-bottom: 0;
            max-width: 600px;
        }

    .hr-platform-header .view-more-button {
        position: relative;
        text-decoration: none;
        /* added to contain the ::before */
        overflow: hidden;
        /* ensure ::before doesn't overflow */
        background: linear-gradient(100deg, var(--primary-dark) 0%, #e2ca01 133%);
        color: white;
        padding: 16px 40px;
        border-radius: 30px;
        border: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-top: 20px;
    }

        .hr-platform-header .view-more-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
            z-index: 1;
            /* appear above background but below text */
        }

        .hr-platform-header .view-more-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

            .hr-platform-header .view-more-button:hover::before {
                left: 100%;
                /* slide the gradient across the button */
            }

/* Services Grid */
.hr-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

/* Payroll Management Service */
.payroll-management-card {
    flex: 1;
}

    .payroll-management-card .payroll-icon-wrapper {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: left;
        gap: 12px;
    }

        .payroll-management-card .payroll-icon-wrapper .payroll-gear-icon {
            width: 48px;
            height: 48px;
            background: #e53e3e;
            border-radius: 50%;
            position: relative;
        }

            .payroll-management-card .payroll-icon-wrapper .payroll-gear-icon::before {
                content: "⚙";
                color: white;
                font-size: 24px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

    .payroll-management-card .payroll-service-title {
        font-size: 24px;
        font-weight: 700;
        color: #000;
        line-height: 1.3;
    }

    .payroll-management-card .payroll-service-description {
        font-size: 16px;
        color: #666;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .payroll-management-card .payroll-features-list {
        list-style: none;
    }

        .payroll-management-card .payroll-features-list .payroll-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 16px;
            font-weight: 600;
            color: #000;
            gap: 10px;
        }


i.fa-solid.fa-circle-check {
    font-size: 17px;
    color: var(--primary-dark);
    margin-top: 4px;
}


/* Recruitment & Tracking Service */
.recruitment-tracking-card {
    flex: 1;
}

    .recruitment-tracking-card .recruitment-icon-wrapper {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: left;
        gap: 12px;
    }

        .recruitment-tracking-card .recruitment-icon-wrapper .recruitment-bulb-icon {
            width: 48px;
            height: 48px;
            background: #e53e3e;
            border-radius: 50%;
            position: relative;
        }

            .recruitment-tracking-card .recruitment-icon-wrapper .recruitment-bulb-icon::before {
                content: "💡";
                font-size: 24px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

    .recruitment-tracking-card .recruitment-service-title {
        font-size: 24px;
        font-weight: 700;
        color: #000;
        line-height: 1.3;
    }

    .recruitment-tracking-card .recruitment-service-description {
        font-size: 16px;
        color: #666;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .recruitment-tracking-card .recruitment-features-list {
        list-style: none;
    }


        .recruitment-tracking-card .recruitment-features-list .recruitment-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 16px;
            font-weight: 600;
            color: #000;
            gap: 10px;
        }



/* Employee Performance Service */
.employee-performance-card {
    flex: 1;
}

    .employee-performance-card .performance-icon-wrapper {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: left;
        gap: 12px;
    }

        .employee-performance-card .performance-icon-wrapper .performance-heart-icon {
            width: 48px;
            height: 48px;
            background: #e53e3e;
            border-radius: 50%;
            position: relative;
        }

            .employee-performance-card .performance-icon-wrapper .performance-heart-icon::before {
                content: "❤";
                color: white;
                font-size: 24px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

    .employee-performance-card .performance-service-title {
        font-size: 24px;
        font-weight: 700;
        color: #000;
        line-height: 1.3;
    }

    .employee-performance-card .performance-service-description {
        font-size: 16px;
        color: #666;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .employee-performance-card .performance-features-list {
        list-style: none;
    }

        .employee-performance-card .performance-features-list .performance-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 16px;
            font-weight: 600;
            color: #000;
            gap: 10px;
        }


.payroll-management-card,
.recruitment-tracking-card,
.employee-performance-card {
    border: 1px solid #80808066;
    border-radius: 16px;
    padding: 1rem 1.5rem;
}

.payroll-icon-wrapper i.fa-solid.fa-robot {
    font-size: 2rem;
    color: var(--primary-dark);
}

.recruitment-icon-wrapper i.fa-solid fa-qrcode {
    font-size: 2rem;
    color: var(--primary-dark);
}

.performance-icon-wrapper i.fa-solid.fa-puzzle-piece {
    font-size: 2rem;
    color: var(--primary-dark);
}

i.fa-solid.fa-qrcode {
    font-size: 2rem;
    color: var(--primary-dark);
}
.recruitment-icon-wrapper {
    font-size: 2rem;
    color: var(--primary-dark);
}

/* Responsive Design */

























.hr-workflows-section {
    background-color: var(--primary-dark);
    padding: 70px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Header Content Container */
.hr-workflows-header-container {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
}

    /* Resource Categories Button */
    .hr-workflows-header-container .resource-categories-button {
        background-color: #fff;
        color: var(--primary-dark);
        padding: 12px 30px;
        border-radius: 25px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 40px;
        display: inline-block;
    }



    /* Main Title */
    .hr-workflows-header-container .workflows-main-title {
        font-size: 60px;
        font-weight: 700;
        line-height: 1.1;
        color: white;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Description Text */
    .hr-workflows-header-container .workflows-description-text {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

/* Templates Grid Container */
.hr-workflows-templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

    /* Template Card Row 1 */
    .hr-workflows-templates-grid .template-card-row1-col1 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row1-col1:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row1-col1 .template-title-row1-col1 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

    .hr-workflows-templates-grid .template-card-row1-col2 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row1-col2:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row1-col2 .template-title-row1-col2 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

    .hr-workflows-templates-grid .template-card-row1-col3 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row1-col3:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row1-col3 .template-title-row1-col3 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

    .hr-workflows-templates-grid .template-card-row1-col4 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row1-col4:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row1-col4 .template-title-row1-col4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

    /* Template Card Row 2 */
    .hr-workflows-templates-grid .template-card-row2-col1 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row2-col1:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row2-col1 .template-title-row2-col1 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

    .hr-workflows-templates-grid .template-card-row2-col2 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row2-col2:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row2-col2 .template-title-row2-col2 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

    .hr-workflows-templates-grid .template-card-row2-col3 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row2-col3:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row2-col3 .template-title-row2-col3 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

    .hr-workflows-templates-grid .template-card-row2-col4 {
        background-color: white;
        padding: 25px 30px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .hr-workflows-templates-grid .template-card-row2-col4:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .hr-workflows-templates-grid .template-card-row2-col4 .template-title-row2-col4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.4;
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .hr-workflows-templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hr-workflows-header-container .workflows-main-title {
        font-size: 48px;
    }

    .hr-workflows-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .hr-workflows-templates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hr-workflows-header-container .workflows-main-title {
        font-size: 36px;
    }

    .hr-workflows-header-container .workflows-description-text {
        font-size: 16px;
    }

    .hr-workflows-section {
        padding: 40px 20px;
    }
}











.testimonial-main-container {
    width: 100%;
    max-width: 100%;
    padding: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

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

.testimonial-badge-wrapper {
    display: inline-block;
    margin-bottom: 30px;
}

.testimonial-red-badge {
    background: var(--primary-dark);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

    .testimonial-red-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
    }

.testimonial-main-title {
    font-size: 48px;
    font-weight: 800;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
}

.testimonial-subtitle-text {
    font-size: 18px;
    color: #394453;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 24px;
    background: rgb(255 255 255);
    padding: 30px 0;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: testimonial-scroll-horizontal 40s linear infinite;
}

    .testimonial-track:hover {
        animation-play-state: paused;
    }

.testimonial-enhanced-card {
    background: linear-gradient(145deg, #ffffff, #eceef163);
    border-radius: 24px;
    padding: 42px;
    margin: 0 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    width: 470px;
    flex-shrink: 0;
}

    .testimonial-enhanced-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(100deg, var(--primary-dark) 0%, #e2ca01 133%);
        border-radius: 24px 24px 0 0;
        opacity: 0.7;
    }

    .testimonial-enhanced-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 12px 35px rgba(0, 0, 0, 0.08);
    }

.testimonial-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-avatar-wrapper {
    margin-right: 20px;
    position: relative;
}

.testimonial-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    position: relative;
    overflow: hidden;
}

    .testimonial-user-avatar::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        animation: testimonial-avatar-shine 3s ease-in-out infinite;
    }

.testimonial-user-info {
    flex: 1;
}

.testimonial-user-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-user-role {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-rating-stars {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.testimonial-star-icon {
    color: #fbbf24;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
    animation: testimonial-star-twinkle 2s ease-in-out infinite;
}

    .testimonial-star-icon:nth-child(2) {
        animation-delay: 0.2s;
    }

    .testimonial-star-icon:nth-child(3) {
        animation-delay: 0.4s;
    }

    .testimonial-star-icon:nth-child(4) {
        animation-delay: 0.6s;
    }

    .testimonial-star-icon:nth-child(5) {
        animation-delay: 0.8s;
    }

.testimonial-review-text {
    color: #374151;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
}

    .testimonial-review-text::before {
        content: '"';
        font-size: 50px;
        color: #ef4444;
        position: absolute;
        top: -20px;
        left: -10px;
        font-family: serif;
        opacity: 0.3;
    }

.testimonial-controls-bar {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-control-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

    .testimonial-control-btn:hover {
        transform: translateY(-2px) scale(1.1);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    }

    .testimonial-control-btn.testimonial-paused {
        background: linear-gradient(135deg, #6b7280, #4b5563);
    }

.testimonial-speed-indicator {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes testimonial-scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes testimonial-avatar-shine {

    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes testimonial-star-twinkle {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-enhanced-card {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .testimonial-main-container {
        padding: 60px 16px;
    }

    .testimonial-main-title {
        font-size: 36px;
    }

    .testimonial-subtitle-text {
        font-size: 16px;
    }

    .testimonial-enhanced-card {
        width: 300px;
        padding: 25px;
    }

    .testimonial-controls-bar {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .testimonial-main-title {
        font-size: 32px;
    }

    .testimonial-enhanced-card {
        width: 280px;
        margin: 0 15px;
    }
}
























/* === FEATURES SECTION === */
.features-section {
    background-color: var(--white);
    color: var(--black);
    transition: var(--transition);
    padding-bottom: 2rem;
    overflow:hidden;
}

    .features-section.dark-mode {
        background-color: var(--gray-dark);
        color: var(--white);
    }

/* === CONTAINER === */
    .features-section .features-container {
        max-width: 95%;
        margin: 0 auto;
        padding: 0 1rem;
    }

/* === HEADER === */
    .features-section .features-header {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        margin-bottom: 3rem;
    }

    .features-section .features-header-content {
        grid-column: span 12;
    }

@media (min-width: 1024px) {
    .features-section .features-header-content {
        grid-column: span 7;
    }
}

.features-section .features-title {
    font-size: 1.563rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

@media (min-width: 768px) {
    .features-section .features-title {
        font-size: 2.813rem;
    }
}

.features-section .features-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

/* === CONTENT GRID === */
.features-section .features-content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* === IMAGE COLUMN === */
.features-section .features-image-column {
    grid-column: span 12;
}

@media (min-width: 1024px) {
    .features-section .features-image-column {
        grid-column: span 6;
    }
}

.features-section .features-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
    min-height: 150px;
    float: right;
}

@media (min-width: 1024px) {
    .features-section .features-image {
        width: 42vw;
        border-radius: 0 var(--border-radius) var(--border-radius) 0;
    }
}

/* === FEATURE LIST COLUMN === */
.features-section .features-list-column {
    grid-column: span 12;
}

@media (min-width: 1024px) {
    .features-section .features-list-column {
        grid-column: span 6;
    }
}

.features-section .features-list-container {
    margin-left: 0;
}

@media (min-width: 1024px) {
    .features-section .features-list-container {
        margin-left: 3rem;
    }
}

/* === FEATURE ITEM === */
.features-section .feature-item {
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 0 90px 90px 0;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    margin-left: 3rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .features-section .feature-item:last-child {
        margin-bottom: 0;
    }

    .features-section .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        background: var(--gradient);
    }

@media (min-width: 1024px) {
    .features-section .feature-item {
        margin-bottom: 3rem;
    }
}

.features-section .feature-item.dark-mode {
    background-color: var(--gray-dark);
}

/* === ICON CONTAINER === */
.features-section .feature-icon-container {
    width: 74px;
    height: 74px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -37px;
    margin-right: 2.75rem;
    margin-left: -2.75rem;
    transition: var(--transition);
}

.features-section .feature-item:hover .feature-icon-container {
    transform: scale(1.1);
}

.features-section .feature-icon-container.dark-mode {
    background: var(--primary-dark);
}

/* === TITLE & DESCRIPTION === */
.features-section .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.features-section .feature-description {
    opacity: 0.9;
    font-size: 1rem;
    color: var(--white);
}








.section-wrapper {
    max-width: 95%;
    margin: 80px auto;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Left Content */
.section-left h5 {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.section-left h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Right Content */
.section-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .info-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--bg-gradient);
        transition: width 0.3s ease;
    }

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--hover-shadow);
    }

        .info-box:hover::before {
            width: 8px;
        }

    .info-box i {
        background: var(--primary-dark);
        color: #fff;
        border-radius: 36px;
        padding: 15px;
        font-size: 20px;
        min-width: 53px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
        transition: all 0.3s ease;
    }

    .info-box:hover i {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(230, 57, 70, 0.4);
    }

.info-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.info-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Stats Section */
.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--card-shadow);
    flex: 1;
    transition: all 0.3s ease;
}


.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}





















/* Team Section */

.team-section {
    max-width: 95%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 10px 40px;
}

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

.team-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 80px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card {
    min-width: calc(25% - 20px);
    margin: 0 10px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #ffc4d0 0%, #ffb3c6 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}



.card-image {
    width: 100%;
    height: 52vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
}

    .card-image:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgb(0 0 0 / 15%);
    }

.card-content {
    padding: 30px 25px;
    background: var(--white);
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

    .dot.active {
        background: var(--gradient);
        transform: scale(1.3);
        box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
    }

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

    .arrow-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    }

    .arrow-btn:active {
        transform: scale(0.95);
    }

    .arrow-btn:disabled {
        background: var(--gray-light);
        cursor: not-allowed;
        box-shadow: none;
    }

@media (max-width: 1200px) {
    .team-card {
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .team-card {
        min-width: calc(50% - 20px);
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .team-card {
        min-width: calc(100% - 20px);
    }

    .section-title {
        font-size: 28px;
    }

    .team-section {
        padding: 40px 20px;
    }
}
















.ceo-section {
    max-width: 95%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 20px 60px;
}

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

.ceo-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.section-description {
    font-size: 20px;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.ceo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
}

.ceo-card {
    position: relative;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    overflow: hidden;
    padding: 50px;
}


.shape-decoration {
    position: absolute;
    z-index: 1;
}

.shape-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(247, 127, 0, 0.1) 100%);
    top: -50px;
    right: -50px;
}

.shape-square {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.08) 0%, rgba(230, 57, 70, 0.08) 100%);
    border-radius: 30px;
    bottom: -30px;
    left: -30px;
    transform: rotate(15deg);
}

.shape-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(230, 57, 70, 0.15) 2px, transparent 2px);
    background-size: 15px 15px;
    top: 40%;
    left: -20px;
}

.shape-wave {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.12) 0%, transparent 70%);
    bottom: 50px;
    right: -40px;
}

.ceo-content {
    position: relative;
    z-index: 2;
}

.ceo-image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 35px;
    position: relative;
}

.ceo-image {
    width: 58%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: var(--transition);
}

.ceo-card:hover .ceo-image {
    transform: scale(1.05);
}

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

.ceo-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ceo-title {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-bio {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ceo-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

    .social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
    }

@media (max-width: 1024px) {
    .ceo-section {
        padding: 60px 40px;
    }

    .ceo-grid {
        gap: 40px;
    }

    .section-title {
        font-size: 48px;
    }

    .ceo-image-wrapper {
        height: 400px;
    }

    .ceo-image {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title {
        font-size: 40px;
    }

    .ceo-card {
        padding: 40px;
    }

    .ceo-image-wrapper {
        height: 450px;
    }


    .ceo-image {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .ceo-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .ceo-card {
        padding: 30px;
    }

    .ceo-image-wrapper {
        height: 350px;
    }

    .ceo-name {
        font-size: 28px;
    }

    .ceo-image {
        width: 100% !important;
    }
}
































section#contact {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem;
    margin-top: 4rem;
    min-height: auto;
}

.contact-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(134deg, #3b3a3a, #0e0e0e);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 3rem 1.5rem;
}

.contact-info {
    background: linear-gradient(135deg, #0f0f0f, #3b3939);
    padding: 2rem;
    border-radius: 8px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

    .contact-info h2 span {
        font-weight: 700;
        color: #fff;
    }

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: #ddd;
}

    .info-item i {
        color: #fd2424;
        font-size: 1.2rem;
        min-width: 20px;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

    .input-group input,
    .textarea-group textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid #777;
        color: #fff;
        padding: 10px;
        font-size: 1rem;
        outline: none;
        transition: all 0.3s ease;
    }

        .input-group input:focus,
        .textarea-group textarea:focus {
            border-color: #fd2424;
        }

.textarea-group textarea {
    height: 100px;
    resize: none;
}

.send-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .send-btn:hover {
        background: #fd2424;
        border-color: #fd2424;
        box-shadow: 0 0 20px rgba(253, 36, 36, 0.4);
    }

    .send-btn i {
        transition: transform 0.3s ease;
    }

    .send-btn:hover i {
        transform: translateX(6px);
    }

/* Tablet Styles */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 1025px) {
    .contact-section {
        max-width: 80%;
    }
}

/* Mobile Styles */
@media (max-width: 600px) {
    section#contact {
        margin-top: 2rem;
        padding: 1rem;
    }

    .contact-section {
        padding: 2rem 1rem;
        border-radius: 8px;
    }

    .contact-info {
        padding: 1.5rem;
    }

        .contact-info h2 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
        }

    .input-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        margin-bottom: 1rem;
    }

    .send-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 400px) {
    .contact-info h2 {
        font-size: 1.4rem;
    }

    .contact-section {
        padding: 1.5rem 0.8rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

        .info-item p {
            font-size: 0.9rem;
        }
}


































.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    ;
    color: #333;
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 10px;
    }

        .footer-section ul li a {
            text-decoration: none;
            color: #ffffff;
            transition: color 0.3s;
        }

            .footer-section ul li a:hover {
                color: #ffffff;
            }

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

    .newsletter-form input {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid #ffffff;
        border-radius: 4px 0 0 4px;
        outline: none;
    }

    .newsletter-form button {
        background-color: #333;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .newsletter-form button:hover {
            background-color: #ffffff;
        }

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-bottom p {
        color: #ffffff;
        margin-bottom: 10px;
    }

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

img.logo-foooter {
    /* width: 120px; */
    height: 80px;
}

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

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

ul.footer-features {
    padding: 0 !important;
}



.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

    .social-icons a {
        width: 45px;
        height: 45px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

        .social-icons a::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 50%;
        }

        .social-icons a:hover::before {
            opacity: 1;
        }

        .social-icons a i {
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .social-icons a:hover i {
            transform: scale(1.2) rotate(5deg);
        }

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}



/* Main Container */
.app-showcase-container {
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.05);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -250px;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
}

/* Header Section */
.app-showcase-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    text-align:center;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(214, 0, 0, 0.3);
    transition: var(--transition);
    margin-bottom: 20px;
}

    .app-badge i {
        margin-right: 8px;
        font-size: 18px;
    }

    .app-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(214, 0, 0, 0.4);
    }

.app-main-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

    .app-main-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
    }

.app-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 22px;
}

.feature-text {
    font-weight: 600;
    color: var(--dark);
}

/* Slider Container */
.app-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    border-radius: 24px;
    padding: 20px 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.app-track {
    display: flex;
    width: max-content;
    animation: app-scroll-horizontal 45s linear infinite;
}

    .app-track:hover {
        animation-play-state: paused;
    }

/* Screenshot Cards */
.app-screenshot {
    flex-shrink: 0;
    width: 297px;
    height: 530px;
    margin: 0 25px;
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 4px solid transparent;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

    .app-screenshot::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: var(--transition);
        z-index: 1;
    }

    /*.app-screenshot:hover {
        transform: scale(1.12);*/ /* increased from 1.05 → 1.12 for a stronger zoom */
        /*box-shadow: 0 35px 80px rgba(214, 0, 0, 0.45);*/ /* darker + deeper red glow */
        /*border-color: var(--primary);
        transition: all 0.3s ease-in-out;*/ /* smooth animation */
    /*}*/

        .app-screenshot:hover::before {
            opacity: 0.1;
        }

    .app-screenshot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .app-screenshot:hover img {
        transform: scale(1.03);
    }

/* Screenshot Overlay */
.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(#000000bf, rgba(0, 0, 0, 0.7));
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 2;
}

.app-screenshot:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.screenshot-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

a.cta-button.cta-secondary:hover {
    background:var(--primary-dark) !important;
}

.cta-primary {
    background: var(--gradient);
    color: white;
}

.cta-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color:white;
}

.cta-button i {
    margin-right: 10px;
    font-size: 20px;
}

/* Infinite Scroll Animation */
@keyframes app-scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .app-main-title {
        font-size: 48px;
    }

    .app-screenshot {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .app-main-title {
        font-size: 42px;
    }

    .app-screenshot {
        width: 220px;
        height: 460px;
        margin: 0 15px;
    }

    .feature-highlights {
        gap: 20px;
    }

    .feature-item {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .app-main-title {
        font-size: 36px;
    }

    .app-screenshot {
        width: 200px;
        height: 420px;
    }

    .app-subtitle {
        font-size: 18px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .app-main-title {
        font-size: 32px;
    }

    .app-screenshot {
        width: 180px;
        height: 380px;
        margin: 0 10px;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .app-showcase-container {
        padding: 80px 15px;
    }
}












