/* Base Styles */
.recruitment-solutions-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.section-subtitle {
  color: #7f8c8d;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Why Partner With Us Section */
.why-partner-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 4px solid #3498db;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.benefit-icon img {
  width: 28px;
  height: 28px;
}

/* Core Services Section */
.services-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-stack-container {
  position: relative;
  height: 700px;
  margin: 0 auto;
  max-width: 900px;
}

.service-card {
  position: absolute;
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  top: 0;
  left: 0;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon img {
  width: 28px;
  height: 28px;
}

.service-card ul {
  color: #7f8c8d;
  line-height: 1.8;
  padding-left: 25px;
  margin: 0;
  font-size: 16px;
}

.service-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

/* Card specific styles */
.card-1 {
  background: #f8f9fa;
  border-left: 5px solid #3498db;
  transform: translateY(120px) scale(0.9);
  opacity: 0.8;
  z-index: 1;
}

.card-2 {
  border-left: 5px solid #2ecc71;
  transform: translateY(60px) scale(0.95);
  opacity: 0.9;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-3 {
  border-left: 5px solid #9b59b6;
  transform: translateY(0) scale(1);
  z-index: 3;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.card-4 {
  border-left: 5px solid #e74c3c;
  transform: translateY(-60px) scale(0.95);
  opacity: 0.9;
  z-index: 4;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

/*<style>*/





/*header*/

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        /* Header Styles */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 20px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* Header Logo Styles */
    .logo {
        height: 200px; /* Increased from 60px */
        width: auto;
        filter: brightness(0) invert(1); /* Makes logo white */
        transition: all 0.3s ease;
    }

    /* Optional: Add hover effect */
    .logo:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

    /* Adjust header padding to accommodate larger logo */
    header {
        padding: 30px 0; /* Increased from 20px */
    }

    /* For footer logo (if you want it consistent) */
    .footer-logo {
        height: 70px; /* Increased from 50px */
        filter: brightness(0) invert(1);
    }
        
        /* Hero Banner */
        .hero-banner {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
            max-width: 800px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #2980b9;
        }
        
        /* Footer Styles */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 10px 0;
            text-align: center;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #3498db;
        }
        
        .copyright {
            margin-top: 10px;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .logo {
                height: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 12px 25px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }

/*why partner   */
    .benefit-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .benefit-card:hover div[style*="background: linear-gradient"] {
        opacity: 1;
    }
    
    @media (max-width: 768px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }
        
        .why-partner-section {
            padding: 60px 0;
        }
        
        h2 {
            font-size: 32px !important;
        }
    }
    
    @media (max-width: 480px) {
        .benefit-card {
            padding: 30px 20px !important;
        }
    }

/*-----------------*/

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        background: white !important;
    }
    
    .service-card:hover div[style*="background: linear-gradient"] {
        opacity: 1;
    }
    
    .service-card li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        background: currentColor;
        border-radius: 50%;
    }
    
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .services-section {
            padding: 60px 0;
        }
        
        h2 {
            font-size: 32px !important;
        }
    }
    
    @media (max-width: 480px) {
        .service-card {
            padding: 25px 20px !important;
        }
        
        .service-icon {
            width: 40px !important;
            height: 40px !important;
            margin-right: 12px !important;
        }
        
        h3 {
            font-size: 20px !important;
        }
    }
    
    
    
    
    
    /*job seker*/

    .job-seekers-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    @media (max-width: 992px) {
        .job-seekers-content {
            grid-template-columns: 1fr !important;
            gap: 30px !important;
        }
        
        .job-seekers-image {
            display: none !important;
        }
    }
    
    @media (max-width: 576px) {
        .job-seekers-section {
            padding: 60px 0 !important;
        }
        
        h2 {
            font-size: 32px !important;
        }
        
        .contact-info {
            flex-direction: column !important;
            gap: 15px !important;
        }
    }




body {margin :0px;
padding:0px;}