.h1-color-size {
    color: #000000;
    font-size: 58px;
    font-weight: 700;
}
#wpadminbar{display:none !important; }

.h1-color-size span{
    color:#1c52c8;
    font-size: 58px;
}
html, body {
    overflow-x: hidden !important;
}
.p-color-size{
    font-size: 20px;
}
.wrap-style{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    
}
.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.67rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 19px;
}

.custom-btn .svgIcon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.custom-btn:hover .svgIcon {
    transform: translate(2px, -2px);
}
 .container {
            position: relative;
            height:350px;
            background: #f5f5f500;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding-left: 0px;
            padding-right: 0px;
        }

        .person-image {
            position: absolute;
             width: 100%; 
            height: 100%;
            
            object-fit: cover;
            z-index: 1;
        }

        .job-card {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .job-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: linear-gradient(135deg, #2196F3, #1976D2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .briefcase-icon {
            width: 24px;
            height: 24px;
            background: white;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2z'/%3E%3C/svg%3E") no-repeat center;
            mask-size: contain;
        }

        .job-info {
            flex: 1;
        }

        .job-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .job-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #666;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .status-applied .status-dot {
            background: #4CAF50;
        }

        .status-matched .status-dot {
            background: #2196F3;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.1);
            }
        }

        /* Senior Developer Card - Top Left */
        .senior-developer {
            top: 30px;
            left: 30px;
            animation: slideInLeft 1s ease-out 0.5s both;
        }

        /* Product Manager Card - Middle Right */
        .product-manager {
            top: 80%;
            right: 30px;
            transform: translateY(-50%);
            animation: slideInRight 1s ease-out 1s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translate(100px, -50%);
            }
            to {
                opacity: 1;
                transform: translate(0, -50%);
            }
        }

        /* Floating animation */
        .job-card {
            animation-iteration-count: 1;
            animation-fill-mode: both;
        }

        .senior-developer {
            animation: slideInLeft 1s ease-out 0.5s both, float 3s ease-in-out 1.5s infinite;
        }

        .product-manager {
            animation: slideInRight 1s ease-out 1s both, float 3s ease-in-out 2s infinite;
        }

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

        @keyframes floatRight {
            0%, 100% {
                transform: translateY(-50%);
            }
            50% {
                transform: translate(0, calc(-50% - 10px));
            }
        }

        .product-manager {
            animation: slideInRight 1s ease-out 1s both, floatRight 3s ease-in-out 2s infinite;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .container {
                height: 400px;
            }

            .job-card {
                padding: 12px 16px;
            }

            .job-icon {
                width: 40px;
                height: 40px;
            }

            .job-title {
                font-size: 14px;
            }

            .job-status {
                font-size: 12px;
            }

            .senior-developer {
                top: 20px;
                left: 20px;
            }

            .product-manager {
                right: 20px;
            }
        }

    
/* companies section */
.company-section 
{
        background-color: #e9ecef;
        width:100%;

    }
    
    .company-title {
        font-size: 1.25rem;
        white-space: nowrap;
        font-weight: 600;
        color: #000;
        margin: 0;
    }
    
    .carousel-container {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .carousel-btn {
    background: #ffffff00;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.skipheading{
    font-size: 20px;
    font-weight: 800;
}
.stop_h2{
    font-size: 2.2rem;
    font-weight: 700;
    color:#000000;
}
.borderradious{
    border-radius: 12px;}
    .carousel-btn:hover {
        background-color: #f8f9fa;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-color: white;
    }
 .bg-color-secondary
 {
    background-color: rgb(11, 28, 86);
 }  
 .test-color-white 
 {
    color: white;
 }
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .logo-carousel {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .logo-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .logo-item {
        background: rgba(255, 255, 255, 0);
        border-radius: 8px;
        padding: 20px;
        min-width: 100px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .logo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
/* End companies section */


.h2-style-color {
    color: #000000;
    font-size: 48px;
    font-weight: 700;
}
.h2-style-color span{
    color:#1c52c8;
    font-size: 48px;
}
.p-style-colorset{
    font-size: 20px;
}
.bg-style-pink
{
    background-color: #f5c9d7;
    border-radius: 20px;
}
.style-h2-fs-4{
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}
.bg-style-link
{
    background-color: #f5e9fa;
    border-radius: 20px;
}
.fe-4-h2-style{
    font-size: 3.2rem;;
    font-weight: 700;
    color: #000000;
}
.fs-6-p-style{
    font-size: 18px;
    color: #000000;
}



/* new home */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.container0056 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #E0E0E0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #4A90E2;
}

.login-link {
    color: #333333;
}

.btn-primary {
    background-color: #4A90E2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #357ABD;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E0F2F7 0%, #F7E0F2 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-highlight {
    color: #4A90E2;
}

.hero-description {
    font-size: 20px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-trust {
    font-size: 14px;
    color: #666666;
    margin-top: 24px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-icon svg path {
    fill: #A0D9F7;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}

.section-highlight {
    color: #4A90E2;
}

.section-highlight-purple {
    color: #8B5CF6;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 32px;
}

.stars {
    color: #4A90E2;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A90E2, #8B5CF6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: #666666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E0F2F7 0%, #F7E0F2 100%);
}

.cta-box {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    padding: 64px 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
}

.cta-feature svg circle {
    fill: #4A90E2;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #ffffff;
    margin-top: 60px;
    padding-top: 48px;
    padding-bottom: 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero-description {
        font-size: 18px;
    }

    .nav-menu {
        gap: 16px;
        flex-wrap: wrap;
    }

    .features-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
    }
}

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