/* Servie-3 section */
/* Root Variables */
:root {
    --primary-color: #F47337;
    --secondary-color: #ff8c5a;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --shadow: 0 10px 30px rgba(244, 115, 55, 0.1);
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0;
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
}

.page-header-box h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Service Hero Section */
.service-hero {
    padding: 100px 0;
    background: var(--light-color);
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.stat-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(244, 115, 55, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color:white;
    font-size: 1rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Service Features Section */
.service-features {
    padding: 100px 0;
    background: var(--white-color);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.feature-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 115, 55, 0.15);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-card .icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service Benefits Section */
.service-benefits {
    padding: 100px 0;
    background: var(--light-color);
}

.benefit-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(244, 115, 55, 0.2);
}

.benefit-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-card .icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service Process Section */
.service-process {
    padding: 100px 0;
    background: var(--white-color);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(244, 115, 55, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(244, 115, 55, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service Industries Section */
.service-industries {
    padding: 100px 0;
    background: var(--light-color);
}

.industry-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(244, 115, 55, 0.2);
}

.industry-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-card .icon i {
    font-size: 1.8rem;
    color: var(--white-color);
}

.industry-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* Service CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-cta .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-header-box h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2,
    .section-header h2,
    .service-cta h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        left: 0;
    }
    
    .process-step {
        margin-left: 2rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header-box h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .benefit-card,
    .industry-card {
        margin-bottom: 2rem;
    }
    
    .process-step {
        margin-left: 1rem;
    }
}





/* Service-Employee CSS */
.services-hero {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease-in-out;
    font-family: 'Open Sans', sans-serif;
  }
  
  .services-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
  }
  
  .services-hero h1 span {
    color: #F47337;
    background: linear-gradient(#F47337);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .services-hero p.lead {
    font-size: 1.2rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Optional animation (if you're using wow.js or want a fallback) */
  .wow.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  



/* SERVICE EMPLOYER CSS-SERVICE-2 */

/* Service Hero Section */
.service-hero-section {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
}

.service-hero-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    margin-right: -50px;
}

.service-hero-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244,115,55,0.1) 0%, rgba(244,115,55,0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.service-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
}

.service-hero-content h1 span {
    color: #F47337;
    position: relative;
}

.service-hero-content h1 span:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #F47337;
    border-radius: 2px;
}

.service-hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 90%;
}

.service-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(244,115,55,0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(244,115,55,0.2);
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: #F47337;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.service-hero-image {
    position: relative;
    z-index: 1;
}

.service-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

/* Service Features Section */
.service-features-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h3 {
    font-size: 14px;
    color: #F47337;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
}

.section-title h2 span {
    color: #F47337;
}

.service-feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #F47337;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #fff;
}

.service-feature-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.service-feature-item p {
    color: #666;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: #F47337;
    position: absolute;
    left: 0;
}

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #F47337;
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
}

.process-number {
    width: 40px;
    height: 40px;
    background: #F47337;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.process-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.process-content p {
    color: #666;
    margin: 0;
}

/* Service FAQ Section */
.service-faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* Service CTA Section */
.service-cta-section {
    padding: 100px 0;
    background: #F47337;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff !important;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-button {
    text-align: right;
}

.btn-premium {
    background: #fff !important;
    color: #F47337;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: #f8f9fa;
    color: #F47337;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-hero-section {
        padding: 80px 0;
    }
    
    .service-hero-content {
        padding: 40px;
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    .service-hero-content h1 {
        font-size: 42px;
    }
    
    .service-hero-stats {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .process-timeline:before {
        left: 0;
    }
    
    .process-item {
        padding-left: 40px;
    }
    
    .process-number {
        left: 0;
    }
}

@media (max-width: 767px) {
    .service-hero-section {
        padding: 60px 0;
    }
    
    .service-hero-content {
        padding: 30px;
    }
    
    .service-hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
    
    .cta-button {
        text-align: center;
        margin-top: 30px;
    }
    
    .service-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        width: calc(50% - 10px);
    }
    
    .service-hero-image img {
        transform: none;
    }
} 

/* CONTACT CSS */

/* Contact Page Styling */
.page-contact-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-hero-section {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.contact-hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-us-form {
    background: var(--white-color) !important;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    height: 50px;
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(244, 115, 55, 0.25);
}

.contact-form textarea.form-control {
    height: 150px;
    resize: none;
}

.contact-form .input-group-text {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-form .btn-premium {
    background: var(--accent-color) !important;
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-premium:hover {
    background: var(--accent-secondary-color);
    transform: translateY(-2px);
}

.contact-info-section {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.google-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-info-item .icon-box i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.contact-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-item-content p {
    margin: 0;
    color: #000000;
}

.contact-item-content p a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content p a:hover {
    color: #fff;
}

.contact-cta-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--accent-color);
    border-radius: 20px;
    color: var(--white-color);
}

.contact-cta-section h2 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.contact-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-button .btn-premium {
    background: ;
    color: var(--accent-color);
}

.cta-button .btn-premium:hover {
    background: var(--accent-secondary-color);
    color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 200px;
    }
    
    .contact-hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .page-contact-us {
        padding: 40px 0;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-us-form,
    .contact-info-section {
        padding: 30px;
    }
    
    .contact-cta-section {
        text-align: center;
    }
    
    .cta-button {
        margin-top: 30px;
    }
    
    .contact-form .form-control {
        height: 45px;
        font-size: 0.95rem;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-item .icon-box {
        width: 40px;
        height: 40px;
    }
    
    .contact-item-content h3 {
        font-size: 1.1rem;
    }
} 

.team-title a{
    color: black !important;
}